mirror of
https://github.com/nairobilug/pelican-alchemy.git
synced 2024-12-30 12:15:06 +01:00
Merge 43b5acb543 into fd70e764b4
This commit is contained in:
commit
504f94097a
2 changed files with 10 additions and 0 deletions
|
|
@ -56,6 +56,12 @@
|
||||||
</li>
|
</li>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</ul>
|
</ul>
|
||||||
|
{#
|
||||||
|
{% if article.image %}
|
||||||
|
<img class="article-image img-fluid rounded" alt="article header image" itemprop="image"
|
||||||
|
src="{{ article.image }}" />
|
||||||
|
{% endif %}
|
||||||
|
#}
|
||||||
</header>
|
</header>
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{{ article.content }}
|
{{ article.content }}
|
||||||
|
|
|
||||||
|
|
@ -45,6 +45,10 @@
|
||||||
<div class="content">
|
<div class="content">
|
||||||
{{ article.summary|striptags }}
|
{{ article.summary|striptags }}
|
||||||
</div>
|
</div>
|
||||||
|
{% if article.image %}
|
||||||
|
<img class="article-image img-fluid rounded" alt="article header image" itemprop="image"
|
||||||
|
src="{{ article.image }}" />
|
||||||
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
</article>
|
</article>
|
||||||
{% if not loop.last %}
|
{% if not loop.last %}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue