123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <!DOCTYPE html>
- <html lang="{{ .Site.LanguageCode }}">
- {{ partial "head.html" . }}
- <body>
- <!-- Google Tag Manager (noscript) -->
- <noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-MTWWP3G" height="0" width="0"
- style="display:none;visibility:hidden"></iframe></noscript>
- <!-- End Google Tag Manager (noscript) -->
- <div id="all">
- {{ partial "nav.html" . }}
- {{ partial "breadcrumbs.html" . }}
- <div id="content">
- <div class="container dd">
- <div class="row">
- <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 .Params.author }}{{ i18n "authorBy" }} <a href="#">{{ .Params.author }}</a>{{ end }}
- {{ if and .Params.author .Params.date }} | {{ end }}
- {{ if .Params.date }}{{ .Date.Format .Site.Params.date_format }}{{ end }}
- </p>
- {{ end }}
- <div id="post-content">
- {{ .Content }}
- </div>
- </div>
- <div class="col-md-3">
- {{ partial "sidebar.html" . }}
- </div>
- </div>
- </div>
- </div>
- {{ partial "LP_components/Footer.html" . }}
- </div>
- {{ partial "scripts.html" . }}
- </body>
- </html>
|