AGSTATUS/_layouts/post.html

28 lines
739 B
HTML
Raw Normal View History

2020-11-15 05:02:05 -07:00
---
layout: default
---
2020-11-15 05:28:45 -07:00
<!-- <link rel="stylesheet" href="/authorblurb.css"> -->
2020-11-15 05:02:05 -07:00
<small>{{ page.date | date: "%-d %B %Y" }}</small>
<h1>{{ page.title }}</h1>
<p class="view">by {{ page.author | default: site.author }}</p>
{{content}}
2020-11-15 05:29:12 -07:00
<hr>
2020-11-15 05:17:40 -07:00
{% assign authorData = site.data.authors[site.author] %}
2020-11-15 05:02:05 -07:00
<div class="author-bio">
2020-11-17 23:43:06 -07:00
<img src="/assets/img/{{ authorData.image }}" alt="{{ site.author }}'s profile picture." />
2020-11-15 05:17:40 -07:00
<div class="author-name">{{ site.author }}</div>
2020-11-15 05:05:40 -07:00
<p class="bio">{{ authorData.bio }}</p>
{% for social in authorData.socials %}
2020-11-15 05:40:45 -07:00
<a href="{{ social.url }}" class="social-link">{{ social.type }}</a>
<br>
2020-11-15 05:05:40 -07:00
{% endfor %}
2020-11-15 05:02:05 -07:00
</div>
2020-11-15 06:08:21 -07:00
<h5>Site Last Updated: {{ site.time | date: "%m/%d/%Y %H:%M" }}</h5>