freedom/layouts/index.html

37 lines
1 KiB
HTML
Raw Normal View History

2022-08-17 14:50:07 -04:00
<!DOCTYPE html>
<html>
<head>
{{partial "head" .}}
</head>
<body>
2022-08-22 20:03:48 -04:00
{{partial "header" .}}
<main>
2022-09-09 15:34:02 -04:00
<section id="main-content">
2022-08-22 20:03:48 -04:00
<article>
{{.Content}}
</article>
{{ if .Site.Data.details.social_links}}
<hr>
<article>
<h2>Stay up to date</h2>
<div id="social-links">
{{range .Site.Data.details.social_links}}
<div class="social-link">
<a href="{{.href}}">
<img src="{{.img}}">
</a>
<a href="{{.href}}"><strong>{{.title}}</strong></a>
</div>
{{end}}
</div>
</article>
{{end}}
</section>
2022-09-09 15:34:02 -04:00
<section id="sidebar">
2022-08-22 20:03:48 -04:00
{{partial "sidebar" .}}
2022-09-09 15:34:02 -04:00
</section>
2022-08-22 20:03:48 -04:00
</main>
{{ partial "footer" .}}
2022-08-17 14:50:07 -04:00
</body>
</html>