[ADD] Theme2
This commit is contained in:
9
themes/zone2/layouts/404.html
Normal file
9
themes/zone2/layouts/404.html
Normal file
@@ -0,0 +1,9 @@
|
||||
{{ partial "header.html" . }}
|
||||
|
||||
<h1>Page Not Found</h1>
|
||||
|
||||
<p>This page doesn't exist.</p>
|
||||
|
||||
<p><a href="/">Go back to the home page</a></p>
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
18
themes/zone2/layouts/_default/list.html
Normal file
18
themes/zone2/layouts/_default/list.html
Normal file
@@ -0,0 +1,18 @@
|
||||
{{ partial "header.html" . }}
|
||||
|
||||
<h1>{{ .Title }}</h1>
|
||||
|
||||
{{ .Content }}
|
||||
|
||||
{{ range.Data.Pages }}
|
||||
<article class="post-snippet">
|
||||
<h3>
|
||||
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
||||
</h3>
|
||||
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">
|
||||
{{ .Date.Format "January 2, 2006" }}
|
||||
</time>
|
||||
</article>
|
||||
{{ end }}
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
7
themes/zone2/layouts/_default/single.html
Normal file
7
themes/zone2/layouts/_default/single.html
Normal file
@@ -0,0 +1,7 @@
|
||||
{{ partial "header.html" . }}
|
||||
|
||||
<h1>{{ .Title }}</h1>
|
||||
|
||||
{{ .Content }}
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
29
themes/zone2/layouts/index.html
Normal file
29
themes/zone2/layouts/index.html
Normal file
@@ -0,0 +1,29 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
{{ partial "header.html" . }}
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
{{ partial "nav.html" . }}
|
||||
|
||||
<main class="content">
|
||||
|
||||
<div>
|
||||
<h1>{{ .Title }}</h1>
|
||||
|
||||
{{ .Content }}
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
{{ partial "footer.html" . }}
|
||||
</main>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
||||
|
||||
|
||||
3
themes/zone2/layouts/partials/footer.html
Normal file
3
themes/zone2/layouts/partials/footer.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<footer>
|
||||
<p>©{{ dateFormat "2006" now }} {{ .Site.Title }}</p>
|
||||
</footer>
|
||||
11
themes/zone2/layouts/partials/header.html
Normal file
11
themes/zone2/layouts/partials/header.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
|
||||
<title>{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
|
||||
|
||||
<link rel="stylesheet" href="/css/style.css" type="text/css" media="all" />
|
||||
<link rel="icon" type="image/svg+xml" href="/img/Chaoszone.svg" />
|
||||
|
||||
{{ with .OutputFormats.Get "rss" -}} {{ printf `
|
||||
<link rel="%s" type="%s" href="%s" title="%s" />
|
||||
` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ end -}}
|
||||
12
themes/zone2/layouts/partials/nav.html
Normal file
12
themes/zone2/layouts/partials/nav.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<nav class="site-nav">
|
||||
<a class="logo" href="{{ .Site.BaseURL }}">
|
||||
<img src="/img/Chaoszone.svg" />
|
||||
</a>
|
||||
<ul class="main-menu">
|
||||
{{ range.Site.Menus.main }}
|
||||
<li>
|
||||
<a href="{{ .URL }}">{{ .Name }}</a>
|
||||
</li>
|
||||
{{ end }}
|
||||
</ul>
|
||||
</nav>
|
||||
Reference in New Issue
Block a user