mirror of
https://github.com/thomasjsn/hugo-theme-hello-friend.git
synced 2024-11-14 20:35:07 +01:00
c7bf511567
When using multiple languages the tags links on the blogposts header use always the main language base URL (even when you're on post on other language). This PR fixes that
102 lines
3.4 KiB
HTML
102 lines
3.4 KiB
HTML
{{ define "main" }}
|
|
{{ $isntDefault := not (or (eq (trim $.Site.Params.contentTypeName " ") "posts") (eq (trim $.Site.Params.contentTypeName " ") "")) }}
|
|
{{ $contentTypeName := cond $isntDefault (string $.Site.Params.contentTypeName) "posts" }}
|
|
|
|
<div class="post">
|
|
<h1 class="post-title">{{ .Title | markdownify }}</h1>
|
|
<div class="post-meta">
|
|
{{ if .Date | default nil }}
|
|
<span class="post-date">
|
|
{{ .Date.Format ($.Site.Params.DateFormatSingle | default "2006-01-02") }}
|
|
</span>
|
|
|
|
{{ if eq .Type $contentTypeName }}
|
|
{{ if $.Site.Params.LastModDisplay }}
|
|
{{ partial "lastmod.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ with .Params.Author }}
|
|
<span class="post-author"
|
|
>— {{ $.Site.Params.WrittenBy | default "Written by" }} {{ . }}</span
|
|
>{{ end }}
|
|
|
|
|
|
{{ if $.Site.Params.ShowReadingTime }}
|
|
<span class="post-read-time"
|
|
>— {{ .ReadingTime }} {{ $.Site.Params.MinuteReadingTime | default "min read" }}</span
|
|
>
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ if .Params.tags }}
|
|
<span class="post-tags">
|
|
{{ range .Params.tags }}
|
|
<a href="{{ (urlize (printf "tags/%s" . )) | absLangURL }}/">#{{ . }}</a>
|
|
{{ end }}
|
|
</span>
|
|
{{ end }}
|
|
|
|
{{ if .Params.Cover }}
|
|
<figure class="post-cover">
|
|
{{ if .Params.UseRelativeCover }}
|
|
<img src="{{ (printf "%s%s" .Permalink .Params.Cover ) }}" alt="{{ .Params.CoverAlt | plainify | default .Title }}" />
|
|
{{ else }}
|
|
<img src="{{ .Params.Cover | absURL }}" alt="{{ .Params.CoverAlt | plainify | default .Title }}" />
|
|
{{ end }}
|
|
|
|
{{ if .Params.CoverCaption }}
|
|
<figcaption class="center">{{ .Params.CoverCaption | markdownify }}</figcaption>
|
|
{{ end }}
|
|
</figure>
|
|
{{ end }}
|
|
|
|
<div class="post-content">
|
|
{{ if or .Params.Toc $.Site.Params.Toc }}
|
|
{{ if ne .Params.Toc false }}
|
|
<h2>Table of Contents</h2>
|
|
<aside class="table-of-contents">{{ .TableOfContents }}</aside>
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ .Content }}
|
|
</div>
|
|
{{ if eq .Type $.Site.Params.contentTypeName }}
|
|
{{ if or .NextInSection .PrevInSection }}
|
|
<div class="pagination">
|
|
<div class="pagination__title">
|
|
<span class="pagination__title-h"
|
|
>{{ $.Site.Params.ReadOtherPosts | default "Read other posts" }}</span
|
|
>
|
|
<hr />
|
|
</div>
|
|
<div class="pagination__buttons">
|
|
{{ if .NextInSection }}
|
|
<span class="button previous">
|
|
<a href="{{ .NextInSection.Permalink }}">
|
|
<span class="button__icon">←</span>
|
|
<span class="button__text">{{ .NextInSection.Title }}</span>
|
|
</a>
|
|
</span>
|
|
{{ end }}
|
|
{{ if .PrevInSection }}
|
|
<span class="button next">
|
|
<a href="{{ .PrevInSection.Permalink }}">
|
|
<span class="button__text">{{ .PrevInSection.Title }}</span>
|
|
<span class="button__icon">→</span>
|
|
</a>
|
|
</span>
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
{{ if not (eq .Params.Comments "false") }}
|
|
{{ if or (eq .Type $.Site.Params.contentTypeName) (.Params.Comments) }}
|
|
{{ partial "comments.html" . }}
|
|
{{ end }}
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|