forked from planex/defiance
Initial commit part 2
This commit is contained in:
parent
367d63093b
commit
b3c65d8f01
12 changed files with 107 additions and 0 deletions
2
archetypes/default.md
Normal file
2
archetypes/default.md
Normal file
|
@ -0,0 +1,2 @@
|
|||
+++
|
||||
+++
|
8
layouts/404.html
Normal file
8
layouts/404.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
{{ define "main" }}
|
||||
<div>
|
||||
<h1>Oops!</h1>
|
||||
<p>We couldn't find the page you're looking for.</p>
|
||||
<br>
|
||||
<a href="/">Take me back!</a>
|
||||
</div>
|
||||
{{ end }}
|
11
layouts/_default/baseof.html
Normal file
11
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>
|
12
layouts/_default/list.html
Normal file
12
layouts/_default/list.html
Normal file
|
@ -0,0 +1,12 @@
|
|||
{{ define "main" }}
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ range .Pages.ByPublishDate.Reverse }}
|
||||
<p>
|
||||
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
|
||||
{{ partial "metadata.html" . }}
|
||||
<a href="{{ .RelPermalink }}">
|
||||
<p>{{ .Summary }}</p>
|
||||
</a>
|
||||
</p>
|
||||
{{ end }}
|
||||
{{ end }}
|
6
layouts/_default/single.html
Normal file
6
layouts/_default/single.html
Normal file
|
@ -0,0 +1,6 @@
|
|||
{{ define "main" }}
|
||||
<h1>{{ .Title }}</h1>
|
||||
{{ partial "metadata.html" . }}
|
||||
<br><br>
|
||||
{{ .Content }}
|
||||
{{ end }}
|
5
layouts/index.html
Normal file
5
layouts/index.html
Normal file
|
@ -0,0 +1,5 @@
|
|||
{{ define "main" }}
|
||||
<div>
|
||||
<h1>{{ .Site.Title }}</h1>
|
||||
</div>
|
||||
{{ end }}
|
1
layouts/partials/footer.html
Normal file
1
layouts/partials/footer.html
Normal file
|
@ -0,0 +1 @@
|
|||
<p>Copyright (c) {{ now.Format "2006"}} John Doe</p>
|
8
layouts/partials/head.html
Normal file
8
layouts/partials/head.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<link rel="stylesheet" type="text/css" href="/css/style.css">
|
||||
{{ $title := print .Site.Title " | " .Title }}
|
||||
{{ if .IsHome }}{{ $title = .Site.Title }}{{ end }}
|
||||
<title>{{ $title }}</title>
|
||||
</head>
|
10
layouts/partials/header.html
Normal file
10
layouts/partials/header.html
Normal file
|
@ -0,0 +1,10 @@
|
|||
<div>
|
||||
<nav>
|
||||
{{ range .Site.Menus.main }}
|
||||
<a href="{{ .URL }}">
|
||||
{{ $text := print .Name | safeHTML }}
|
||||
{{ $text }}
|
||||
</a>
|
||||
{{ end }}
|
||||
</nav>
|
||||
</div>
|
9
layouts/partials/meta.html
Normal file
9
layouts/partials/meta.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
{{ $dateTime := .PublishDate.Format "2006-01-02" }}
|
||||
{{ $dateFormat := .Site.Params.dateFormat | default "Jan 2, 2006" }}
|
||||
<time datetime="{{ $dateTime }}">{{ .PublishDate.Format $dateFormat }}</time>
|
||||
{{ with .Params.tags }}
|
||||
{{ range . }}
|
||||
{{ $href := print (absURL "tags/") (urlize .) }}
|
||||
<a href="{{ $href }}">{{ . }}</a>
|
||||
{{ end }}
|
||||
{{ end }}
|
26
static/css/style.css
Normal file
26
static/css/style.css
Normal file
|
@ -0,0 +1,26 @@
|
|||
body {
|
||||
|
||||
}
|
||||
|
||||
main {
|
||||
|
||||
}
|
||||
|
||||
img {
|
||||
|
||||
}
|
||||
|
||||
header h1 {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
footer {
|
||||
text-align: center;
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* For meta.html */
|
||||
.meta {
|
||||
text-align: center;
|
||||
clear: both;
|
||||
}
|
9
theme.toml
Normal file
9
theme.toml
Normal file
|
@ -0,0 +1,9 @@
|
|||
name = "Defiance"
|
||||
license = "MIT"
|
||||
licenselink = "https://github.com/insurgentuo/defiance/blob/no-masters/LICENSE"
|
||||
description = "Hugo theme for The Student Insurgent"
|
||||
homepage = "https://studentinsurgent.org"
|
||||
languageCode = 'en-us'
|
||||
tags = []
|
||||
features = []
|
||||
min_version = "0.41.0"
|
Loading…
Add table
Reference in a new issue