Largely unsuccessful attempt to fix markup tag indenting

This commit is contained in:
Barry Clark 2014-06-01 18:54:37 -04:00
parent 734a6bba41
commit d63696d065
3 changed files with 14 additions and 13 deletions

View File

@ -40,7 +40,9 @@
</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="container">

View File

@ -3,8 +3,7 @@ layout: default
---
<article class="post">
<h1>{{ page.title }}</h1>
<h1>{{ page.title }}</h1>
<div class="entry">
{{ content }}
@ -15,4 +14,4 @@ layout: default
</div>
{% include disqus.html disqus_identifier=page.disqus_identifier %}
</article>
</article>

View File

@ -4,15 +4,15 @@ layout: default
<div class="posts">
{% for post in site.posts %}
<article class="post">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<article class="post">
<h1><a href="{{ post.url }}">{{ post.title }}</a></h1>
<div class="entry">
{{ post.content | truncatewords:40}}
</div>
<a href="{{ post.url }}" class="read-more">Read More</a>
</article>
<div class="entry">
{{ post.content | truncatewords:40}}
</div>
<a href="{{ post.url }}" class="read-more">Read More</a>
</article>
{% endfor %}
</div>