From 5f713ab0d738d370247de9ceb48f3dc4c53e92e3 Mon Sep 17 00:00:00 2001 From: Rasmus Luha Date: Fri, 11 Nov 2022 14:33:36 +0200 Subject: placholder about and contact page --- content/about/_index.md | 4 ++++ content/contact/_index.md | 4 ++++ public/about/index.html | 38 ++++++++++++++++++++++++++++++++++++++ public/contact/index.html | 38 ++++++++++++++++++++++++++++++++++++++ public/sitemap.xml | 6 ++++++ templates/about.html | 5 +++++ templates/contact.html | 5 +++++ 7 files changed, 100 insertions(+) create mode 100644 content/about/_index.md create mode 100644 content/contact/_index.md create mode 100644 public/about/index.html create mode 100644 public/contact/index.html create mode 100644 templates/about.html create mode 100644 templates/contact.html diff --git a/content/about/_index.md b/content/about/_index.md new file mode 100644 index 0000000..b453ed9 --- /dev/null +++ b/content/about/_index.md @@ -0,0 +1,4 @@ ++++ +title = "About Me" +template = "about.html" ++++ diff --git a/content/contact/_index.md b/content/contact/_index.md new file mode 100644 index 0000000..fb2fd4b --- /dev/null +++ b/content/contact/_index.md @@ -0,0 +1,4 @@ ++++ +title = "Contact" +template = "contact.html" ++++ diff --git a/public/about/index.html b/public/about/index.html new file mode 100644 index 0000000..eba042d --- /dev/null +++ b/public/about/index.html @@ -0,0 +1,38 @@ + + + + + + + Luhamus + + + + + + +
+
+

Luhamus

+
+
+ + +
+ +
+ +

Coming soon(er or later)!

+ +
+ +
+ + + + diff --git a/public/contact/index.html b/public/contact/index.html new file mode 100644 index 0000000..07b3f19 --- /dev/null +++ b/public/contact/index.html @@ -0,0 +1,38 @@ + + + + + + + Luhamus + + + + + + +
+
+

Luhamus

+
+
+ + +
+ +
+ +

Email: rasmus.luha@gmail.com

+ +
+ +
+ + + + diff --git a/public/sitemap.xml b/public/sitemap.xml index c920090..06ba0f1 100644 --- a/public/sitemap.xml +++ b/public/sitemap.xml @@ -3,4 +3,10 @@ https://www.luhamus.com/ + + https://www.luhamus.com/about/ + + + https://www.luhamus.com/contact/ + diff --git a/templates/about.html b/templates/about.html new file mode 100644 index 0000000..7194f66 --- /dev/null +++ b/templates/about.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} + +{% block content %} +

Coming soon(er or later)!

+{% endblock content %} diff --git a/templates/contact.html b/templates/contact.html new file mode 100644 index 0000000..bb88466 --- /dev/null +++ b/templates/contact.html @@ -0,0 +1,5 @@ +{% extends "base.html" %} + +{% block content %} +

Email: rasmus.luha@gmail.com

+{% endblock content %} -- cgit v1.2.3