mirror of
https://github.com/alanorth/hugo-theme-bootstrap4-blog.git
synced 2024-11-24 13:10:18 +01:00
Add common HTML tags to head and footer so we can re-use them
This commit is contained in:
parent
57328b9015
commit
b164ceb53c
@ -0,0 +1 @@
|
||||
{{ .Content }}
|
@ -1,10 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
{{ partial "head.html" . }}
|
||||
|
||||
<body>
|
||||
|
||||
{{ partial "menu.html" . }}
|
||||
|
||||
{{ partial "header.html" . }}
|
||||
@ -14,7 +9,3 @@
|
||||
{{ partial "footer.html" . }}
|
||||
|
||||
{{ partial "after-footer.html" . }}
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -0,0 +1,3 @@
|
||||
</body>
|
||||
|
||||
</html>
|
@ -1,4 +1,7 @@
|
||||
<head>
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
|
||||
@ -17,3 +20,5 @@
|
||||
<!-- combined, minified CSS -->
|
||||
<link href="{{ .Site.BaseURL }}css/style.css" rel="stylesheet">
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
Loading…
Reference in New Issue
Block a user