mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-13 07:57:02 +01:00
Alan Orth
b862745a0d
This became a problem when I added right-to-left language support. When you mix RTL languages like Arabic with English (even for just dates and small strings) everything becomes jumbled. For now I have only added translations for English (default), Arabic, and Bulgarian.
13 lines
703 B
HTML
13 lines
703 B
HTML
{{ $dateFormat := default "Mon Jan 2, 2006" (index .Site.Params "date_format") }}
|
|
|
|
<article class="blog-post">
|
|
<header>
|
|
<h2 class="blog-post-title" dir="auto"><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></h2>
|
|
<p class="blog-post-meta"><time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format $dateFormat }}</time> {{ i18n "authoredBy" }} {{ .Params.author | default .Site.Params.author }}{{ if or (.Params.categories) (.Params.tags) }} {{ i18n "postedIn" }} {{ partial "meta-terms.html" . }}{{ end }}</p>
|
|
</header>
|
|
{{ .Summary }}
|
|
<a href='{{ .Permalink }}'>{{ i18n "readMore" }}</a>
|
|
</article> <!-- /.blog-post -->
|
|
|
|
{{- /* vim: set ts=2 sw=2 et: */}}
|