Skip to content

Commit

Permalink
Largely unsuccessful attempt to fix markup tag indenting
Browse files Browse the repository at this point in the history
  • Loading branch information
barryclark committed Jun 1, 2014
1 parent 734a6bb commit d63696d
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
4 changes: 3 additions & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ <h1 class="site-name"><a href="{{ site.baseurl }}/">{{ site.name }}</a></h1>
</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">
Expand Down
5 changes: 2 additions & 3 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
---

<article class="post">

<h1>{{ page.title }}</h1>
<h1>{{ page.title }}</h1>

<div class="entry">
{{ content }}
Expand All @@ -15,4 +14,4 @@ <h1>{{ page.title }}</h1>
</div>

{% include disqus.html disqus_identifier=page.disqus_identifier %}
</article>
</article>
18 changes: 9 additions & 9 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@

<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>

0 comments on commit d63696d

Please sign in to comment.