Compare commits

...

6 commits

Author SHA1 Message Date
b2f01e7ea1
style: fix urls 2023-05-10 13:28:08 +02:00
814901d09d
header: fix header 2023-05-10 13:28:00 +02:00
eb5f91ef64
footer: fix copyritght 2023-05-10 13:27:54 +02:00
9e4d168750
404: update page 2023-05-10 13:27:47 +02:00
a1a7f68630
theme: add metadata 2023-05-10 13:27:41 +02:00
933d08efab
fix: remove build lock 2023-05-10 13:27:34 +02:00
6 changed files with 25 additions and 14 deletions

View file

View file

@ -1,12 +1,13 @@
{{ define "main" }}
<img src="/assets/404.png" alt="404" style="width: 100%; height: auto;">
<h1>Document Not Found</h1>
<p><img src="/assets/404.png" alt="404" class="full pixels"></p>
The requested page could not be found. If you feel this is not normal, then you create an issue on the Gitlab.
<h1 id="document-not-found">Document Not Found</h1>
<p>The requested page could not be found. If you feel this is not normal, please file an issue on GitHub.</p>
<p class="dialog-buttons"><a href="javascript:window.history.go(-1);" class="inline-button">Go Back</a> <a href="{{ .Site.Params.IssueURL}}">File an issue</a></p>
<button class="button inline-button" onclick="window.history.go(-1);">Go Back</button>
<a class="dialog-buttons" href="">File an issue</a>
{{ end }}

View file

@ -4,7 +4,7 @@
{{ .Site.Params.CustomFooterHTML | safeHTML }}
{{ end }}
<p>&copy; {{.Site.Title }}{{ now.Year }} {{ .Site.Params.Footer}}</p>
<p>&copy; {{.Site.Title }}, {{ now.Year }} {{ .Site.Params.Footer}}</p>
<p><a href="{{ .Site.BaseURL }}">Website source</a></p>
</footer>

View file

@ -1,3 +1,5 @@
<header class="site-header">
<h1 id="logo"><a href="{{ .Site.BaseURL }}">{{ .Title }}</a></h1>
<h1 id="logo">
<a href="{{ .Site.BaseURL }}">{{ .Title }}</a>
</h1>
</header>

View file

@ -67,7 +67,7 @@
font-weight: 100 900;
font-display: swap;
font-style: oblique 0deg 10deg;
src: url("fonts/Inter.var.woff2?v=3.19") format("woff2");
src: url("/fonts/Inter.var.woff2?v=3.19") format("woff2");
}
* {
@ -175,7 +175,7 @@ img {
#logo {
display: block;
width: 251px; height: 26px;
background: url('assets/page-logo.svg') no-repeat center;
background: url('/assets/page-logo.svg') no-repeat center;
padding: 5rem 0 3rem;
margin: 0 auto;
position: relative;
@ -194,7 +194,7 @@ img {
@media (prefers-color-scheme: dark) {
#logo {
filter: invert(100%) hue-rotate(180deg); /* uninvert */
background-image: url('assets/page-logo-i.svg');
background-image: url('/assets/page-logo-i.svg');
}
}
@ -224,6 +224,14 @@ footer {
margin-top: 4rem;
}
header {
text-align: center;
padding: 3em 0 3em;
font-size: 1em;
margin-top: 4rem;
}
/* Make tables vertically aligned to the top */
tbody td {
vertical-align: top;

View file

@ -3,16 +3,16 @@
name = "Gadolinium"
license = "MIT"
licenselink = "https://github.com/yourname/yourtheme/blob/master/LICENSE"
licenselink = "https://git.exozy.me/0xmrtt/gadolinium/src/branch/master/LICENSE"
description = ""
homepage = "http://example.com/"
homepage = "https://git.exozy.me/0xmrtt/gadolinium"
tags = []
features = []
min_version = "0.41.0"
[author]
name = ""
homepage = ""
name = "0xMRTT"
homepage = "https://0xMRTT.exozy.me"
# If porting an existing theme
[original]