diff --git a/layouts/blog/list.html b/layouts/blog/list.html index 8b253ec..948ba3c 100644 --- a/layouts/blog/list.html +++ b/layouts/blog/list.html @@ -4,7 +4,7 @@

{{ $latestEntry.Title }}

-

{{ $latestEntry.Summary }}

+

{{ $latestEntry.Summary | safeHTML }}

Weiter lesen...

@@ -15,7 +15,7 @@ {{/* Paginator initialisieren, in der Reihenfolge die man sich im Blog wünscht */}} {{ if eq .Type "blog" }} {{/* Der 1te Weg soll alle Blog-Einträge finden*/}} - {{ $pag := .Paginate (where .Site.RegularPages "Type" "blog").ByPublishDate.Reverse 3 }} + {{ $pag := .Paginate (where .Site.RegularPages "Type" "blog").ByPublishDate.Reverse }} {{ else }} {{/* Der 2te Weg ist über die Archive-Gruppierung, und dort wird nicht paginiert */}} {{ $pag := .Paginate .Pages.ByPublishDate.Reverse 9999 }} @@ -76,9 +76,10 @@ {{ $div := math.Max 1 (sub $maxCnt $minCnt) }} {{ range $key, $sites := $tags }} - - {{- $key -}}{{ $sites.Count }} - + {{- (printf `%s%d` + (add (mul (math.Pow (div (sub $sites.Count $minCnt) $div) 2.0) 0.6) 0.8) + ($parentLink | relURL) $key $sites.Count $key $sites.Count + ) | safeHTML -}} {{ end }} diff --git a/layouts/index.html b/layouts/index.html index ebeb9ae..6e5ad49 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -1,5 +1,9 @@ {{ define "main" }}

{{ .Site.Title }}

+ +
+ {{ .Site.Params.Description }} +
{{ end }} \ No newline at end of file diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html index 9e59c7e..8e0dc46 100644 --- a/layouts/partials/footer.html +++ b/layouts/partials/footer.html @@ -1,7 +1,9 @@