added author name

This commit is contained in:
2022-04-19 14:58:24 +02:00
parent a0d9bd6932
commit c819e97c85
5 changed files with 9 additions and 5 deletions

View File

@@ -11,7 +11,7 @@ taxonomies:
extra: extra:
subtitle: "The UNIQUE Post 1 subtitle" # Quotation marks allow colons, semicolons, etc. subtitle: "The UNIQUE Post 1 subtitle" # Quotation marks allow colons, semicolons, etc.
author: SACHA OBEEGADOO author: HANNAH CORDES
authorImg: /images/people/hannah_cordes.jpg authorImg: /images/people/hannah_cordes.jpg
imgPath: images/tf_chain.png imgPath: images/tf_chain.png

View File

@@ -12,7 +12,7 @@ taxonomies:
extra: extra:
subtitle: "The UNIQUE Post 1 subtitle" # Quotation marks allow colons, semicolons, etc. subtitle: "The UNIQUE Post 1 subtitle" # Quotation marks allow colons, semicolons, etc.
author: Sacha Obeegadoo author: Sacha Obeegadoo
authorImg: /images/people/hannah_cordes.jpg authorImg: /images/people/sacha_obeegadoo.jpg
imgPath: images/realizing_the_promise.png imgPath: images/realizing_the_promise.png
--- ---

View File

@@ -1,6 +1,6 @@
--- ---
title: "Blog" title: "Blog"
paginate_by: 5 paginate_by: 9
# paginate_reversed: false # paginate_reversed: false
sort_by: "date" sort_by: "date"
insert_anchor_links: "left" insert_anchor_links: "left"

View File

@@ -33,7 +33,8 @@
</div> </div>
<div class="pl-3 flex flex-col text-xs leading-none uppercase"> <div class="pl-3 flex flex-col text-xs leading-none uppercase">
<p class="text-gray-700"> <p class="text-gray-700 text-xs">{{ page.extra.author }}</p>
<p class="text-gray-700 text-xs">
<time datetime="{{ page.date }}"> {{ page.date | date(format="%B %e, %Y", timezone="America/Chicago") }}</time> <time datetime="{{ page.date }}"> {{ page.date | date(format="%B %e, %Y", timezone="America/Chicago") }}</time>
</p> </p>
</div> </div>

View File

@@ -25,10 +25,13 @@
class="w-8 h-8 rounded-full bg-gray-200 border-2 border-white"></li> class="w-8 h-8 rounded-full bg-gray-200 border-2 border-white"></li>
</ul> </ul>
</div> </div>
<div class="flex text-xs leading-none uppercase"> <div class="flex flex-col text-xs leading-none uppercase">
<p class="text-gray-700 text-xs">{{ post.extra.author }}</p>
<p class="text-gray-700 text-xs">
<time datetime="{{post.date}}"> <time datetime="{{post.date}}">
{{ post.date | date(format="%B %e, %Y", timezone="America/Chicago") }} {{ post.date | date(format="%B %e, %Y", timezone="America/Chicago") }}
</time> </time>
</p>
</div> </div>
</div> </div>
</div> </div>