mirror of
https://github.com/thegeeklab/hugo-geekblog.git
synced 2024-11-22 05:00:39 +00:00
fix authors data file handling
This commit is contained in:
parent
3f1498bf07
commit
789f924d68
@ -5,3 +5,4 @@
|
|||||||
for the default content section (defaults to `posts` or `post`)
|
for the default content section (defaults to `posts` or `post`)
|
||||||
- BUGFIX
|
- BUGFIX
|
||||||
- normalize source icon size for the icon font
|
- normalize source icon size for the icon font
|
||||||
|
- fix authors data file handling
|
||||||
|
@ -3,6 +3,7 @@ title: "Emoji Support"
|
|||||||
date: 2020-07-13T19:00:00+02:00
|
date: 2020-07-13T19:00:00+02:00
|
||||||
authors:
|
authors:
|
||||||
- john-doe
|
- john-doe
|
||||||
|
- Special User
|
||||||
tags:
|
tags:
|
||||||
- Documentation
|
- Documentation
|
||||||
---
|
---
|
||||||
|
2
exampleSite/data/authors/Special User.yml
Normal file
2
exampleSite/data/authors/Special User.yml
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
name: Sven Special
|
||||||
|
email: sven@example.com
|
@ -49,7 +49,7 @@
|
|||||||
{{ with .Params.authors }}
|
{{ with .Params.authors }}
|
||||||
{{ range sort . }}
|
{{ range sort . }}
|
||||||
{{ $author := index $.Site.Data.authors . }}
|
{{ $author := index $.Site.Data.authors . }}
|
||||||
{{ with $.Site.GetPage (printf "/authors/%s" $author.name | urlize) }}
|
{{ with $.Site.GetPage (printf "/authors/%s" . | urlize) }}
|
||||||
{{ if eq $ac 0 }}
|
{{ if eq $ac 0 }}
|
||||||
<span class="no-wrap">
|
<span class="no-wrap">
|
||||||
<svg class="icon person"><use xlink:href="#person"></use></svg>
|
<svg class="icon person"><use xlink:href="#person"></use></svg>
|
||||||
|
Loading…
Reference in New Issue
Block a user