simpletheme/layouts/index.html

50 lines
1.1 KiB
HTML
Raw Normal View History

2020-04-02 09:37:23 +00:00
<!DOCTYPE html>
<html>
{{ partial "head.html" . }}
<body>
<h1>{{ .Site.Data.personalize.Name }}</h1>
<h4>{{ .Site.Data.personalize.About| markdownify }}</h4>
<table>
{{ range .Site.Data.personalize.profiles }}
{{ partial "profile_link.html" . }}
{{ end }}
2020-04-02 09:37:23 +00:00
<tr>
{{ if ne .Site.Data.personalize.Resume "" }}
<td><i class="fas fa-file-alt" aria-hidden="true"></i></td>
<td>&nbsp;<a href="assets/pdf/{{ .Site.Data.personalize.Resume }}" target="_blank">Resume</a></td>
{{ end }}
</tr>
<tr>
{{ if ne .Site.Data.personalize.Email "" }}
<td><i class="fas fa-envelope" aria-hidden="true"></i></td>
<td>&nbsp;<code>{{ .Site.Data.personalize.Email }}</code></td>
{{ end }}
</tr>
</table>
<h3>Posts</h3>
<div>
<!-- orders content according to the "publishdate" field in front matter -->
{{ range first .Site.Data.personalize.PostLimit .Pages.ByPublishDate }}
<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>
</body>
</html>