From de745fad87248fe6c0cabd1571348ba0bfe03607 Mon Sep 17 00:00:00 2001
From: Captain ALM
Date: Wed, 7 Sep 2022 15:47:02 +0100
Subject: [PATCH] September update. Fix .xyz -> .com Fix padding of text. Add
image preload for moon in js. Add CV references in about.
---
README.md | 6 +++---
base.css | 2 +-
index.go.yml | 5 ++++-
index.js | 1 +
4 files changed, 9 insertions(+), 5 deletions(-)
diff --git a/README.md b/README.md
index 3ad7cbd..4d3ff54 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,13 @@
# Captain ALM Cityuni subdomain WebServer
-[![Build Status](https://ci.mrmelon54.xyz/api/badges/alfred/cityuni-webserver/status.svg)](https://ci.mrmelon54.xyz/alfred/cityuni-webserver)
+[![Build Status](https://ci.mrmelon54.com/api/badges/alfred/cityuni-webserver/status.svg)](https://ci.mrmelon54.com/alfred/cityuni-webserver)
This provides my template and cache supporting web / application server for my city university portfolio subdomain.
[Production Server](https://cityuni.captainalm.com/)
Maintainer:
-[Captain ALM](https://code.mrmelon54.xyz/alfred)
+[Captain ALM](https://code.mrmelon54.com/alfred)
License:
-[BSD 3-Clause](https://code.mrmelon54.xyz/alfred/GOPackageHeaderServer/src/branch/master/LICENSE)
+[BSD 3-Clause](https://code.mrmelon54.com/alfred/cityuni-webserver/src/branch/master/LICENSE)
diff --git a/base.css b/base.css
index e76ec62..2857904 100644
--- a/base.css
+++ b/base.css
@@ -273,7 +273,7 @@ main{
overflow: hidden;
}
.item-table > div > div > div{
- padding: 2px;
+ padding: 4px;
}
.item-table-caption, .so-pane-caption{
display: table-caption !important;
diff --git a/index.go.yml b/index.go.yml
index 63df6fe..e4fd359 100644
--- a/index.go.yml
+++ b/index.go.yml
@@ -51,6 +51,9 @@ about:
I used to do Karate (Kyokushin Brown Belt) and I wish I could still fit my bike.
Here is my GPG Key for my email address.
+
+ My CV is available in the following formats: ( DOCX | PDF )
+
thumbnailLocation: "resources/assets/imageofyou_t.jpg"
imageLocation: "resources/assets/imageofyou.jpg"
imageAltText: "Image of me."
@@ -213,6 +216,6 @@ entries:
Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License.
- Find the source code here: https://code.mrmelon54.xyz/alfred/cityuni-webserver
+ Find the source code here: https://code.mrmelon54.com/alfred/cityuni-webserver
startDate: "13/07/2022"
diff --git a/index.js b/index.js
index f0a4314..19b5d40 100644
--- a/index.js
+++ b/index.js
@@ -67,6 +67,7 @@ function SetupIndexArray() {
function SetupJSTheme() {
var th = document.getElementById("theme")
th.href = "#"
+ new Image().src = MoonImageURL //Preload I hope
if (document.addEventListener) {
th.addEventListener("click", ToggleTheme)
} else {