diff options
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.html | 61 |
1 files changed, 0 insertions, 61 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 deleted file mode 100644 index 7c27302..0000000 --- a/themes/hugo-theme-stack/layouts/partials/article/components/details.html +++ /dev/null @@ -1,61 +0,0 @@ -<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> |