We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7beb5b9 commit cb6dd7aCopy full SHA for cb6dd7a
_config.yml
@@ -85,6 +85,7 @@ defaults:
85
values:
86
layout: "post"
87
comments: true # add comments to all blog posts
88
+ hide-title: false
89
-
90
scope:
91
path: "" # all files
index.html
@@ -8,8 +8,9 @@
8
{% for post in paginator.posts %}
9
<article class="post-preview">
10
<a href="{{ post.url | prepend: site.baseurl }}">
11
+ {% if post.hide-title == false %}
12
<h2 class="post-title">{{ post.title }}</h2>
13
+ {% endif %}
14
{% if post.subtitle %}
15
<h3 class="post-subtitle">
16
{{ post.subtitle }}
0 commit comments