- Created `micro.html` for handling reply, repost, like, bookmark, and RSVP links. - Added `postCard.html` for rendering individual post items with icons based on post type. - Introduced `search-form.html` for search input and `search-index.html` for displaying search results. - Implemented `series.html` to show related posts in a series format. - Added `socialIcons.html` for rendering social media links. - Created `syndication.html` to display syndication links for posts. - Introduced `tags.html` for displaying tags and categories associated with posts. - Added `webmention.html` for integrating webmention functionality. - Updated SASS files for styling adjustments.
29 lines
786 B
HTML
29 lines
786 B
HTML
|
|
{{- if .Params.series -}}
|
|
<div class="post-series-bottom">
|
|
{{- with (.GetTerms "series") -}}
|
|
{{- range . -}}
|
|
{{- $series := .Pages.ByDate -}}
|
|
<details class="entry-toc">
|
|
<summary>
|
|
<span class="entry-toc-header">
|
|
This post is part of the <strong>{{ .Title }}</strong> series
|
|
</span>
|
|
</summary>
|
|
<ol>
|
|
{{- range $series -}}
|
|
<li>
|
|
{{- if eq .File.UniqueID $.File.UniqueID -}}
|
|
<b>{{ .Title }}</b>
|
|
{{- else -}}
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a>
|
|
{{- end -}}
|
|
</li>
|
|
{{- end -}}
|
|
</ol>
|
|
</details>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</div>
|
|
{{- end -}}
|