remove lang switcher from reader view #14

This commit is contained in:
Dmitry Kolosov 2021-12-19 14:10:10 +03:00
parent 61f5b5facf
commit e3e9ce62d2
5 changed files with 41 additions and 29 deletions

View file

@ -8,11 +8,13 @@
{{ end }}
<article class="post h-entry">
<header class="post-header">
<h1 class="p-name post-title{{ if .Params.favorite }} favorite{{end}}{{ if .Params.draft }} draft{{end}}">{{ trim .Title " " }}</h1>
<div class="post-header">
<header>
<h1 class="p-name post-title{{ if .Params.favorite }} favorite{{end}}{{ if .Params.draft }} draft{{end}}">{{ trim .Title " " }}</h1>
{{ partial "post-language-switcher.html" . }}
</header>
{{ partial "post-language-switcher.html" . }}
</header>
</div>
<div class="content e-content">
{{ .Content }}
</div>