2018-07-01 08:09:29 +00:00
|
|
|
{{ define "title" }}
|
2018-07-23 04:00:30 +00:00
|
|
|
{{ with .Site.GetPage "/blog" }}
|
2018-07-22 05:03:30 +00:00
|
|
|
<h1 class="bold-title is-1">{{ .Title }}</h1>
|
|
|
|
{{ end }}
|
2018-07-01 08:09:29 +00:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "main" }}
|
|
|
|
<div class="container">
|
|
|
|
<h2 class="title is-1 top-pad strong-post-title">
|
|
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
|
|
</h2>
|
|
|
|
<div class="post-data">
|
2018-09-16 03:22:05 +00:00
|
|
|
{{ if .Params.date }}{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }} |{{ end }}
|
2018-07-01 08:09:29 +00:00
|
|
|
{{ i18n "blog_readingTime" .ReadingTime }}
|
2018-06-25 13:03:18 +00:00
|
|
|
</div>
|
2018-07-20 12:45:36 +00:00
|
|
|
{{ if or .Site.Params.share.twitter .Site.Params.share.facebook .Site.Params.share.pinterest .Site.Params.share.googlePlus }}
|
2018-07-01 08:09:29 +00:00
|
|
|
<div class="blog-share">
|
|
|
|
{{ i18n "blog_shareThis" . }}:
|
2018-07-20 12:45:36 +00:00
|
|
|
{{ if .Site.Params.share.twitter }}
|
2018-11-09 06:40:04 +00:00
|
|
|
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text={{ .Title }}%20{{ .Permalink }}" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
|
2018-07-13 09:23:52 +00:00
|
|
|
<i class="fab fa-twitter"></i>
|
2018-07-01 08:09:29 +00:00
|
|
|
<span class="hidden">Twitter</span>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
2018-07-20 12:45:36 +00:00
|
|
|
{{ if .Site.Params.share.facebook }}
|
2018-07-01 08:09:29 +00:00
|
|
|
<a class="icon-facebook" href="https://www.facebook.com/sharer/sharer.php?u={{ .Permalink }}" onclick="window.open(this.href, 'facebook-share','width=580,height=296');return false;">
|
2018-07-13 09:23:52 +00:00
|
|
|
<i class="fab fa-facebook-f"></i>
|
2018-07-01 08:09:29 +00:00
|
|
|
<span class="hidden">Facebook</span>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
2018-07-20 12:45:36 +00:00
|
|
|
{{ if .Site.Params.share.pinterest }}
|
2018-07-01 08:09:29 +00:00
|
|
|
<a class="icon-pinterest" href="http://pinterest.com/pin/create/button/?url={{ .Permalink }}{{ if .Params.pinterestMedia }}&media={{ .Site.BaseURL }}{{ .Params.pinterestMedia }}{{ end }}&description={{ .Title | safeHTML}}" onclick="window.open(this.href, 'pinterest-share','width=580,height=296');return false;">
|
2018-07-13 09:23:52 +00:00
|
|
|
<i class="fab fa-pinterest-p"></i>
|
2018-07-01 08:09:29 +00:00
|
|
|
<span class="hidden">Pinterest</span>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
2018-07-20 12:45:36 +00:00
|
|
|
{{ if .Site.Params.share.googlePlus }}
|
2018-07-01 08:09:29 +00:00
|
|
|
<a class="icon-google-plus" href="https://plus.google.com/share?url={{ .Permalink }}" onclick="window.open(this.href, 'google-plus-share', 'width=490,height=530');return false;">
|
2018-07-13 09:23:52 +00:00
|
|
|
<i class="fab fa-google-plus-g"></i>
|
2018-07-01 08:09:29 +00:00
|
|
|
<span class="hidden">Google+</span>
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
2018-06-25 13:03:18 +00:00
|
|
|
</div>
|
2018-07-01 08:09:29 +00:00
|
|
|
{{ end }}
|
2018-07-23 22:04:56 +00:00
|
|
|
{{ if .Params.tags }}
|
2018-10-10 13:59:03 +00:00
|
|
|
{{ $len := (len .Params.tags) }}
|
2018-07-23 22:04:56 +00:00
|
|
|
<p>
|
2018-10-10 13:59:03 +00:00
|
|
|
Tag{{ if gt $len 1 }}s{{ end }}:
|
2018-07-23 22:04:56 +00:00
|
|
|
{{ range $index, $tag := .Params.tags }}
|
2018-10-10 13:59:03 +00:00
|
|
|
<a href="{{ "/tags/" | absLangURL }}{{ . | urlize }}">{{ . }}</a>{{ if ne (add $index 1) $len }},{{ end }}
|
2018-07-23 22:04:56 +00:00
|
|
|
{{ end }}
|
|
|
|
</p>
|
|
|
|
{{ end }}
|
2018-07-01 08:09:29 +00:00
|
|
|
</div>
|
|
|
|
<!-- Begin blog post content -->
|
|
|
|
<div class="container markdown top-pad">
|
|
|
|
{{ .Content }}
|
|
|
|
</div>
|
|
|
|
<!-- End blog post content -->
|
|
|
|
<div class="disqus">
|
|
|
|
{{ template "_internal/disqus.html" . }}
|
2017-03-13 09:14:02 +00:00
|
|
|
</div>
|
2018-07-01 08:09:29 +00:00
|
|
|
{{ end }}
|