more improvements
This commit is contained in:
parent
ccea0d2f35
commit
6cb66cbaa9
@ -1,11 +1,19 @@
|
||||
{% extends "base.html" %} {% block title %} {{ article.title }} - {{ SITENAME }}
|
||||
{% endblock %} {% block metadesc %} {% if article.summary %} {{
|
||||
article.summary|e }} {% else %} An Article in {{ SITETAG }}: {{ article.title }}
|
||||
{% endif %} {% endblock %} {% block content_header %}
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}
|
||||
{{ article.title }} - {{ SITENAME }}
|
||||
{% endblock %}
|
||||
{% block metadesc %}
|
||||
{% if article.summary %} {{ article.summary|e }} {% else %} An Article in {{ SITETAG }}: {{ article.title }}{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
{% block content_header %}
|
||||
<header id="main-header">
|
||||
<h1>{{ article.title }}</h1>
|
||||
</header>
|
||||
{% endblock content_header %} {% block content_body %}
|
||||
{% endblock content_header %}
|
||||
|
||||
{% block content_body %}
|
||||
<div class="article-body">
|
||||
{% if article.featured_image is defined %}
|
||||
<div class="featured-image">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user