sites

parazyd.cf website
git clone git://parazyd.org/sites.git
Log | Files | Refs

commit 873b63de15a1c76137909b0f6aa8110351cc7b67
parent 2b70635f4399333c38d25679a924414dd7baa0ea
Author: parazyd <parazyd@dyne.org>
Date:   Mon,  5 Feb 2018 18:17:28 +0100

More fixes.

Diffstat:
Mindex.gph | 2++
Mnav.html | 22++++++++++++----------
Mprojects.html.md | 6+++---
Mstatic/style.css | 11+++--------
4 files changed, 20 insertions(+), 21 deletions(-)

diff --git a/index.gph b/index.gph @@ -5,10 +5,12 @@ [0|Projects|/projects.html.md|server|port] [0|Contact|/contact.html.md|server|port] [0|GnuPG pubkey|/fa1b0274.txt|server|port] +[1|This gopherhole via Tor|/|szpvqtyw3vbgzb3s.onion|port] -- Lurk more -- [1|Code repositories|/git|server|port] +[1|Public files|/pub|server|port] [1|Random knowledgebase|/doc|server|port] -- More gopher -- diff --git a/nav.html b/nav.html @@ -1,13 +1,15 @@ - <div id="menu"> - <ul> - <li><a href="/">home</a></li> - <li><a href="/doc">doc</a></li> - <li><a href="/projects.html">projects</a></li> - <li><a href="/git">git</a></li> - <li><a href="http://pub.parazyd.cf">pub</a></li> - <li><a href="/contact.html">contact</a></li> - </ul> - </div> + <table id="menu" align="center"> + <tr> + <td><a href="/">home</a></td> + <td><a href="/doc">doc</a></td> + <td><a href="/projects.html">projects</a></td> + <td><a href="/git">git</a></td> + <td><a href="/pub">pub</a></td> + <td><a href="gopher://parazyd.cf">gopher</a></td> + <td><a href="http://szpvqtyw3vbgzb3s.onion">tor</a></td> + <td><a href="/contact.html">contact</a></td> + </tr> + </table> <div id="content"> diff --git a/projects.html.md b/projects.html.md @@ -3,7 +3,7 @@ projects Some projects I work on and/or are worth mentioning. -[Tor DAM](https://git.parazyd.cf/tor-dam/) +[Tor DAM](https://parazyd.cf/git/tor-dam/) ------------------------------------------ Tor Distributed Announce Mechanism is the protocol and tooling @@ -33,7 +33,7 @@ Devuan's Simple Distro Kit. Based around a shell script library called libdevuansdk, wrappers are easy to code and create distro derivatives. -[amprolla](http://git.parazyd.cf/amprolla/) +[amprolla](http://parazyd.cf/git/amprolla/) ------------------------------------------- Devuan's apt repo merger. A tool used to stack deb-based repositories on @@ -55,7 +55,7 @@ of that, I maintain a build framework for a [plethora of ARM devices](https://git.devuan.org/sdk/arm-sdk). -[blck](http://git.parazyd.cf/blck/) +[blck](http://parazyd.cf/git/blck/) ----------------------------------------- use{ful,less} microservice to shorten links in an ephemeral way. First diff --git a/static/style.css b/static/style.css @@ -34,19 +34,14 @@ code { font-size: 7pt; } -#menu ul { - list-style-type: none; +#menu td { margin: 0; padding: 0; overflow: hidden; background-color: #393f4c; } -#menu li { - float: left; -} - -#menu li a { +#menu td a { display: block; color: #eee; text-align: center; @@ -54,7 +49,7 @@ code { text-decoration: none; } -#menu li a:hover { +#menu td a:hover { background-color: #222; }