mirror of
https://github.com/BBaoVanC/bobatheme.git
synced 2024-12-22 04:13:17 -06:00
parent
b745f87462
commit
8067173f0c
@ -23,6 +23,10 @@ browser_no_video_support:
|
|||||||
no_posts:
|
no_posts:
|
||||||
other: "No posts here!"
|
other: "No posts here!"
|
||||||
|
|
||||||
|
post_count:
|
||||||
|
one: "{{ . }} post"
|
||||||
|
other: "{{ . }} posts"
|
||||||
|
|
||||||
|
|
||||||
table_of_contents:
|
table_of_contents:
|
||||||
other: "Table of Contents"
|
other: "Table of Contents"
|
||||||
|
16
layouts/_default/author-summary.html
Normal file
16
layouts/_default/author-summary.html
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
<div class="post">
|
||||||
|
<h2 class="post-title">
|
||||||
|
<a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
||||||
|
{{ if .Draft }}{{ partial "icon.html" "write" }}{{ end }}
|
||||||
|
</h2>
|
||||||
|
|
||||||
|
{{ partial "author-metadata.html" . }}
|
||||||
|
|
||||||
|
<div class="post-description">
|
||||||
|
{{ partial "description-or-summary.html" . }}
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="readmore">
|
||||||
|
<a href="{{ .Permalink }}">{{ i18n "read_more" }} →</a>
|
||||||
|
</div>
|
||||||
|
</div>
|
14
layouts/authors/list.html
Normal file
14
layouts/authors/list.html
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<h1>
|
||||||
|
{{ partial "icon.html" "user-circle" }}
|
||||||
|
{{ .Title | markdownify }}
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
<div class="page-list">
|
||||||
|
<ul>
|
||||||
|
{{ range .Paginator.Pages }}
|
||||||
|
<li>{{ .Render "author-summary" }}</li>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
25
layouts/authors/term.html
Normal file
25
layouts/authors/term.html
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{{ define "main" }}
|
||||||
|
<h1>
|
||||||
|
{{ partial "icon.html" "user-circle" }}
|
||||||
|
{{ .Title | markdownify }}
|
||||||
|
{{ partial "rss-link.html" . }}
|
||||||
|
</h1>
|
||||||
|
|
||||||
|
{{ partial "author-metadata.html" . }}
|
||||||
|
|
||||||
|
{{ .Content }}
|
||||||
|
|
||||||
|
<div class="page-list">
|
||||||
|
<ul>
|
||||||
|
{{ range .Paginator.Pages }}
|
||||||
|
<li>{{ .Render "summary" }}</li>
|
||||||
|
{{ else }}
|
||||||
|
<div>
|
||||||
|
{{ i18n "no_posts" }}
|
||||||
|
</div>
|
||||||
|
{{ end }}
|
||||||
|
</ul>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{{ partial "pagination.html" . }}
|
||||||
|
{{ end }}
|
@ -1,9 +1,17 @@
|
|||||||
{{ with .Params.authors }}
|
<div class="post-metadata">
|
||||||
|
{{/* Calculate the total word count */}}
|
||||||
|
{{ $total_words := 0 }}
|
||||||
|
{{ range .Data.Pages }}
|
||||||
|
{{ $total_words = add $total_words .WordCount }}
|
||||||
|
{{ end }}
|
||||||
|
|
||||||
<meta name="author" content="{{ delimit . ", " }}">
|
<span class="post-meta-item">
|
||||||
|
{{ partial "icon.html" "newspaper" }}
|
||||||
|
{{ i18n "post_count" (len .Data.Pages) }}
|
||||||
|
</span>
|
||||||
|
|
||||||
{{ range . }}
|
<span class="post-meta-item">
|
||||||
<meta property="article:author" content="{{ . }}">
|
{{ partial "icon.html" "align-left" }}
|
||||||
{{ end }}
|
{{ i18n "wordcount" $total_words }}
|
||||||
|
</span>
|
||||||
{{ end }}
|
</div>
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
{{ with .Description }}
|
|
||||||
<div class="term-description">
|
|
||||||
<p>{{ . | markdownify }}</p>
|
|
||||||
</div>
|
|
||||||
{{ end }}
|
|
@ -5,7 +5,7 @@
|
|||||||
{{ partial "rss-link.html" . }}
|
{{ partial "rss-link.html" . }}
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
{{ partial "term-description.html" . }}
|
{{ partial "description-or-summary.html" . }}
|
||||||
|
|
||||||
<div class="page-list">
|
<div class="page-list">
|
||||||
<ul>
|
<ul>
|
||||||
|
@ -2,8 +2,6 @@
|
|||||||
<h1>
|
<h1>
|
||||||
{{ if eq .Data.Singular "tag" }}
|
{{ if eq .Data.Singular "tag" }}
|
||||||
{{ partial "icon.html" "tag" }}
|
{{ partial "icon.html" "tag" }}
|
||||||
{{ else if eq .Data.Singular "author" }}
|
|
||||||
{{ partial "icon.html" "user-circle" }}
|
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ partial "icon.html" "filter" }}
|
{{ partial "icon.html" "filter" }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
|
@ -2,8 +2,6 @@
|
|||||||
<h1>
|
<h1>
|
||||||
{{ if eq .Data.Singular "tag" }}
|
{{ if eq .Data.Singular "tag" }}
|
||||||
{{ partial "icon.html" "tag" }}
|
{{ partial "icon.html" "tag" }}
|
||||||
{{ else if eq .Data.Singular "author" }}
|
|
||||||
{{ partial "icon.html" "user-circle" }}
|
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ partial "icon.html" "filter" }}
|
{{ partial "icon.html" "filter" }}
|
||||||
{{ end }}
|
{{ end }}
|
||||||
@ -12,7 +10,7 @@
|
|||||||
{{ partial "rss-link.html" . }}
|
{{ partial "rss-link.html" . }}
|
||||||
</h1>
|
</h1>
|
||||||
|
|
||||||
{{ partial "term-description.html" . }}
|
{{ partial "description-or-summary.html" . }}
|
||||||
<div class="page-list">
|
<div class="page-list">
|
||||||
<ul>
|
<ul>
|
||||||
{{ range .Paginator.Pages }}
|
{{ range .Paginator.Pages }}
|
||||||
|
Loading…
Reference in New Issue
Block a user