dbd85bc12c
* Remove data/personalize.toml and shift all params to config.toml. Change "About" section in index page to be fetched from content/_index.md. * Fix twitter profile param key in config.toml. * Fix twitter profile param key in README.md.
51 lines
1.2 KiB
HTML
51 lines
1.2 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
{{ partial "head.html" . }}
|
|
|
|
<body>
|
|
|
|
<h1>{{ .Site.Params.Name }}</h1>
|
|
|
|
<div>{{ .Content }}</div>
|
|
|
|
<table>
|
|
{{ range .Site.Params.profiles }}
|
|
{{ partial "profile_link.html" . }}
|
|
{{ end }}
|
|
<tr>
|
|
{{ if ne .Site.Params.Resume "" }}
|
|
<td><i class="fas fa-file-alt" aria-hidden="true"></i></td>
|
|
<td> <a href="/resume/{{ .Site.Params.Resume }}" target="_blank">Resume</a></td>
|
|
{{ end }}
|
|
</tr>
|
|
<tr>
|
|
{{ if ne .Site.Params.Email "" }}
|
|
<td><i class="fas fa-envelope" aria-hidden="true"></i></td>
|
|
<td> <code>{{ .Site.Params.Email }}</code></td>
|
|
{{ end }}
|
|
</tr>
|
|
</table>
|
|
|
|
<h3>Posts</h3>
|
|
|
|
<div>
|
|
|
|
<!-- orders content according to the "publishdate" field in front matter -->
|
|
{{ range first (.Site.Params.PostLimit | default 4) (where .Site.RegularPages.ByPublishDate "Section" "posts") }}
|
|
<div>
|
|
<a href="{{ .Permalink }}">{{ .Title }}</a><br />
|
|
<time>{{ .Date.Format "January 2, 2006" }}</time>
|
|
</div>
|
|
<br />
|
|
{{ end }}
|
|
|
|
|
|
<h3><a href="posts/">View all posts</a></h3>
|
|
</div>
|
|
{{ if ne .Site.Params.GoatCounterCode "" }}
|
|
<script data-goatcounter="{{ .Site.Params.GoatCounterCode }}" async src="//gc.zgo.at/count.js"></script>
|
|
{{ end }}
|
|
</body>
|
|
|
|
</html>
|