Comment on page
Removing Post Meta

To remove post meta, open to
post.hbs
and search and remove the following:<div class="meta">
<div class="app">
{{#foreach authors}}
{{#if profile_image}}
<div class="post-item-author">
<a href="/author/{{slug}}">
<img class="gh-author-image-post" src="{{profile_image}}" alt="{{name}}" />
</a>
</div>
{{/if}}
{{/foreach}}
</div>
<div class="more-info">
{{authors separator=" and " prefix="Posted by "}}
<br> <time datetime="{{date format="YYYY-MM-DD"}}">{{date format="D MMM YYYY"}}</time> — {{reading_time}}
</div>
</div>
Last modified 6mo ago