Initial commit
This commit is contained in:
0
themes/v2/layouts/404.html
Normal file
0
themes/v2/layouts/404.html
Normal file
11
themes/v2/layouts/_default/baseof.html
Normal file
11
themes/v2/layouts/_default/baseof.html
Normal file
@@ -0,0 +1,11 @@
|
||||
<!DOCTYPE html>
|
||||
<html>
|
||||
{{- partial "head.html" . -}}
|
||||
<body>
|
||||
{{- partial "header.html" . -}}
|
||||
<div id="content">
|
||||
{{- block "main" . }}{{- end }}
|
||||
</div>
|
||||
{{- partial "footer.html" . -}}
|
||||
</body>
|
||||
</html>
|
||||
0
themes/v2/layouts/_default/list.html
Normal file
0
themes/v2/layouts/_default/list.html
Normal file
0
themes/v2/layouts/_default/single.html
Normal file
0
themes/v2/layouts/_default/single.html
Normal file
3
themes/v2/layouts/index.html
Normal file
3
themes/v2/layouts/index.html
Normal file
@@ -0,0 +1,3 @@
|
||||
{{ define "main" }}
|
||||
{{ .Content }}
|
||||
{{ end }}
|
||||
0
themes/v2/layouts/partials/footer.html
Normal file
0
themes/v2/layouts/partials/footer.html
Normal file
4
themes/v2/layouts/partials/head.html
Normal file
4
themes/v2/layouts/partials/head.html
Normal file
@@ -0,0 +1,4 @@
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<title>{{ .Site.Title }}</title>
|
||||
</head>
|
||||
3
themes/v2/layouts/partials/header.html
Normal file
3
themes/v2/layouts/partials/header.html
Normal file
@@ -0,0 +1,3 @@
|
||||
<header>
|
||||
<h1><a href="/">{{ .Site.Title }}</a></h1>
|
||||
<header>
|
||||
Reference in New Issue
Block a user