34 lines
859 B
HTML
Raw Normal View History

2016-04-09 09:33:48 +02:00
{% set image = Image(section.image) %}
{{ image.copy() }}
2016-05-26 12:09:01 +02:00
<div class="author-meta">
2016-11-04 12:55:02 +01:00
<img src={{ image.generate_thumbnail("80x80") }} alt="" class="circle">
<div>
<span class=author-info>Story by
<h4>{{ section.name }}</h4>
{% if section.text %}
<div class=desc>{{ section.text }}</div>
{% endif %}
</span>
</div>
<div class="separator"></div>
<div>
{% if section.twitter %}
<span>
<a href="http://twitter.com/{{ section.twitter }}">Twitter</a>
</span>
<span> | </span>
{% endif %}
{% if section.facebook %}
<span>
<a href="http://facebook.com/{{ section.facebook }}">Facebook</a>
</span>
<span> | </span>
{% endif %}
{% if section.website %}
<span>
<a href="{{ section.sebsite }}">{{ section.website }}</a>
</span>
{% endif %}
</div>
2016-04-09 09:33:48 +02:00
</div>