|
| 1 | +<div class="article-details"> |
| 2 | + {{ if .Params.categories }} |
| 3 | + <header class="article-category"> |
| 4 | + {{ range (.GetTerms "categories") }} |
| 5 | + <a href="{{ .RelPermalink }}" {{ with .Params.style }}style="background-color: {{ .background }}; color: {{ .color }};"{{ end }}> |
| 6 | + {{ .LinkTitle }} |
| 7 | + </a> |
| 8 | + {{ end }} |
| 9 | + </header> |
| 10 | + {{ end }} |
| 11 | + |
| 12 | + {{ if .Params.tags }} |
| 13 | + <div class="article-tags"> |
| 14 | + {{ range (.GetTerms "tags") }} |
| 15 | + <a href="{{ .RelPermalink }}"> |
| 16 | + {{ .LinkTitle }} |
| 17 | + </a> |
| 18 | + {{ end }} |
| 19 | + </div> |
| 20 | + {{ end }} |
| 21 | + |
| 22 | + <div class="article-title-wrapper"> |
| 23 | + <h2 class="article-title"> |
| 24 | + <a href="{{ .RelPermalink }}"> |
| 25 | + {{- .Title -}} |
| 26 | + </a> |
| 27 | + </h2> |
| 28 | + |
| 29 | + {{ with .Params.description }} |
| 30 | + <h3 class="article-subtitle"> |
| 31 | + {{ . }} |
| 32 | + </h3> |
| 33 | + {{ end }} |
| 34 | + </div> |
| 35 | + |
| 36 | + {{ $showReadingTime := .Params.readingTime | default (.Site.Params.article.readingTime) }} |
| 37 | + {{ $showDate := not .Date.IsZero }} |
| 38 | + {{ $showFooter := or $showDate $showReadingTime }} |
| 39 | + {{ if $showFooter }} |
| 40 | + <footer class="article-time"> |
| 41 | + {{ if $showDate }} |
| 42 | + <div> |
| 43 | + {{ partial "helper/icon" "date" }} |
| 44 | + <time class="article-time--published"> |
| 45 | + {{- .Date.Format (or .Site.Params.dateFormat.published "Jan 02, 2006") -}} |
| 46 | + </time> |
| 47 | + </div> |
| 48 | + {{ end }} |
| 49 | + |
| 50 | + {{ if $showReadingTime }} |
| 51 | + <div> |
| 52 | + {{ partial "helper/icon" "clock" }} |
| 53 | + <time class="article-time--reading"> |
| 54 | + {{ T "article.readingTime" .ReadingTime }} |
| 55 | + </time> |
| 56 | + </div> |
| 57 | + {{ end }} |
| 58 | + |
| 59 | + <br> |
| 60 | + |
| 61 | + {{- if ne .Lastmod .Date -}} |
| 62 | + <div> |
| 63 | + <time class="article-time"> |
| 64 | + {{ partial "helper/icon" "lastmod" }} |
| 65 | + {{ T "article.lastUpdatedOn" }} {{ .Lastmod.Format ( or .Site.Params.dateFormat.lastUpdated "Jan 02, 2006 15:04" ) }} |
| 66 | + </time> |
| 67 | + </div> |
| 68 | + {{- end -}} |
| 69 | + </footer> |
| 70 | + {{ end }} |
| 71 | + |
| 72 | + {{ if .IsTranslated }} |
| 73 | + <footer class="article-translations"> |
| 74 | + {{ partial "helper/icon" "language" }} |
| 75 | + <div> |
| 76 | + {{ range .Translations }} |
| 77 | + <a href="{{ .Permalink }}" class="link">{{ .Language.LanguageName }}</a> |
| 78 | + {{ end }} |
| 79 | + </div> |
| 80 | + </footer> |
| 81 | + {{ end }} |
| 82 | +</div> |
0 commit comments