hugo-theme-introduction/layouts/blog/single.html

53 lines
2.6 KiB
HTML
Raw Normal View History

2018-07-01 08:09:29 +00:00
{{ define "title" }}
2018-07-21 07:53:23 +00:00
<h1 class="bold-title is-1">{{ (.Site.GetPage "section" "/blog").Title }}</h1>
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-07-20 12:45:36 +00:00
{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }} |
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-07-01 08:09:29 +00:00
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text=Read%20{{ .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 }}&amp;media={{ .Site.BaseURL }}{{ .Params.pinterestMedia }}{{ end }}&amp;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 }}
</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 }}