File tree 1 file changed +20
-5
lines changed
1 file changed +20
-5
lines changed Original file line number Diff line number Diff line change 3
3
title: Blog
4
4
permalink: posts/
5
5
---
6
+
7
+
6
8
< div class ="row posts ">
7
- < div class ="large-12 columns ">
9
+ < div class ="large-2 columns ">
10
+ < h3 class ="subheader "> Tags</ h3 >
11
+ {% assign tags = site.tags | sort %}
12
+ {% for tag in tags %}
13
+ {% assign tag_count = tag | last | size %}
14
+ {% if tag_count > 1 %}
15
+ < span class ="site-tag ">
16
+ < a href ="/tag/{{ tag | first | slugify }}/ "
17
+ style ="font-size: {{ tag | last | size | times: 4 | plus: 80 }}% ">
18
+ {{ tag[0] | replace:'-', ' ' }} ({{ tag | last | size }})
19
+ </ a >
20
+ </ span >
21
+ {% endif %}
22
+ {% endfor %}
23
+ </ div >
24
+ < div class ="large-10 columns ">
8
25
{% for post in site.posts %}
9
26
< div class ="row ">
10
27
< div class ="large-3 columns date ">
11
28
{{ post.date | date: "%b %d, %Y" }}
12
29
</ div >
13
- < div class ="large-6 columns details ">
30
+ < div class ="large-9 columns details ">
14
31
< p >
15
32
< a href ="{{ post.url }} "> {{ post.title }}</ a > -
16
33
{{ post.excerpt | strip_html | truncatewords:25 }}
17
34
</ p >
18
35
</ div >
19
- < div class ="large-3 columns date ">
20
- </ div >
21
36
</ div >
22
37
{% endfor %}
23
38
</ div >
24
- </ div >
39
+ </ div >
You can’t perform that action at this time.
0 commit comments