Added about-author.html.twig
This commit is contained in:
parent
225f3c676f
commit
22176e6b70
|
@ -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 %}
|
||||
|
|
|
@ -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>
|
Reference in a new issue