Reorganize summary and single post layouts

Now shows blog posts on their target page.
This commit is contained in:
Alan Orth 2016-08-30 12:45:13 +03:00
parent 0e54dba17a
commit e4cd676f3a
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
3 changed files with 20 additions and 4 deletions

View File

@ -4,7 +4,7 @@
{{ partial "header.html" . }}
{{ partial "content.html" . }}
{{ partial "content-summary.html" . }}
{{ partial "footer.html" . }}

View File

@ -0,0 +1,14 @@
<div class="container">
<div class="row">
<div class="col-sm-8 blog-main">
{{ range .Data.Pages }}
{{ .Render "summary"}}
{{ end }}
</div> <!-- /.blog-main -->
{{ if not .Site.Params.sidebar.hide }}
{{ partial "sidebar.html" . }}
{{ end }}
</div> <!-- /.row -->
</div> <!-- /.container -->

View File

@ -1,9 +1,11 @@
<div class="container">
<div class="row">
<div class="col-sm-8 blog-main">
{{ range .Data.Pages }}
{{ .Render "summary"}}
{{ end }}
<article class="blog-post">
<h1 class="blog-post-title"><a href="{{ .Permalink }}" title="{{ .Title }}">{{ .Title }}</a></h1>
<p class="blog-post-meta"><time datetime="{{ .Date }}">{{ .Date.Format .Site.Params.date_format }}</time> by <a href="#">{{ .Params.author | default .Site.Params.author }}</a></p>
{{ .Content }}
</article> <!-- /.blog-post -->
</div> <!-- /.blog-main -->
{{ if not .Site.Params.sidebar.hide }}