Skip to content

Commit

Permalink
page.html: include <article> as expected in CSS
Browse files Browse the repository at this point in the history
Closes #31
  • Loading branch information
thammegowda authored and textbook committed Mar 5, 2021
1 parent 8ecc9c2 commit 53aa934
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions bulrush/templates/page.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@
{% endblock %}
{% block content %}
<section id="content" class="body">
<h1 class="title"><a href="{{ SITEURL }}/{{ page.url }}" rel="bookmark"
title="Permalink to {{ page.title|striptags }}">{{ page.title }}</a></h1>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
<div class="section">{{ page.content }}</div>
<article>
<h1 class="title"><a href="{{ SITEURL }}/{{ page.url }}" rel="bookmark"
title="Permalink to {{ page.title|striptags }}">{{ page.title }}</a></h1>
{% import 'translations.html' as translations with context %}
{{ translations.translations_for(page) }}
<div class="section">{{ page.content }}</div>
</article>
</section>
{% endblock %}

0 comments on commit 53aa934

Please sign in to comment.