diff options
Diffstat (limited to 'webroot/index.html')
-rw-r--r-- | webroot/index.html | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/webroot/index.html b/webroot/index.html new file mode 100644 index 0000000..29f3ba9 --- /dev/null +++ b/webroot/index.html @@ -0,0 +1,106 @@ +<!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="/css/libweb.css" type="text/css"> + + </head> + + <body> + + <main> + <h1>xengineering</h1> + + <p>Welcome to my personal website.</p> + + <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> + + <h2>Software</h2> + + <p>Use the Git link for a Git clone or to view the project in your browser.</p> + + <ul> + <li> + birdscan - Software to take beautiful pictures of birds with a Raspberry Pi camera + [ <a href="https://cgit.xengineering.eu/birdscan/">Git</a> | + <a href="https://cgit.xengineering.eu/birdscan/atom">Atom</a> ] + </li> + <li> + dotfiles - Git repository to track my personal GNU/Linux dotfiles + [ <a href="https://cgit.xengineering.eu/dotfiles/">Git</a> | + <a href="https://cgit.xengineering.eu/dotfiles/atom">Atom</a> ] + </li> + <li> + iot-barcode-scanner - Service that makes barcode scanners available on the network for IoT usage + [ <a href="https://cgit.xengineering.eu/iot-barcode-scanner/">Git</a> | + <a href="https://cgit.xengineering.eu/iot-barcode-scanner/atom">Atom</a> ] + </li> + <li> + ledcontrol - Firmware project for the STM32F103C8T6 microcontroller to control LED strips + [ <a href="https://cgit.xengineering.eu/ledcontrol/">Git</a> | + <a href="https://cgit.xengineering.eu/ledcontrol/atom">Atom</a> ] + </li> + <li> + libweb - Repository with reusable components for web development + [ <a href="https://cgit.xengineering.eu/libweb/">Git</a> | + <a href="https://cgit.xengineering.eu/libweb/atom">Atom</a> ] + </li> + <li> + pkgbuilds - Repository with packaging files for the Arch Linux build system + [ <a href="https://cgit.xengineering.eu/pkgbuilds/">Git</a> | + <a href="https://cgit.xengineering.eu/pkgbuilds/atom">Atom</a> ] + </li> + <li> + scripts - Some useful scripts + [ <a href="https://cgit.xengineering.eu/scripts/">Git</a> | + <a href="https://cgit.xengineering.eu/scripts/atom">Atom</a> ] + </li> + <li> + stlscope - Simple program to view .stl files + [ <a href="https://cgit.xengineering.eu/stlscope/">Git</a> | + <a href="https://cgit.xengineering.eu/stlscope/atom">Atom</a> ] + </li> + <li> + webiot - Small webserver for my personal Internet of Things (IoT) + [ <a href="https://cgit.xengineering.eu/webiot/">Git</a> | + <a href="https://cgit.xengineering.eu/webiot/atom">Atom</a> ] + </li> + <li> + xbackup - Convenience wrapper around the Borg backup tool + [ <a href="https://cgit.xengineering.eu/xbackup/">Git</a> | + <a href="https://cgit.xengineering.eu/xbackup/atom">Atom</a> ] + </li> + <li> + xbot - Software to create simpel chat bots for the XMPP/Jabber protocol + <a href="https://cgit.xengineering.eu/xbot/">Git</a> | + <a href="https://cgit.xengineering.eu/xbot/atom">Atom</a> ] + </li> + </ul> + + <p>View a full list of my Git repositories on my <a href="https://cgit.xengineering.eu/">cgit server</a>. This includes archived repositories.</p> + + <br> + <hr> + <footer>License: <a href="https://creativecommons.org/licenses/by-sa/4.0/">CC BY-SA</a></footer> + + </main> + + </body> + +</html> + |