Added about-author.html.twig

This commit is contained in:
Oliver Davies 2015-04-23 09:15:16 +01:00
parent 225f3c676f
commit 22176e6b70
2 changed files with 7 additions and 0 deletions

View file

@ -13,6 +13,8 @@
</p>
{% endif %}
{% include 'about-author' %}
{% if page.next_post or page.previous_post %}
<ul>
{% if page.next_post %}<li>Next post: <a href="{{ page.next_post.url }}">{{ page.next_post.title }}</a></li>{% endif %}

View file

@ -0,0 +1,5 @@
<div class="about-author">
<h2>About the Author</h2>
<img src="{{ site.gravatar_url }}" alt="Picture of Oliver" class="img-circle">
<p>{{ site.bio|raw }}</p>
</div>