Largely unsuccessful attempt to fix markup tag indenting
This commit is contained in:
parent
734a6bba41
commit
d63696d065
|
@ -40,7 +40,9 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="main" role="main" class="container">{{ content }}</div>
|
<div id="main" role="main" class="container">
|
||||||
|
{{ content }}
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="wrapper-footer">
|
<div class="wrapper-footer">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
|
|
|
@ -3,8 +3,7 @@ layout: default
|
||||||
---
|
---
|
||||||
|
|
||||||
<article class="post">
|
<article class="post">
|
||||||
|
<h1>{{ page.title }}</h1>
|
||||||
<h1>{{ page.title }}</h1>
|
|
||||||
|
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
{{ content }}
|
{{ content }}
|
||||||
|
|
14
index.html
14
index.html
|
@ -4,15 +4,15 @@ layout: default
|
||||||
|
|
||||||
<div class="posts">
|
<div class="posts">
|
||||||
{% for post in site.posts %}
|
{% for post in site.posts %}
|
||||||
<article class="post">
|
<article class="post">
|
||||||
|
|
||||||
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
|
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
|
||||||
|
|
||||||
<div class="entry">
|
<div class="entry">
|
||||||
{{ post.content | truncatewords:40}}
|
{{ post.content | truncatewords:40}}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<a href="{{ post.url }}" class="read-more">Read More</a>
|
<a href="{{ post.url }}" class="read-more">Read More</a>
|
||||||
</article>
|
</article>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
Loading…
Reference in a new issue