We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33f1d21 commit a71692aCopy full SHA for a71692a
index.html
@@ -4,6 +4,7 @@
4
5
<div class="posts">
6
{% for post in site.posts %}
7
+ {% if post.visible== 1 %}
8
<article class="post">
9
10
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
@@ -14,5 +15,6 @@ <h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
14
15
16
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
17
</article>
18
+ {% endif %}
19
{% endfor %}
-</div>
20
+</div>
0 commit comments