Procházet zdrojové kódy

Fix to take care of multiple author list, or for setting the (#221)

author parameter to a []string, which is the default for ox-hugo
output.
tags/2.6.0
frankieliu před 5 roky
rodič
revize
813de5ccd6
1 změnil soubory, kde provedl 7 přidání a 1 odebrání
  1. 7
    1
      layouts/_default/single.html

+ 7
- 1
layouts/_default/single.html Zobrazit soubor

@@ -20,7 +20,13 @@
</h1>
{{ with .Params.author }}
<p class="tracked">
By <strong>{{ . | markdownify }}</strong>
By <strong>
{{ if reflect.IsSlice . }}
{{ delimit . ", " | markdownify }}
{{else}}
{{ . | markdownify }}
{{ end }}
</strong>
</p>
{{ end }}
{{/* Hugo uses Go's date formatting is set by example. Here are two formats */}}

Načítá se…
Zrušit
Uložit