Skip to content

Commit 1a8d1c2

Browse files
committed
basic mockups of other tabs
1 parent 8f814b9 commit 1a8d1c2

4 files changed

Lines changed: 30 additions & 3 deletions

File tree

_config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ kramdown:
99
block:
1010
line_numbers: true
1111

12-
1312
exclude:
1413
- "*.gem"
1514
- "*.gemspec"

_tabs/about.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
layout: default
33
permalink: /about/
44
order: 4
5-
---
5+
---
6+
7+
<h1>About</h1>
8+

_tabs/categories.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,17 @@
22
layout: default
33
permalink: /categories/
44
order: 2
5-
---
5+
---
6+
7+
<h1>Categories</h1>
8+
9+
<div class="categories-list">
10+
{% for category in site.categories %}
11+
{% assign category_name = category[0] %}
12+
<li>
13+
<a href="{{ '/categories/' | append: category_name | slugify | append: '/' | relative_url }}">
14+
{{ category_name }} ({{ category[1].size }})
15+
</a>
16+
</li>
17+
{% endfor %}
18+
</div>

_tabs/tags.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,15 @@ permalink: /tags/
44
order: 3
55
---
66

7+
<h1>Tags</h1>
8+
9+
<div class="tags-list">
10+
{% for tag in site.tags %}
11+
{% assign tag_name = tag[0] %}
12+
<li>
13+
<a href="{{ '/tags/' | append: tag_name | slugify | append: '/' | relative_url }}">
14+
{{ tag_name }} ({{ tag[1].size }})
15+
</a>
16+
</li>
17+
{% endfor %}
18+
</div>

0 commit comments

Comments
 (0)