vac.dev/_layouts/author.html

27 lines
992 B
HTML
Raw Normal View History

2020-02-17 20:35:04 -05:00
---
layout: default
---
<h1></h1>
<div class="container post-content">
<div class="row">
<div class="col-lg-10 ml-auto mr-auto">
<h1>{{ page.name }}</h1>
<div class="meta">
<a href="https://twitter.com/{{ page.twitter }}">Twitter</a>
2020-03-06 14:53:37 +01:00
<a href="https://github.com/{{ page.github }}">Github</a>
2020-02-17 20:35:04 -05:00
{% if page.website %}
<a href="{{ page.website }}">Website</a>
{% endif %}
</div>
<div class="row">
{% assign filtered_posts = site.posts | where: 'author', page.short_name %}
{% for post in filtered_posts %}
<div class="col-md-12 mt-60">
<time>{{ post.date | date: '%B %d, %Y' }}</time>
<h3><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h3>
</div>
{% endfor %}
</div>
</div>
</div>
2020-03-06 14:53:37 +01:00
</div>