2019-09-24 11:30:38 +00:00
|
|
|
{% macro render_blog_post(post, from_index=false) %}
|
|
|
|
<div class="blog-post">
|
|
|
|
{% if from_index %}
|
|
|
|
<h2><a href="{{ post|url }}">{{ post.title }}</a></h2>
|
|
|
|
{% else %}
|
|
|
|
<h2>{{ post.title }}</h2>
|
|
|
|
{% endif %}
|
|
|
|
<p class="meta">
|
|
|
|
written by
|
|
|
|
{% if post.twitter_handle %}
|
|
|
|
<a href="https://twitter.com/{{ post.twitter_handle
|
|
|
|
}}">{{ post.author or post.twitter_handle }}</a>
|
|
|
|
{% else %}
|
|
|
|
{{ post.author }}
|
|
|
|
{% endif %}
|
|
|
|
on {{ post.pub_date }}
|
|
|
|
</p>
|
2019-09-24 15:36:58 +00:00
|
|
|
{{ post.abstract }}
|
2019-09-24 11:30:38 +00:00
|
|
|
</div>
|
|
|
|
{% endmacro %}
|