fel_website/themes/felicie/templates/article.html

17 lines
541 B
HTML
Raw Normal View History

2020-04-03 13:05:13 +00:00
{% extends 'base.html' %}
2020-04-24 15:55:13 +00:00
{% block title%}
{{ SITENAME }} | {{ article.title }}
{% endblock title %}
2020-04-03 13:05:13 +00:00
{% block content %}
<h1 class='article-title'>{{ article.title }}</h1>
<div class="article">
<div class='article-content column'> {{ article.content }}</div>
<div class='article-img column'>
{% for i in [1, 2, 3, 4, 5] %}
<img alt="" src="{{ SITE_URL }}/images/{{article.title}}/{{ article.title }}-{{ i }}.jpg">
{% endfor %}
</div>
</div>
2020-04-03 13:05:13 +00:00
{% endblock content %}