Add initial structure for header.html and footer.html

This commit is contained in:
vimux 2018-02-09 19:16:23 +03:00
parent 5a1760fabf
commit 8229f715db
2 changed files with 17 additions and 0 deletions

View file

@ -0,0 +1,5 @@
<footer class="footer">
<div class="footer__copyright">© {{ now.Format "2006" }} {{ .Site.Title }}.</div>
</footer>
</body>
</html>

View file

@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode | default "en-us" }}">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
</head>
<body>
<header class="header">
<a class="logo" href="/">Binario</a>
</header>