mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-04-29 03:53:30 +08:00
24 lines
610 B
HTML
24 lines
610 B
HTML
<div class="article-details">
|
|
{{ partial "article/components/categories" . }}
|
|
|
|
<h2 class="article-title">
|
|
<a href="{{ .RelPermalink }}">
|
|
{{- .Title -}}
|
|
</a>
|
|
</h2>
|
|
|
|
{{ with .Params.description }}
|
|
<h3 class="article-subtitle">
|
|
{{ . }}
|
|
</h3>
|
|
{{ end }}
|
|
|
|
{{- if not .Date.IsZero -}}
|
|
<footer class="article-time">
|
|
{{ partial "helper/icon" "clock" }}
|
|
<time class="article-time--published">
|
|
{{- .Date.Format (or .Site.Params.dateFormat.published "Jan 02, 2006") -}}
|
|
</time>
|
|
</footer>
|
|
{{- end -}}
|
|
</div> |