File tree Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Expand file tree Collapse file tree 2 files changed +33
-0
lines changed Original file line number Diff line number Diff line change 7
7
< h1 class ="page-heading "> Posts</ h1 >
8
8
9
9
< ul class ="post-list ">
10
+
10
11
{% for post in site.posts %}
12
+ {% unless post.tags contains 'review' %}
11
13
< li >
12
14
< span class ="post-meta "> {{ post.date | date: "%b %-d, %Y" }}</ span >
13
15
17
19
</ a >
18
20
</ h2 >
19
21
</ li >
22
+ {% endunless %}
20
23
{% endfor %}
21
24
</ ul >
22
25
Original file line number Diff line number Diff line change
1
+ ---
2
+ layout: page
3
+ title: Reviews
4
+ comments: yes
5
+ permalink: /reviews/
6
+ ---
7
+
8
+ < div class ="home ">
9
+
10
+ < ul class ="post-list ">
11
+
12
+ {% for post in site.posts %}
13
+ {% if post.tags contains 'review' %}
14
+ < li >
15
+ < span class ="post-meta "> {{ post.date | date: "%b %-d, %Y" }}</ span >
16
+
17
+ < h2 >
18
+ < a class ="post-link " href ="{{ post.url | prepend: site.baseurl }} ">
19
+ {% include subtitle.html post=post %}
20
+ </ a >
21
+ </ h2 >
22
+ </ li >
23
+ {% endif %}
24
+ {% endfor %}
25
+ </ ul >
26
+
27
+ < p class ="rss-subscribe "> subscribe < a href ="{{ "/feed.xml" | prepend: site.baseurl }}"> via RSS</ a > </ p >
28
+
29
+ </ div >
30
+
You can’t perform that action at this time.
0 commit comments