Migrate website to Hugo

Signed-off-by: Luc Perkins <lucperkins@gmail.com>
This commit is contained in:
Luc Perkins
2018-05-14 12:18:32 -07:00
parent b511c397c3
commit d1503dc9ce
67 changed files with 236 additions and 241 deletions

View File

@@ -0,0 +1,6 @@
{{- $features := .Site.Data.features }}
<ul>
{{- range $features }}
<li>{{ . | markdownify }}</li>
{{- end }}
</ul>

View File

@@ -0,0 +1,10 @@
{{- $news := .Site.Data.news }}
<ul>
{{- range $news }}
<li>
<a href="{{ .link }}">
{{ with .date }}{{ . }}: {{ end }}{{ .title }}
</a>
</li>
{{- end }}
</ul>