AGSTATUS/_layouts/post.html

28 lines
955 B
HTML
Raw Permalink Normal View History

2020-11-15 05:02:05 -07:00
---
layout: default
---
2023-10-31 01:42:45 -06:00
{% assign authorData = site.data.authors[page.author] | default: site.data.authors[site.author] %}
2020-11-15 05:02:05 -07:00
<small>{{ page.date | date: "%-d %B %Y" }}</small>
<h1>{{ page.title }}</h1>
2023-10-31 01:42:45 -06:00
<p class="view">by {{ authorData.name | default: site.author }}</p>
2020-11-15 05:02:05 -07:00
{{content}}
2020-11-15 05:29:12 -07:00
<hr>
2020-11-15 05:02:05 -07:00
<div class="author-bio">
2023-10-31 01:34:52 -06:00
<img src="/assets/img/{{ authorData.image }}" alt="{{ authorData.name | default: site.author.name }}'s profile picture." />
<div class="author-name">{{ authorData.name | default: site.author.name }}</div>
2023-11-01 04:15:18 -06:00
<p class="bio">{{ authorData.bio }}<marquee class="marquee" behavior="scroll" direction="left" scrollamount="5"><p>-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-</p></marquee></p>
<div class="socialDiv">
2020-11-15 05:05:40 -07:00
{% 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 %}
2023-11-01 04:15:18 -06:00
</div>
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>