mirror of
https://github.com/Vimux/Binario.git
synced 2024-11-11 01:38:28 +00:00
Add initial structure for header.html and footer.html
This commit is contained in:
parent
5a1760fabf
commit
8229f715db
2 changed files with 17 additions and 0 deletions
|
@ -0,0 +1,5 @@
|
||||||
|
<footer class="footer">
|
||||||
|
<div class="footer__copyright">© {{ now.Format "2006" }} {{ .Site.Title }}.</div>
|
||||||
|
</footer>
|
||||||
|
</body>
|
||||||
|
</html>
|
|
@ -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>
|
Loading…
Reference in a new issue