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 3948b74 commit d7ba772Copy full SHA for d7ba772
_layouts/post.html
@@ -13,7 +13,12 @@ <h1 class="post-title">{{ page.title }}</h1>
13
{% endfor %}
14
</div>
15
{% endif %}
16
- <div class="post-date">Published on {{ page.date | date_to_string }}</div>
+ <div class="post-date">
17
+ Published on {{ page.date | date_to_string }}
18
+ {% if page.author != null %}
19
+ by {{ page.author }}
20
+ {% endif %}
21
+ </div>
22
{% if page.description != null %}
23
<noscript>
24
<div class="post-description">{{ page.description }}</div>
0 commit comments