mirror of
https://github.com/jackyzha0/quartz.git
synced 2025-12-25 05:44:06 -06:00
* Extract all strings into data/locale.toml files. * Use data/config values from correct language file. * Fix wrong lang attribute in some html layouts. * Fix header direction in rtl. * Fix footer text align in rtl. Signed-off-by: yshalsager <ysh-alsager@hotmail.com>
22 lines
527 B
HTML
22 lines
527 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Lang }}">
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
|
{{partial "search.html" .}}
|
|
<div class="singlePage">
|
|
<!-- Begin actual content -->
|
|
{{partial "header.html" .}}
|
|
<article>
|
|
<h1>{{ i18n "all_posts" . }}</h1>
|
|
{{with .Params.description}}
|
|
<p>{{.}}</p>
|
|
{{end}}
|
|
{{partial "page-list.html" .Paginator.Pages.ByLastmod.Reverse }}
|
|
{{ template "_internal/pagination.html" .}}
|
|
</article>
|
|
{{partial "contact.html" .}}
|
|
</div>
|
|
</body>
|
|
</html>
|