-
Beta Was this translation helpful? Give feedback.
Answered by
rjzupkoii
Feb 19, 2025
Replies: 1 comment 1 reply
-
In {% if post.collection == 'teaching' %}
<p> {{ post.type }}, <i>{{ post.venue }}</i>, {{ post.date | default: "1900-01-01" | date: "%Y" }} </p>
{% elsif post.collection == 'publications' %}
<p>Published in <i>{{ post.venue }}</i>, {{ post.date | default: "1900-01-01" | date: "%Y" }} </p>
{% elsif post.date %}
<p class="page__date"><strong><i class="fa fa-fw fa-calendar" aria-hidden="true"></i> {{ site.data.ui-text[site.locale].date_label | default: "Published:" }}</strong> <time datetime="{{ post.date | default: "1900-01-01" | date_to_xmlschema }}">{{ post.date | default: "1900-01-01" | date: "%B %d, %Y" }}</time></p>
{% endif %} The line you are going to want to change immediately follows |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
nwarford
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In
_includes/archivbe-single.html
look for the following (lines 41 to 47):