diff options
author | xengineering <me@xengineering.eu> | 2022-05-29 10:41:21 +0200 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2022-05-29 10:41:21 +0200 |
commit | 09886926319d4b33727fd10996b06784f9057d8f (patch) | |
tree | 504069cb3dffce703e781765c0db791410e0aa18 | |
parent | cede1e0927c3c5cfc1a4110e6265e73a610dd12f (diff) | |
download | website-09886926319d4b33727fd10996b06784f9057d8f.tar website-09886926319d4b33727fd10996b06784f9057d8f.tar.zst website-09886926319d4b33727fd10996b06784f9057d8f.zip |
Get index.md and theme closer to actual content
-rw-r--r-- | content/_index.md | 6 | ||||
-rw-r--r-- | themes/bare/layouts/index.html | 44 |
2 files changed, 43 insertions, 7 deletions
diff --git a/content/_index.md b/content/_index.md index 015e283..4442bf4 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,5 +1,7 @@ +++ -title = "Home sweet home" +title = "xengineering" +++ -This page has **bold** and *italics* formatting. +## Software + +Use the Git link for a Git clone or to view the project in your browser. diff --git a/themes/bare/layouts/index.html b/themes/bare/layouts/index.html index 8dfbda8..a96d541 100644 --- a/themes/bare/layouts/index.html +++ b/themes/bare/layouts/index.html @@ -1,9 +1,43 @@ +<!DOCTYPE html> + +<!-- + vim: shiftwidth=4 tabstop=4 noexpandtab +--> + <html> - <body> - <h1>Welcome!</h1> + + <head> + + <title>xengineering</title> + + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="./css/libweb.css" type="text/css"> + + </head> + + <body> + + <main> - <h2>{{ .Title }}</h2> - {{ .Content }} + <h1>{{.Title}}</h1> + + <div class="card"> + <h3 class="card-first-item">Contact</h3> + <p>Mail: me@xengineering.eu</p> + <p>XMPP: xengineering@jabber.de</p> + <p class="card-last-item">OpenPGP: <a href="xengineering.asc">A13B 2588 7878 7F94 3F6C 68F0 0FD1 F842 33FA 8900</a></p> + </div> + + {{.Content}} + + <br> + <hr> + <footer>License: <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a></footer> + + </main> + + </body> - </body> </html> + |