diff options
Diffstat (limited to '')
| -rw-r--r-- | themes/hugo-book/layouts/posts/list.html | 22 | ||||
| -rw-r--r-- | themes/hugo-book/layouts/posts/single.html | 15 |
2 files changed, 37 insertions, 0 deletions
diff --git a/themes/hugo-book/layouts/posts/list.html b/themes/hugo-book/layouts/posts/list.html new file mode 100644 index 0000000..aff32f5 --- /dev/null +++ b/themes/hugo-book/layouts/posts/list.html @@ -0,0 +1,22 @@ +{{ define "main" }} + {{ range sort .Paginator.Pages }} + <article class="markdown book-post"> + <h2> + <a href="{{ .RelPermalink }}">{{ partial "docs/title.html" . }}</a> + </h2> + {{ partial "docs/post-meta" . }} + <div class="book-post-content"> + {{- .Summary -}} + {{ if .Truncated }} + <a href="{{ .RelPermalink }}">...</a> + {{ end }} + </div> + </article> + {{ end }} + + {{ template "_internal/pagination.html" . }} +{{ end }} + +{{ define "toc" }} + {{ partial "docs/taxonomy" . }} +{{ end }} diff --git a/themes/hugo-book/layouts/posts/single.html b/themes/hugo-book/layouts/posts/single.html new file mode 100644 index 0000000..cebdd11 --- /dev/null +++ b/themes/hugo-book/layouts/posts/single.html @@ -0,0 +1,15 @@ +{{ define "main" }} +<article class="markdown book-post"> + <h1> + {{ partial "docs/title.html" . }} + </h1> + {{ partial "docs/post-meta" . }} + <div class="book-post-content"> + {{- .Content -}} + </div> +</article> +{{ end }} + +{{ define "toc" }} + {{ partial "docs/toc" . }} +{{ end }} |
