11-15-20_05:02:05

This commit is contained in:
Rax Ventus 2020-11-15 05:02:05 -07:00
parent a9eff633d5
commit df42165c72
2 changed files with 26 additions and 0 deletions

View File

@ -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

25
_layouts/post.html Normal file
View File

@ -0,0 +1,25 @@
---
layout: default
---
<small>{{ page.date | date: "%-d %B %Y" }}</small>
<h1>{{ page.title }}</h1>
<p class="view">by {{ page.author | default: site.author }}</p>
{{content}}
{% if page.tags %}
<small>tags: <em>{{ page.tags | join: "</em> - <em>" }}</em></small>
{% endif %}
{% assign authorData = site.data.authors[page.author] %}
<div class="author-bio">
<img src="{{authorData.image}}" alt="{{page.author}}'s Profile Photo."/>
<div class="author-name">{{page.author}}</div>
<p class="bio">{{authorData.bio}}</p>
{% for social in authorData.socials %}
<a href="{{social.url}}" class="social-link {{social.type}}-link">{{social.type}}</a>
{% endfor %}
</div>