mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-14 02:46:16 +01:00
93 lines
4.4 KiB
HTML
93 lines
4.4 KiB
HTML
{{- define "title" }}{{ .Title }} | {{ .Site.Title }}{{ end -}}
|
|
|
|
{{- define "content" -}}
|
|
{{- $scratch := .Scratch.Get "scratch" -}}
|
|
<article class="page single">
|
|
{{- /* Title */ -}}
|
|
<h1 class="single-title animated flipInX">{{ .Title }}</h1>
|
|
{{- with .Params.subtitle -}}
|
|
<h2 class="single-subtitle">{{ . }}</h2>
|
|
{{- end -}}
|
|
|
|
{{- /* Meta */ -}}
|
|
<div class="post-meta">
|
|
<div class="post-meta-line">
|
|
{{- $author := .Params.author | default .Site.Author.name | default (T "author") -}}
|
|
{{- $authorLink := .Params.authorLink | default .Site.Author.link | default (relLangURL "/") -}}
|
|
<span class="post-author">
|
|
{{- $options := dict "class" "author" "href" $authorLink "title" "Author" "rel" "author" "icon" (dict "class" "fas fa-user-circle fa-fw") "content" $author -}}
|
|
{{- partial "plugin/link.html" $options -}}
|
|
</span>
|
|
|
|
{{- with .Params.categories -}}
|
|
|
|
<span class="post-category">
|
|
{{- T "included" -}}
|
|
{{- range $index, $value := . -}}
|
|
{{- if gt $index 0 }} {{ end -}}
|
|
<a href="{{ `/categories/` | relLangURL }}{{ urlize $value }}">
|
|
<i class="far fa-folder fa-fw"></i>{{ $value | humanize }}
|
|
</a>
|
|
{{- end -}}
|
|
</span>
|
|
{{- end -}}
|
|
</div>
|
|
<div class="post-meta-line">
|
|
{{- $publish_date := .PublishDate.Format (.Site.Params.dateFormatToUse | default "2006-01-02") -}}
|
|
<i class="far fa-calendar-alt fa-fw"></i><time datetime={{ $publish_date }}>{{ $publish_date }}</time>
|
|
<i class="fas fa-pencil-alt fa-fw"></i>{{ T "wordCount" .WordCount }}
|
|
<i class="far fa-clock fa-fw"></i>{{ T "readingTime" .ReadingTime }}
|
|
{{- if eq hugo.Environment "production" | and .Site.Params.comment.valine.enable | and .Site.Params.comment.valine.visitor -}}
|
|
<span id="{{ .RelPermalink | relURL }}" class="leancloud_visitors" data-flag-title="{{ .Title }}">
|
|
<i class="far fa-eye fa-fw"></i><span class=leancloud-visitors-count></span> {{ T "views" }}
|
|
</span>
|
|
{{- end -}}
|
|
</div>
|
|
</div>
|
|
|
|
{{- /* Featured image */ -}}
|
|
{{- with .Params.featuredImage -}}
|
|
<div class="featured-image">
|
|
{{- partial "plugin/image.html" (dict "src" . "alt" $.Description "large" true) -}}
|
|
</div>
|
|
{{- end -}}
|
|
|
|
{{- /* TOC */ -}}
|
|
{{- if or .Params.toc (and .Site.Params.toc (ne .Params.toc false)) -}}
|
|
<div class="toc" id="toc-auto">
|
|
<h2 class="toc-title">{{ T "contents" }}</h2>
|
|
{{- $globalAutoCollapseToc := .Site.Params.autoCollapseToc | default true }}
|
|
<div class="toc-content{{ if not (and $globalAutoCollapseToc (ne .Params.autoCollapseToc false)) }} always-active{{ end }}" id="toc-content-auto"></div>
|
|
</div>
|
|
<div class="toc" id="toc-static">
|
|
<details>
|
|
<summary>
|
|
<div class="toc-title">
|
|
<span>{{ T "contents" }}</span>
|
|
<span><i class="details icon fas fa-angle-down"></i></span>
|
|
</div>
|
|
</summary>
|
|
<div class="toc-content" id="toc-content-static">
|
|
{{- $toc := .TableOfContents -}}
|
|
{{- $toc = partial "function/fontawesome.html" $toc -}}
|
|
{{- $toc = partial "function/ruby.html" $toc -}}
|
|
{{- $toc | safeHTML -}}
|
|
</div>
|
|
</details>
|
|
</div>
|
|
{{- end -}}
|
|
|
|
{{- /* Content */ -}}
|
|
<div class="content" id="content">
|
|
{{- partial "single/content.html" .Content -}}
|
|
</div>
|
|
|
|
{{- /* Footer */ -}}
|
|
{{- partial "single/footer.html" . -}}
|
|
|
|
{{- /* Comment */ -}}
|
|
{{- if ( .Params.comment | default true ) -}}
|
|
{{- partial "comment.html" . -}}
|
|
{{- end -}}
|
|
</article>
|
|
{{- end -}}
|