diff options
author | xengineering <me@xengineering.eu> | 2023-01-12 19:44:01 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2023-01-12 19:44:01 +0100 |
commit | 02fb96c854173e875d3f361706713af6e6c666a5 (patch) | |
tree | be04605139b540fff1112603b70a8cd5b27b0462 /layouts/index.html | |
parent | 4b1082b4fda0c5d3e90464716b3e2136bd1fe791 (diff) | |
download | website-02fb96c854173e875d3f361706713af6e6c666a5.tar website-02fb96c854173e875d3f361706713af6e6c666a5.tar.zst website-02fb96c854173e875d3f361706713af6e6c666a5.zip |
Remove unnecessary themes folder
This just makes sense if you have multiple themes.
Diffstat (limited to 'layouts/index.html')
-rw-r--r-- | layouts/index.html | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/layouts/index.html b/layouts/index.html new file mode 100644 index 0000000..85086a9 --- /dev/null +++ b/layouts/index.html @@ -0,0 +1,82 @@ +<!DOCTYPE html> + +<!-- + vim: shiftwidth=4 tabstop=4 noexpandtab +--> + +<html> + + <head> + + <title>xengineering</title> + + <meta charset="utf-8"/> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="{{ "style.css" | absURL }}" type="text/css"> + + </head> + + <body> + + <header> + <h1>{{.Params.heading}}</h1> + <p>Free and Open Source software and hardware projects</p> + </header> + + <main> + <h3>Contact</h3> + <ul> + <li>Mail: <a href="mailto:{{.Params.email}}">{{.Params.email}}</a></li> + <li><a href="https://xmpp.org">XMPP</a>: <a href="xmpp:{{.Params.xmpp}}">{{.Params.xmpp}}</a></li> + <li><a href="https://openpgp.org">OpenPGP</a>: <a href="{{.Params.openpgp.file}}">{{.Params.openpgp.fingerprint}}</a></li> + </ul> + + {{.Content}} + + <h3>My projects</h3> + <p>Here is a list of all my published projects. The active ones are + regularly used by myself.</p> + + <strong>Experimental</strong> + <ul> + {{ range.Site.RegularPages }} + {{ if eq .Section "git" }} + {{ if eq .Params.state "experimental" }} + <li><a href="{{.Permalink}}">{{.Params.friendly_name}}</a> - {{.Description}}</li> + {{ end }} + {{ end }} + {{ end }} + </ul> + + <strong>Active</strong> + <ul> + {{ range.Site.RegularPages }} + {{ if eq .Section "git" }} + {{ if eq .Params.state "active" }} + <li><a href="{{.Permalink}}">{{.Params.friendly_name}}</a> - {{.Description}}</li> + {{ end }} + {{ end }} + {{ end }} + </ul> + + <strong>Archived</strong> + <ul> + {{ range.Site.RegularPages }} + {{ if eq .Section "git" }} + {{ if eq .Params.state "archived" }} + <li><a href="{{.Permalink}}">{{.Params.friendly_name}}</a> - {{.Description}}</li> + {{ end }} + {{ end }} + {{ end }} + </ul> + + <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> + +</html> + |