diff --git a/static/web/favicon.png b/static/web/favicon.png new file mode 100644 index 0000000..a0d8362 Binary files /dev/null and b/static/web/favicon.png differ diff --git a/tpl/head.html b/tpl/head.html index ed0bab0..8f8ebf7 100644 --- a/tpl/head.html +++ b/tpl/head.html @@ -10,6 +10,7 @@ + {{range $language, $path := .Page.Path}} diff --git a/tpl/text.html b/tpl/text.html index 1161d7b..3b4a4d7 100644 --- a/tpl/text.html +++ b/tpl/text.html @@ -1,4 +1,5 @@ {{$size := get .Content "size"}} +{{$md := get .Content "markdown"}}
{{if $size}} @@ -9,5 +10,9 @@

{{copy .Page .Content "headline"}}

{{end}} - {{html (copy .Page .Content "text")}} + {{if $md}} + {{markdown $md .}} + {{else}} + {{html (copy .Page .Content "text")}} + {{end}}