aboutsummaryrefslogtreecommitdiff
path: root/example-site/inc
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2022-09-17 11:41:20 -0400
committerMitchell Riedstra <mitch@riedstra.dev>2022-09-17 11:41:20 -0400
commitccc26c3a0bb65ae2613e222c3ead7f6db377b483 (patch)
tree6124ae75f557fffe863134b967ee7c6bfcc87d3d /example-site/inc
parentbf7d9c79cae53f64fcd04527248987bd4e7ca3c4 (diff)
downloadgo-website-0.0.18.tar.gz
go-website-0.0.18.tar.xz
More work on the editor and update the example site to utilize it.v0.0.18
Diffstat (limited to 'example-site/inc')
-rw-r--r--example-site/inc/base.html51
1 files changed, 0 insertions, 51 deletions
diff --git a/example-site/inc/base.html b/example-site/inc/base.html
deleted file mode 100644
index 2f93ec7..0000000
--- a/example-site/inc/base.html
+++ /dev/null
@@ -1,51 +0,0 @@
-<!DOCTYPE html>
-<html lang="en">
-<head>
- <meta charset="UTF-8">
-
- <link id="maincss" rel="stylesheet" href="/static/style.css" defer>
-
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
-
- {{if .AuthorName }}
- <meta name="author" content="{{.AuthorName}}">
- {{else if .Global.App.Author.Name }}
- <meta name="author" content="{{.Global.App.Author.Name}}">
- {{else}}
- {{end}}
-
-{{if .Title}}
- <title>{{.Title}}</title>
-{{else}}
- <title>Please change me!</title>
-{{end}}
-
-{{if .Description}}
- <meta name="description" content="{{.Description}}">
-{{else}}
- <meta name="description" content="Draft and or Preview page. Default Description.">
-{{end}}
-
-</head>
-
-<body>
-
-{{if .Description}}{{else}}
- <h1>
- <span style="color: red;">
- This is a draft, preview or otherwise unfinished page.
- </span>
- </h1>
-{{end}}
-
-<nav>
- <a href="/">Home</a>
-
- <div style="display: block; float: right;">
- <a href="#">Git</a>
- </div>
-</nav>
-
-{{.RenderBody}}
-
-</body>