Remove date and author at bottom from progress updates

This commit is contained in:
Luke 2021-04-22 12:04:52 +02:00
parent 29e5dcac73
commit f08351ffc3

View file

@ -24,12 +24,14 @@ layout: page_container
</div> </div>
{% if page.progress_update %} {% if page.progress_update %}
<div> <div class="progress-update">
{% else %} {% else %}
<div class="content" id="blog"> <div class="content" id="blog">
{% endif %} {% endif %}
{{ content | replace: '<!--break-->', '<a class="anchor" id="continue"></a>' }} {{ content | replace: '<!--break-->', '<a class="anchor" id="continue"></a>' }}
<p>{{ page.date | date: "%B %-d, %Y" }} • Written by <a href="{{ site.team_url }}#{{ page.author | slugify }}">{{ page.author | capitalize }}</a></p> {% if page.progress_update == null %}
<p>{{ page.date | date: "%B %-d, %Y" }} • Written by <a href="{{ site.team_url }}#{{ page.author | slugify }}">{{ page.author | capitalize }}</a></p>
{% endif %}
</div> </div>
<hr> <hr>