Skip to content

Commit 4485dc6

Browse files
committed
fix indentation
1 parent b83d570 commit 4485dc6

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

templates/blog-post.html

+12-12
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22
{% block title %}{{ this.title }}{% endblock %}
33
{% block header %}{{ this.parent.title }}{% endblock %}
44
{% block body %}
5-
<h2 class="mb-0">{{ this.title }}</h2>
6-
<p class="meta text-muted mt-0">by {{ this.author }} on {{ this.pub_date|dateformat('full') }}</p>
7-
<div class="body">{{ this.body }}</div>
8-
<hr>
9-
<p class="meta mt-0 mb-0"><span class="text-muted">Categories: </span>
10-
{% if this.categories|length %}
11-
{% for category in this.categories %}
12-
<a href="#">{{ category }}</a>{{ "," if not loop.last }}
13-
{% endfor %}</p>
14-
{% else %}
15-
none
16-
{% endif %}
5+
<h2 class="mb-0">{{ this.title }}</h2>
6+
<p class="meta text-muted mt-0">by {{ this.author }} on {{ this.pub_date|dateformat('full') }}</p>
7+
<div class="body">{{ this.body }}</div>
8+
<hr>
9+
<p class="meta mt-0 mb-0"><span class="text-muted">Categories: </span>
10+
{% if this.categories|length %}
11+
{% for category in this.categories %}
12+
<a href="#">{{ category }}</a>{{ "," if not loop.last }}
13+
{% endfor %}
14+
{% else %}
15+
none
16+
{% endif %}</p>
1717
{% endblock %}

0 commit comments

Comments
 (0)