mirror of https://github.com/nate2014jatc/AGSTATUS
26 lines
711 B
HTML
26 lines
711 B
HTML
---
|
|
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 picture." />
|
|
<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>
|