summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Ball <nullspoon@oper.io>2024-10-26 21:54:55 -0600
committerAaron Ball <nullspoon@oper.io>2024-10-26 21:57:33 -0600
commit011b0c15f6ed94b9c8fe9ef0767ab9665570572d (patch)
tree8bfc4d7997de2db4b8b036f05ccfe06de2e6c08d
parentf63fc89d66695d27c5382b7a8b93e279854afc3b (diff)
downloadmotd.sh-011b0c15f6ed94b9c8fe9ef0767ab9665570572d.tar.gz
motd.sh-011b0c15f6ed94b9c8fe9ef0767ab9665570572d.tar.xz
Add standard html header, footer and style css
-rw-r--r--res/footer.html2
-rw-r--r--res/header.html6
-rw-r--r--res/style.css6
3 files changed, 14 insertions, 0 deletions
diff --git a/res/footer.html b/res/footer.html
new file mode 100644
index 0000000..308b1d0
--- /dev/null
+++ b/res/footer.html
@@ -0,0 +1,2 @@
+</body>
+</html>
diff --git a/res/header.html b/res/header.html
new file mode 100644
index 0000000..d4618f2
--- /dev/null
+++ b/res/header.html
@@ -0,0 +1,6 @@
+<!DOCTYPE html>
+<html>
+ <head>
+ <link rel="stylesheet" type="text/css" href="/res/style.css" />
+ </head>
+ <body>
diff --git a/res/style.css b/res/style.css
new file mode 100644
index 0000000..94bc21d
--- /dev/null
+++ b/res/style.css
@@ -0,0 +1,6 @@
+body {
+ background-color:#223;
+ color:#eee;
+ font-family:"Iosevka Etoile",monospace;
+ font-size:1.1em;
+}

Generated by cgit