summaryrefslogtreecommitdiff
path: root/themes/bare/layouts/git/list.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/git/list.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/git/list.html')
-rw-r--r--themes/bare/layouts/git/list.html32
1 files changed, 14 insertions, 18 deletions
diff --git a/themes/bare/layouts/git/list.html b/themes/bare/layouts/git/list.html
index f4cd50e..b8dc147 100644
--- a/themes/bare/layouts/git/list.html
+++ b/themes/bare/layouts/git/list.html
@@ -12,40 +12,36 @@
<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>
-
- <h2>Git repositories</h2>
- <p>This page shows all of my Git repositories. They are ordered by
- their state attribute, which is defined in each section.</p>
+ <header>
+ <h1>Git repositories</h1>
+ </header>
- <h4>Active</h4>
- <p>The content of active repositories can be used right now.</p>
+ <main>
+ <strong>Experimental</strong>
<ul>
{{- range.Pages }}
- {{ if eq .Params.state "active" }}
+ {{ if eq .Params.state "experimental" }}
<li><a href="{{ .RelPermalink }}">{{ .Params.friendly_name }}</a> - {{.Description}}</li>
{{ end }}
{{ end -}}
</ul>
- <h4>Experimental</h4>
- <p>Experimental repositories are not ready to be used but maybe interesting enough to have a look at it.</p>
+ <strong>Active</strong>
<ul>
{{- range.Pages }}
- {{ if eq .Params.state "experimental" }}
+ {{ if eq .Params.state "active" }}
<li><a href="{{ .RelPermalink }}">{{ .Params.friendly_name }}</a> - {{.Description}}</li>
{{ end }}
{{ end -}}
</ul>
- <h4>Archived</h4>
- <p>Archived repositories will not be improved in the future unless the state will change.</p>
+ <strong>Archived</strong>
<ul>
{{- range.Pages }}
{{ if eq .Params.state "archived" }}
@@ -54,10 +50,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>