aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Barry Clark <barry@barryclark.co> 2014-06-01 18:54:37 -0400
committerGravatar Barry Clark <barry@barryclark.co> 2014-06-01 18:54:37 -0400
commitd63696d065bd91dc173093741d6020699bdd770c (patch)
treec41c347c9a7425966a4cf54232d740811e729878
parent734a6bba41370d919d3a74466b1a75ce50b2829d (diff)
downloadkompetenzbolzen.github.io-d63696d065bd91dc173093741d6020699bdd770c.tar.gz
Largely unsuccessful attempt to fix markup tag indenting
-rw-r--r--_layouts/default.html4
-rw-r--r--_layouts/post.html5
-rw-r--r--index.html18
3 files changed, 14 insertions, 13 deletions
diff --git a/_layouts/default.html b/_layouts/default.html
index b43c60b..e4fb5cb 100644
--- a/_layouts/default.html
+++ b/_layouts/default.html
@@ -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">
diff --git a/_layouts/post.html b/_layouts/post.html
index f45cd6b..a84a4fe 100644
--- a/_layouts/post.html
+++ b/_layouts/post.html
@@ -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> \ No newline at end of file
diff --git a/index.html b/index.html
index dfcf58b..dedafef 100644
--- a/index.html
+++ b/index.html
@@ -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> \ No newline at end of file