identation and remove unused attr

This commit is contained in:
Mahendrata Harpi
2020-05-23 03:37:38 +07:00
parent 1291c08cc4
commit 212b73fa80
2 changed files with 5 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ layout: compress
<body> <body>
{% include navbar.html %} {% include navbar.html %}
<div class="wrapper" id="wrapper"> <div class="wrapper">
<header class="header"> <header class="header">
<h1 class="header-title center" itemprop="headline">{{ page.title | escape }}.</h1> <h1 class="header-title center" itemprop="headline">{{ page.title | escape }}.</h1>
</header> </header>

View File

@@ -53,21 +53,22 @@ layout: compress
{% endif %} {% endif %}
</div> </div>
</article> </article>
{% if page.comments %} {% if page.comments %}
{% include comments.html%} {% include comments.html%}
{% endif %} {% endif %}
</main> </main>
{% if page.modified %} {% if page.modified %}
<small class="post-updated-at">updated_at {{page.modified | date: "%d-%m-%Y"}}</small> <small class="post-updated-at">updated_at {{page.modified | date: "%d-%m-%Y"}}</small>
{% endif %} {% endif %}
{% if page.next or page.previous %} {% if page.next or page.previous %}
{% include navigation.html %} {% include navigation.html %}
{% endif %} {% endif %}
{% include footer.html %}
</div> </div>
{% include footer.html %}
</body> </body>
</html> </html>