Initial commit part 2

This commit is contained in:
noradichter 2022-07-20 14:27:20 -07:00
parent 367d63093b
commit b3c65d8f01
12 changed files with 107 additions and 0 deletions

2
archetypes/default.md Normal file
View file

@ -0,0 +1,2 @@
+++
+++

8
layouts/404.html Normal file
View 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 }}

View 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>

View 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 }}

View file

@ -0,0 +1,6 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ partial "metadata.html" . }}
<br><br>
{{ .Content }}
{{ end }}

5
layouts/index.html Normal file
View file

@ -0,0 +1,5 @@
{{ define "main" }}
<div>
<h1>{{ .Site.Title }}</h1>
</div>
{{ end }}

View file

@ -0,0 +1 @@
<p>Copyright (c) {{ now.Format "2006"}} John Doe</p>

View 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>

View file

@ -0,0 +1,10 @@
<div>
<nav>
{{ range .Site.Menus.main }}
<a href="{{ .URL }}">
{{ $text := print .Name | safeHTML }}
{{ $text }}
</a>
{{ end }}
</nav>
</div>

View 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
View 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
View 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"