2018-05-21 15:54:09 +02:00
|
|
|
{{ define "main" }}
|
|
|
|
<div class="container" role="main">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
|
|
|
|
<article role="main" class="blog-post">
|
2023-06-13 12:47:07 +02:00
|
|
|
{{ partial "talk-infobox" . }}
|
2018-05-21 15:54:09 +02:00
|
|
|
{{ .Content }}
|
|
|
|
|
|
|
|
{{ if .Params.tags }}
|
|
|
|
<div class="blog-tags">
|
|
|
|
{{ range .Params.tags }}
|
|
|
|
<a href="{{ $.Site.LanguagePrefix | absURL }}/tags/{{ . | urlize }}/">{{ . }}</a>
|
|
|
|
{{ end }}
|
2023-06-13 12:47:07 +02:00
|
|
|
</div><!--/.blog-tags-->
|
2018-05-21 15:54:09 +02:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Site.Params.socialShare }}
|
|
|
|
<hr/>
|
|
|
|
<section id="social-share">
|
|
|
|
<ul class="list-inline footer-links">
|
|
|
|
{{ partial "share-links" . }}
|
2023-06-13 12:47:07 +02:00
|
|
|
</ul><!--/.social-share-->
|
2023-06-13 21:41:28 +02:00
|
|
|
</section><!--/.list-inline .footer-links-->
|
2018-05-21 15:54:09 +02:00
|
|
|
{{ end }}
|
2023-06-13 12:47:07 +02:00
|
|
|
</article><!--/.blog-post-->
|
2018-05-21 15:54:09 +02:00
|
|
|
|
|
|
|
{{ if ne .Type "page" }}
|
|
|
|
<ul class="pager blog-pager">
|
|
|
|
{{ if .PrevInSection }}
|
|
|
|
<li class="previous">
|
|
|
|
<a href="{{ .PrevInSection.Permalink }}" data-toggle="tooltip" data-placement="top" title="{{ .PrevInSection.Title }}">← {{ i18n "previousPost" }}</a>
|
2023-06-13 12:47:07 +02:00
|
|
|
</li><!--/.previous-->
|
2018-05-21 15:54:09 +02:00
|
|
|
{{ end }}
|
|
|
|
{{ if .NextInSection }}
|
|
|
|
<li class="next">
|
|
|
|
<a href="{{ .NextInSection.Permalink }}" data-toggle="tooltip" data-placement="top" title="{{ .NextInSection.Title }}">{{ i18n "nextPost" }} →</a>
|
2023-06-13 12:47:07 +02:00
|
|
|
</li><!--/.next-->
|
2018-05-21 15:54:09 +02:00
|
|
|
{{ end }}
|
2023-06-13 21:41:28 +02:00
|
|
|
</ul><!--/.pager .blog-pager-->
|
2018-05-21 15:54:09 +02:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
|
|
|
|
{{ if (.Params.comments) | or (and (or (not (isset .Params "comments")) (eq .Params.comments nil)) (and .Site.Params.comments (ne .Type "page"))) }}
|
|
|
|
{{ if .Site.DisqusShortname }}
|
|
|
|
<div class="disqus-comments">
|
|
|
|
{{ template "_internal/disqus.html" . }}
|
2023-06-13 12:47:07 +02:00
|
|
|
</div><!--/.disqus-comments-->
|
2018-05-21 15:54:09 +02:00
|
|
|
{{ end }}
|
|
|
|
{{ if .Site.Params.staticman }}
|
|
|
|
<div class="staticman-comments">
|
|
|
|
{{ partial "staticman-comments.html" . }}
|
2023-06-13 12:47:07 +02:00
|
|
|
</div><!--/.staticman-comments-->
|
2018-05-21 15:54:09 +02:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
2023-06-13 21:41:28 +02:00
|
|
|
</div><!--/.col-lg-8 .col-lg-offset-2 .col-md-10 .col-md-offset-1-->
|
2023-06-13 12:47:07 +02:00
|
|
|
</div><!--/.row-->
|
|
|
|
</div><!--/.container-->
|
2018-05-21 15:54:09 +02:00
|
|
|
{{ end }}
|