mirror of
https://github.com/13hannes11/hugo-coder-timeline.git
synced 2024-09-04 00:50:58 +02:00
Fix template to suport empty social parameter
This commit is contained in:
@@ -23,10 +23,6 @@ Add the following lines to your `config.toml`.
|
||||
```toml
|
||||
theme = "coder" # set the theme
|
||||
|
||||
[permalinks] # configure post and fixed pages permalinks
|
||||
post = "posts/:title/"
|
||||
default = ":title/"
|
||||
|
||||
[params] # theme parameters
|
||||
author = "John Doe" # author's name
|
||||
info = "Full Stack DevOps and Magician" # author's job title or info
|
||||
@@ -84,3 +80,4 @@ Coder is licensed under the [MIT license](https://github.com/luizdepra/hugo-code
|
||||
## Special Thanks
|
||||
|
||||
- Gleen McComb, for his great [article](https://glennmccomb.com/articles/how-to-build-custom-hugo-pagination/) about custom pagination.
|
||||
- All contributors, for every PR and Issue reported.\
|
||||
|
||||
@@ -12,10 +12,6 @@ pygmentsstyle = "b2"
|
||||
pygmentscodefences = true
|
||||
pygmentscodefencesguesssyntax = true
|
||||
|
||||
[permalinks]
|
||||
posts = "posts/:title/"
|
||||
default = ":title/"
|
||||
|
||||
[params]
|
||||
author = "John Doe"
|
||||
description = "John Doe's personal website"
|
||||
|
||||
@@ -2,10 +2,12 @@
|
||||
<div class="about">
|
||||
<h1>{{ .Site.Params.author }}</h1>
|
||||
<h2>{{ .Site.Params.info }}</h2>
|
||||
{{ with .Site.Params.social }}
|
||||
<ul>
|
||||
{{ range sort .Site.Params.social }}
|
||||
{{ range sort .}}
|
||||
<li><a href="{{ .url }}">{{ .name }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
{{ end }}
|
||||
</div>
|
||||
</section>
|
||||
|
||||
Reference in New Issue
Block a user