diff --git a/_data/authors.yml b/_data/authors.yml index 027f4bd..1ed22f0 100644 --- a/_data/authors.yml +++ b/_data/authors.yml @@ -1,4 +1,5 @@ -Rax Ventus: +Rax: + name: Rax Ventus image: rax_round.png bio: Intentionally Left Blank, for testing purposes. socials: diff --git a/_layouts/post.html b/_layouts/post.html index 61796b7..8f220c1 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -4,7 +4,7 @@ layout: default {{ page.date | date: "%-d %B %Y" }}

{{ page.title }}

-

by {{ page.author | default: site.author }}

+

by {{ page.author.name | default: site.author }}

{{content}} @@ -15,8 +15,8 @@ layout: default {% assign authorData = site.data.authors[site.author] %}
- {{ page.author }}'s profile picture. -
{{ page.author }}
+ {{ page.author.name | default: site.author }}'s profile picture. +
{{ page.author.name | default: site.author }}

{{ authorData.bio }}

{% for social in authorData.socials %} {{ social.type }} diff --git a/_posts/2023-10-27-Update.md b/_posts/2023-10-27-Update.md index 4a63253..720bc0f 100644 --- a/_posts/2023-10-27-Update.md +++ b/_posts/2023-10-27-Update.md @@ -2,6 +2,7 @@ layout: post title: Services Update published: true +author: Rax date: 2023-10-27 18:35 --- diff --git a/_posts/Template.yml b/_posts/Template.yml new file mode 100644 index 0000000..767c3ac --- /dev/null +++ b/_posts/Template.yml @@ -0,0 +1,7 @@ +--- +layout: post +title: Services Update +published: true +author: Rax +date: 202X-XX-XX XX:XX +--- \ No newline at end of file