add theme.toml, archetypes, layouts, and css
This commit is contained in:
0
layouts/partials/foot_custom.html
Normal file
0
layouts/partials/foot_custom.html
Normal file
9
layouts/partials/footer.html
Normal file
9
layouts/partials/footer.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<footer>
|
||||
{{ partial "foot_custom.html" . }}
|
||||
{{ with .Site.Params.copyright }}
|
||||
<hr/>
|
||||
{{ . | markdownify }}
|
||||
{{ end }}
|
||||
</footer>
|
||||
</body>
|
||||
</html>
|
||||
0
layouts/partials/head_custom.html
Normal file
0
layouts/partials/head_custom.html
Normal file
19
layouts/partials/header.html
Normal file
19
layouts/partials/header.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{ .Title }} | {{ .Site.Title }}</title>
|
||||
<link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" />
|
||||
<link rel="stylesheet" href="{{ "/css/fonts.css" | relURL }}" />
|
||||
{{ partial "head_custom.html" . }}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<nav>
|
||||
<ul class="menu">
|
||||
{{ range .Site.Menus.main }}
|
||||
<li><a href="{{ .URL | relURL }}">{{ .Name }}</a></li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
<hr/>
|
||||
</nav>
|
||||
Reference in New Issue
Block a user