diff options
Diffstat (limited to '_layouts/post.html')
| -rw-r--r-- | _layouts/post.html | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/_layouts/post.html b/_layouts/post.html index 1801d73..0af49c3 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,14 +2,14 @@ layout: default --- -<article id="entry"> +<header> + <h1><a href="{{ page.url }}">{{ page.title }}</a></h1> +</header> - <header class="entry-title"> - <h1>{{ page.title }}</h1> - </header> +<section> - <section> - {{ content }} - </section> + <div id="entry"> {{ content }} </div> -</article> + {% include footer.html %} + +</section> |
