diff --git a/_data/authors.yml b/_data/authors.yml index 90dd4c6..d564b44 100644 --- a/_data/authors.yml +++ b/_data/authors.yml @@ -1,5 +1,6 @@ Rax Ventus: photo: /_img/rax_round.png + bio: Intentionally Left BLank, for testing purposes. socials: - type: Twitter url: https://twitter.com/raxventus diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..4de0f8c --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,25 @@ +--- +layout: default +--- + +{{ page.date | date: "%-d %B %Y" }} +

{{ page.title }}

+ +

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

+ +{{content}} + +{% if page.tags %} + tags: {{ page.tags | join: " - " }} +{% endif %} + +{% assign authorData = site.data.authors[page.author] %} + +
+ {{page.author}}'s Profile Photo. +
{{page.author}}
+

{{authorData.bio}}

+ {% for social in authorData.socials %} + {{social.type}} + {% endfor %} +