mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-09 14:59:45 +00:00
Use layout identifiers for dates
- Adds new Hugo feature (https://gohugo.io/functions/dateformat/#datetime-formatting-layouts) enabling date localization in defaults
This commit is contained in:
parent
052a699484
commit
fade059bf5
7 changed files with 139 additions and 124 deletions
|
@ -1,13 +1,14 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<div class="container markdown top-pad">
|
<div class="container markdown top-pad">
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</div>
|
</div>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<ul>
|
<ul>
|
||||||
{{ range .Pages.ByPublishDate.Reverse }}
|
{{ range .Pages.ByPublishDate.Reverse }}
|
||||||
{{ if .Date }}
|
{{ if .Date }}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ .Permalink }}">{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }} | {{ .Title | markdownify }}</a>
|
<a href="{{ .Permalink }}">{{ .Date.Format (.Site.Params.dateFormat | default ":date_medium") }} |
|
||||||
|
{{ .Title | markdownify }}</a>
|
||||||
</li>
|
</li>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<li>
|
<li>
|
||||||
|
@ -16,6 +17,6 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</body>
|
</body>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -1,14 +1,15 @@
|
||||||
{{ define "title" }}
|
{{ define "title" }}
|
||||||
<h1 class="bold-title is-1">{{ .Data.Singular | humanize }}: {{ lower .Title | markdownify }}</h1>
|
<h1 class="bold-title is-1">{{ .Data.Singular | humanize }}: {{ lower .Title | markdownify }}</h1>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<ul>
|
<ul>
|
||||||
{{ range .Pages.ByPublishDate.Reverse }}
|
{{ range .Pages.ByPublishDate.Reverse }}
|
||||||
{{ if .Date }}
|
{{ if .Date }}
|
||||||
<li>
|
<li>
|
||||||
<a href="{{ .Permalink }}">{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }} | {{ .Title | markdownify }}</a>
|
<a href="{{ .Permalink }}">{{ .Date.Format (.Site.Params.dateFormat | default ":date_medium") }} |
|
||||||
|
{{ .Title | markdownify }}</a>
|
||||||
</li>
|
</li>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<li>
|
<li>
|
||||||
|
@ -17,5 +18,5 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -1,12 +1,13 @@
|
||||||
{{ define "main" }}
|
{{ define "main" }}
|
||||||
<div class="container markdown top-pad">
|
<div class="container markdown top-pad">
|
||||||
{{ .Content }}
|
{{ .Content }}
|
||||||
</div>
|
</div>
|
||||||
<div class="container">
|
<div class="container">
|
||||||
{{ if .Site.Params.home.showLatest | default true }}
|
{{ if .Site.Params.home.showLatest | default true }}
|
||||||
<h2 class="title is-2 top-pad">{{ i18n "index_blog_latestPosts" . }}</h2>
|
<h2 class="title is-2 top-pad">{{ i18n "index_blog_latestPosts" . }}</h2>
|
||||||
{{ range first 1 .Pages.ByPublishDate.Reverse }}
|
{{ range first 1 .Pages.ByPublishDate.Reverse }}
|
||||||
<div class="summary">{{ if .Params.date }}{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }}{{ end }}
|
<div class="summary">
|
||||||
|
{{ if .Params.date }}{{ .Date.Format (.Site.Params.dateFormat | default ":date_medium") }}{{ end }}
|
||||||
<h3 class="title is-3 strong-post-title">
|
<h3 class="title is-3 strong-post-title">
|
||||||
<a href="{{ .Permalink }}">
|
<a href="{{ .Permalink }}">
|
||||||
{{ .Title | markdownify }}
|
{{ .Title | markdownify }}
|
||||||
|
@ -27,5 +28,5 @@
|
||||||
{{else}}
|
{{else}}
|
||||||
{{ partialCached "blog/li.html" . }}
|
{{ partialCached "blog/li.html" . }}
|
||||||
{{end}}
|
{{end}}
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -10,7 +10,7 @@
|
||||||
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
||||||
</h2>
|
</h2>
|
||||||
<div class="post-data">
|
<div class="post-data">
|
||||||
{{ if .Params.date }}{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }}{{ end }}
|
{{ if .Params.date }}{{ .Date.Format (.Site.Params.dateFormat | default ":date_medium") }}{{ end }}
|
||||||
{{ if .Site.Params.showReadingTime | default true }}
|
{{ if .Site.Params.showReadingTime | default true }}
|
||||||
{{ if .Params.date }} | {{ end }}
|
{{ if .Params.date }} | {{ end }}
|
||||||
{{ i18n "blog_readingTime" .ReadingTime }}
|
{{ i18n "blog_readingTime" .ReadingTime }}
|
||||||
|
@ -20,19 +20,24 @@
|
||||||
<div class="blog-share">
|
<div class="blog-share">
|
||||||
{{ i18n "blog_shareThis" . }}:
|
{{ i18n "blog_shareThis" . }}:
|
||||||
{{ if .Site.Params.share.twitter }}
|
{{ if .Site.Params.share.twitter }}
|
||||||
<a class="twitter-share-button" href="https://twitter.com/intent/tweet?text={{ .Title | markdownify }}%20{{ .Permalink }}" onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
|
<a class="twitter-share-button"
|
||||||
|
href="https://twitter.com/intent/tweet?text={{ .Title | markdownify }}%20{{ .Permalink }}"
|
||||||
|
onclick="window.open(this.href, 'twitter-share', 'width=550,height=235');return false;">
|
||||||
<i class="fab fa-twitter"></i>
|
<i class="fab fa-twitter"></i>
|
||||||
<span class="hidden">Twitter</span>
|
<span class="hidden">Twitter</span>
|
||||||
</a>
|
</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ if .Site.Params.share.facebook }}
|
{{ if .Site.Params.share.facebook }}
|
||||||
<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;">
|
<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;">
|
||||||
<i class="fab fa-facebook-f"></i>
|
<i class="fab fa-facebook-f"></i>
|
||||||
<span class="hidden">Facebook</span>
|
<span class="hidden">Facebook</span>
|
||||||
</a>
|
</a>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
{{ if .Site.Params.share.pinterest }}
|
{{ if .Site.Params.share.pinterest }}
|
||||||
<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;">
|
<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;">
|
||||||
<i class="fab fa-pinterest-p"></i>
|
<i class="fab fa-pinterest-p"></i>
|
||||||
<span class="hidden">Pinterest</span>
|
<span class="hidden">Pinterest</span>
|
||||||
</a>
|
</a>
|
||||||
|
@ -45,7 +50,7 @@
|
||||||
<p>
|
<p>
|
||||||
{{ $taxonomy_term | title }}:
|
{{ $taxonomy_term | title }}:
|
||||||
{{ range $key, $value := $taxonomy }}
|
{{ range $key, $value := $taxonomy }}
|
||||||
<a href="{{ (printf "/%s/" $taxonomy_term) | relLangURL }}{{ . | urlize }}">
|
<a href="{{ (printf " /%s/" $taxonomy_term) | relLangURL }}{{ . | urlize }}">
|
||||||
{{ $value }}</a>{{ if ne (add $key 1) $len }},{{ end }}
|
{{ $value }}</a>{{ if ne (add $key 1) $len }},{{ end }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</p>
|
</p>
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
<section>
|
<section>
|
||||||
{{ $prev := now.Format "2006"}} <!--start from the current year-->
|
{{ $prev := now.Format "2006"}}
|
||||||
|
<!--start from the current year-->
|
||||||
{{ range first 1 .Pages.ByPublishDate.Reverse }}
|
{{ range first 1 .Pages.ByPublishDate.Reverse }}
|
||||||
{{if .Date}} <!--also add the header if there are posts during the current year-->
|
{{if .Date}}
|
||||||
{{if eq $prev (.Date.Format "2006")}} <h2 class="title is-2 top-pad"> {{ $prev }}</h2> {{end}}
|
<!--also add the header if there are posts during the current year-->
|
||||||
|
{{if eq $prev (.Date.Format "2006")}}
|
||||||
|
<h2 class="title is-2 top-pad"> {{ $prev }}</h2> {{end}}
|
||||||
{{end}}
|
{{end}}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
||||||
|
@ -14,7 +17,7 @@
|
||||||
{{end}}
|
{{end}}
|
||||||
<li class="post-item">
|
<li class="post-item">
|
||||||
{{ if .Params.date }}
|
{{ if .Params.date }}
|
||||||
<span>{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }}</span> -
|
<span>{{ .Date.Format (.Site.Params.dateFormat | default ":date_medium") }}</span> -
|
||||||
{{ end }}
|
{{ end }}
|
||||||
<span><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></span>
|
<span><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></span>
|
||||||
</li>
|
</li>
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
{{ range .Pages.ByPublishDate.Reverse }}
|
{{ range .Pages.ByPublishDate.Reverse }}
|
||||||
<li class="post-item">
|
<li class="post-item">
|
||||||
<span><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></span>{{ if .Params.date }} - <span>{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }}</span>{{ end }}
|
<span><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></span>{{ if .Params.date }} -
|
||||||
</li>
|
<span>{{ .Date.Format (.Site.Params.dateFormat | default ":date_medium") }}</span>{{ end }}
|
||||||
|
</li>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
{{ if .Site.Params.home.showLatest | default true }}
|
{{ if .Site.Params.home.showLatest | default true }}
|
||||||
<h2 class="title is-2 has-text-centered">{{ i18n "index_blog_latestPosts" . }}</h2>
|
<h2 class="title is-2 has-text-centered">{{ i18n "index_blog_latestPosts" . }}</h2>
|
||||||
{{ range first 1 .Pages.ByPublishDate.Reverse }}
|
{{ range first 1 .Pages.ByPublishDate.Reverse }}
|
||||||
<div class="summary">{{ if .Params.date }}{{ .Date.Format (.Site.Params.dateFormat | default "Jan 02, 2006") }}{{ end }}
|
<div class="summary">
|
||||||
|
{{ if .Params.date }}{{ .Date.Format (.Site.Params.dateFormat | default ":date_medium") }}{{ end }}
|
||||||
<h3 class="title is-3 latest-post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h3>
|
<h3 class="title is-3 latest-post-title"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h3>
|
||||||
<div class="markdown">
|
<div class="markdown">
|
||||||
{{ .Summary }}
|
{{ .Summary }}
|
||||||
|
@ -18,8 +19,8 @@
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ if .Site.Params.home.showAllPosts }}
|
{{ if .Site.Params.home.showAllPosts }}
|
||||||
<div class="section" id="all-posts">
|
<div class="section" id="all-posts">
|
||||||
<div class="container">
|
<div class="container">
|
||||||
<h2 class="title is-2 top-pad">{{ i18n "index_blog_allPosts" . }}</h2>
|
<h2 class="title is-2 top-pad">{{ i18n "index_blog_allPosts" . }}</h2>
|
||||||
{{if .Site.Params.home.allPostsArchiveFormat}}
|
{{if .Site.Params.home.allPostsArchiveFormat}}
|
||||||
|
@ -28,16 +29,18 @@
|
||||||
{{ partialCached "blog/li.html" . }}
|
{{ partialCached "blog/li.html" . }}
|
||||||
{{end}}
|
{{end}}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
<div class="container has-text-centered top-pad">
|
<div class="container has-text-centered top-pad">
|
||||||
<a href="{{ .Permalink }}">{{ i18n "index_blog_allPosts" . }}</a>
|
<a href="{{ .Permalink }}">{{ i18n "index_blog_allPosts" . }}</a>
|
||||||
</div>
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
||||||
<!-- End Blog container -->
|
<!-- End Blog container -->
|
||||||
{{ partial "top-icon.html" . }}
|
{{ partial "top-icon.html" . }}
|
||||||
|
|
||||||
<!-- End Blog section -->
|
<!-- End Blog section -->
|
||||||
<div class="container"><hr></div>
|
<div class="container">
|
||||||
|
<hr>
|
||||||
|
</div>
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
|
Loading…
Reference in a new issue