nitpicks
This commit is contained in:
parent
a0ceae22ad
commit
51d13fb078
2 changed files with 25 additions and 26 deletions
|
@ -1,10 +1,8 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
{{partial "head" .}}
|
{{partial "head" .}}
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
{{partial "header" .}}
|
{{partial "header" .}}
|
||||||
<main>
|
<main>
|
||||||
|
|
|
@ -1,20 +1,20 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
{{partial "head" .}}
|
{{partial "head" .}}
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{{partial "header" .}}
|
{{partial "header" .}}
|
||||||
<main>
|
<main>
|
||||||
<section id="main-content">
|
<section id="main-content">
|
||||||
<article>
|
<article>
|
||||||
{{.Content}}
|
{{.Content}}
|
||||||
</article>
|
</article>
|
||||||
{{ if .Site.Data.details.social_links}}
|
{{ if .Site.Data.details.social_links}}
|
||||||
<hr>
|
<hr>
|
||||||
<div>
|
<div>
|
||||||
<h2>Stay up to date</h2>
|
<h2>Stay up to date</h2>
|
||||||
<div id="social-links">
|
<div id="social-links">
|
||||||
{{range .Site.Data.details.social_links}}
|
{{range .Site.Data.details.social_links}}
|
||||||
<div class="social-link">
|
<div class="social-link">
|
||||||
<a href="{{.href}}">
|
<a href="{{.href}}">
|
||||||
|
@ -23,15 +23,16 @@
|
||||||
<a href="{{.href}}"><strong>{{.title}}</strong></a>
|
<a href="{{.href}}"><strong>{{.title}}</strong></a>
|
||||||
</div>
|
</div>
|
||||||
{{end}}
|
{{end}}
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
{{end}}
|
|
||||||
</section>
|
</div>
|
||||||
<section id="sidebar">
|
{{end}}
|
||||||
|
</section>
|
||||||
|
<section id="sidebar">
|
||||||
{{partial "sidebar" .}}
|
{{partial "sidebar" .}}
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
{{ partial "footer" .}}
|
{{ partial "footer" .}}
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
Loading…
Reference in a new issue