12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <!DOCTYPE html>
- <html lang="{{ .Site.LanguageCode }}">
- <head>
- {{ partial "headers.html" . }}
- </head>
- <body>
- <div id="all">
- {{ partial "nav.html" . }}
- <div id="content">
- <div class="container">
- <div class="row">
- <!-- *** LEFT COLUMN *** -->
- <div class="col-md-9" id="blog-post">
- {{ if or .Params.author .Params.date }}
- <p class="text-muted text-uppercase mb-small text-right">
- {{ if isset .Params "authors" }}
- {{ i18n "authorBy" }} {{ range $index, $author := .Params.authors }}{{ if $index }}, {{ end }}<a href="{{ (printf "%s/%s" ("authors" | relLangURL) ($author | urlize)) }}">{{ $author }}</a>{{ end }}
- {{ end }}
- {{ if and .Params.author .Params.date }} | {{ end }}
- {{ if .Params.date }}
- {{ $createdAt := .Date.Format .Site.Params.date_format }}
- {{ range $index, $month := slice "January" "February" "March" "April" "May" "June" "July" "August" "September" "October" "November" "December" }}
- {{ $createdAt = replace $createdAt $month (i18n $month) }}
- {{ end }}
- {{ $createdAt }}
- {{ end }}
- </p>
- {{ end }}
- <div id="post-content">
- {{ .Content }}
- </div>
- <!-- /#post-content -->
- {{ if .Site.DisqusShortname }}
- <div id="comments">
- {{ template "_internal/disqus.html" . }}
- </div>
- {{ end }}
- </div>
- <!-- /#blog-post -->
- <!-- *** LEFT COLUMN END *** -->
- <!-- *** RIGHT COLUMN *** -->
- <div class="col-md-3">
- <!-- *** MENUS AND WIDGETS *** -->
- <!-- *** MENUS AND FILTERS END *** -->
- </div>
- <!-- /.col-md-3 -->
- <!-- *** RIGHT COLUMN END *** -->
- </div>
- <!-- /.row -->
- </div>
- <!-- /.container -->
- </div>
- <!-- /#content -->
- {{ partial "footer.html" . }}
- </div>
- <!-- /#all -->
- {{ partial "scripts.html" . }}
- </body>
- </html>
|