mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-15 08:47:03 +01:00
17 lines
650 B
HTML
17 lines
650 B
HTML
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-8 blog-main">
|
|
<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 }}
|
|
{{ partial "sidebar.html" . }}
|
|
{{ end }}
|
|
|
|
</div> <!-- /.row -->
|
|
</div> <!-- /.container -->
|