Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/wlh320/hugo-theme-hulga.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials/post-header.html')
-rw-r--r--layouts/partials/post-header.html37
1 files changed, 37 insertions, 0 deletions
diff --git a/layouts/partials/post-header.html b/layouts/partials/post-header.html
new file mode 100644
index 0000000..d156c78
--- /dev/null
+++ b/layouts/partials/post-header.html
@@ -0,0 +1,37 @@
+<section class="hero is-primary shadow-hero {{ if .Site.Params.heroBold}} is-bold {{ end }}">
+ <div class="hero-head">
+ {{ partial "nav.html" . }}
+ </div>
+ <div class="hero-body">
+ <header class="container has-text-centered">
+ <h1 class="title post-title">
+ {{ .Title }}
+ </h1>
+ <h2 class="subtitle">
+ {{- if isset .Params "date" -}}
+ <time class="post-meta">{{ .Date.Format "2006/01/02" }}</time>
+ {{- end -}}
+ {{ with .Params.Categories }} ・
+ {{ range .}}
+ <span class="post-tag post-meta">
+ <a href="{{ "/categories/" | relLangURL }}{{ . | urlize }}">{{ . }}</a>
+ </span>
+ {{ end }}
+ {{ end }}
+ {{- if eq .Type "archives" -}}
+ {{- $count := len (where (where .Site.Pages "Type" "post") "Kind" "page") -}}
+ {{ i18n "archives_count" (dict "Count" $count) }}
+ {{- end -}}
+ </h2>
+ {{ with .Params.tags }}
+ <div class="tagbox post-meta">
+ {{ range . }}
+ <span class="post-tag">
+ <a href="{{ "/tags/" | relLangURL }}{{ . | urlize }}">#{{ . }}</a>
+ </span>
+ {{ end }}
+ </div>
+ {{ end }}
+ </header>
+ </div>
+</section> \ No newline at end of file