aboutsummaryrefslogtreecommitdiff
path: root/themes/hugo-theme-stack/layouts/partials/article/components/details.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/hugo-theme-stack/layouts/partials/article/components/details.html')
-rw-r--r--themes/hugo-theme-stack/layouts/partials/article/components/details.html61
1 files changed, 61 insertions, 0 deletions
diff --git a/themes/hugo-theme-stack/layouts/partials/article/components/details.html b/themes/hugo-theme-stack/layouts/partials/article/components/details.html
new file mode 100644
index 0000000..7c27302
--- /dev/null
+++ b/themes/hugo-theme-stack/layouts/partials/article/components/details.html
@@ -0,0 +1,61 @@
+<div class="article-details">
+ {{ if .Params.categories }}
+ <header class="article-category">
+ {{ range (.GetTerms "categories") }}
+ <a href="{{ .RelPermalink }}" {{ with .Params.style }}style="background-color: {{ .background }}; color: {{ .color }};"{{ end }}>
+ {{ .LinkTitle }}
+ </a>
+ {{ end }}
+ </header>
+ {{ end }}
+
+ <div class="article-title-wrapper">
+ <h2 class="article-title">
+ <a href="{{ .RelPermalink }}">
+ {{- .Title -}}
+ </a>
+ </h2>
+
+ {{ with .Params.description }}
+ <h3 class="article-subtitle">
+ {{ . }}
+ </h3>
+ {{ end }}
+ </div>
+
+ {{ $showReadingTime := .Params.readingTime | default (.Site.Params.article.readingTime) }}
+ {{ $showDate := not .Date.IsZero }}
+ {{ $showFooter := or $showDate $showReadingTime }}
+ {{ if $showFooter }}
+ <footer class="article-time">
+ {{ if $showDate }}
+ <div>
+ {{ partial "helper/icon" "date" }}
+ <time class="article-time--published">
+ {{- .Date | time.Format (or .Site.Params.dateFormat.published "Jan 02, 2006") -}}
+ </time>
+ </div>
+ {{ end }}
+
+ {{ if $showReadingTime }}
+ <div>
+ {{ partial "helper/icon" "clock" }}
+ <time class="article-time--reading">
+ {{ T "article.readingTime" .ReadingTime }}
+ </time>
+ </div>
+ {{ end }}
+ </footer>
+ {{ end }}
+
+ {{ if .IsTranslated }}
+ <footer class="article-translations">
+ {{ partial "helper/icon" "language" }}
+ <div>
+ {{ range .Translations }}
+ <a href="{{ .Permalink }}" class="link">{{ .Language.LanguageName }}</a>
+ {{ end }}
+ </div>
+ </footer>
+ {{ end }}
+</div>