summaryrefslogtreecommitdiff
path: root/themes/bare/layouts/index.html
diff options
context:
space:
mode:
authorxengineering <me@xengineering.eu>2023-01-10 19:10:39 +0100
committerxengineering <me@xengineering.eu>2023-01-10 20:45:33 +0100
commit46f3101a99d7d26dbc9592720d386a37b56f6579 (patch)
tree99243a6a0d37ad2e85e492a9601b45c7330cda60 /themes/bare/layouts/index.html
parent6d7005efc73272c7cf1f124b013904f6ef5cc599 (diff)
downloadwebsite-46f3101a99d7d26dbc9592720d386a37b56f6579.tar
website-46f3101a99d7d26dbc9592720d386a37b56f6579.tar.zst
website-46f3101a99d7d26dbc9592720d386a37b56f6579.zip
Switch to simple.css
The simple.css projects shares the same values as my own CSS project (libweb). But at the end: I do not have to maintain it and it more advanced.
Diffstat (limited to 'themes/bare/layouts/index.html')
-rw-r--r--themes/bare/layouts/index.html36
1 files changed, 19 insertions, 17 deletions
diff --git a/themes/bare/layouts/index.html b/themes/bare/layouts/index.html
index adc500d..9539278 100644
--- a/themes/bare/layouts/index.html
+++ b/themes/bare/layouts/index.html
@@ -12,30 +12,32 @@
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
- <link rel="stylesheet" href="{{ "libweb.css" | absURL }}" type="text/css">
+ <link rel="stylesheet" href="{{ "style.css" | absURL }}" type="text/css">
</head>
<body>
- <main>
-
+ <header>
<h1>{{.Params.heading}}</h1>
+ <p>Free and Open Source software and hardware projects</p>
+ </header>
- <div class="card">
- <h3 class="card-first-item">Contact</h3>
- <p>Mail: {{.Params.email}}</p>
- <p>XMPP: {{.Params.xmpp}}</p>
- <p class="card-last-item">OpenPGP: <a href="{{.Params.openpgp.file}}">{{.Params.openpgp.fingerprint}}</a></p>
- </div>
+ <main>
+ <h3>Contact</h3>
+ <ul>
+ <li>Mail: {{.Params.email}}</li>
+ <li>XMPP: {{.Params.xmpp}}</li>
+ <li>OpenPGP: <a href="{{.Params.openpgp.file}}">{{.Params.openpgp.fingerprint}}</a></li>
+ </ul>
{{.Content}}
- <h2>My projects</h2>
+ <h3>My projects</h3>
<p>Here is a list of all my published projects. The active ones are
regularly used by myself.</p>
- <h4>Experimental</h4>
+ <strong>Experimental</strong>
<ul>
{{ range.Site.RegularPages }}
{{ if eq .Section "git" }}
@@ -46,7 +48,7 @@
{{ end }}
</ul>
- <h4>Active</h4>
+ <strong>Active</strong>
<ul>
{{ range.Site.RegularPages }}
{{ if eq .Section "git" }}
@@ -57,7 +59,7 @@
{{ end }}
</ul>
- <h4>Archived</h4>
+ <strong>Archived</strong>
<ul>
{{ range.Site.RegularPages }}
{{ if eq .Section "git" }}
@@ -68,10 +70,10 @@
{{ end }}
</ul>
- <br>
- <hr>
- <footer>License: <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a></footer>
-
+ <footer>
+ <hr>
+ <p>This <a href="{{ "git/website" | absURL }}">website</a> is licensed under <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a> and developed with <a href="https://simplecss.org/">simple.css</a>.</p>
+ </footer>
</main>
</body>