From 77e03452e04a9deed1a0e0758eab60487ba4697a Mon Sep 17 00:00:00 2001 From: "Niels G. W. Serup" Date: Tue, 30 Aug 2016 18:57:51 +0200 Subject: [PATCH] Fix about pages. --- site/about/index.md | 10 ++++++---- site/about/niels.md | 42 +++++++++++++++++++++--------------------- site/style.css | 28 ++++++++++++++++++++++++++-- template/base.html | 2 +- 4 files changed, 54 insertions(+), 28 deletions(-) diff --git a/site/about/index.md b/site/about/index.md index 0b49ea6..389de89 100644 --- a/site/about/index.md +++ b/site/about/index.md @@ -6,10 +6,12 @@ This is metanohi.name, the personal website of ## Source code -This website is statically generated from the files in a git repository. +This website is statically generated from the files in a git +repository. You can look at it if you so wish: -Get the site: -: $ git clone git://metanohi.name/metanohi +``` +$ git clone git://metanohi.name/metanohi +``` The git history goes back to 2011. @@ -40,4 +42,4 @@ There are several reasons for the choice of "metanohi": Unless otherwise noted, feel free to copy and remix things from this site. For the fun of it, consider them licensed under the -[[http://www.wtfpl.net/][Do What The Fuck You Want To Public License (WTFPL)]] +[Do What The Fuck You Want To Public License (WTFPL)](http://www.wtfpl.net/). diff --git a/site/about/niels.md b/site/about/niels.md index f099bb5..52922dd 100644 --- a/site/about/niels.md +++ b/site/about/niels.md @@ -3,16 +3,16 @@ I, Niels G. W. Serup, is the creator of metanohi. I was born in 1992 and live in Copenhagen, Denmark. -I study computer science at [[http://diku.dk/][DIKU]] where I am also -part of the yearly student revue [[http://dikurevy.dk/][DIKUrevy]] and -the [[http://kantinen.org][Canteen association]], among other things. +I study computer science at [DIKU](http://diku.dk/) where I am also part +of the yearly student revue [DIKUrevy](http://dikurevy.dk/) and the +[Canteen association](http://kantinen.org), among other things. While online, I usually go by the nickname "ngws" or variations thereof. ## Contact -I can be contacted at [[mailto:ngws@metanohi.name][ngws@metanohi.name]]. +I can be contacted at [ngws@metanohi.name](mailto:ngws@metanohi.name). I also hang out as `ngws` in `#diku` on `irc.freenode.net`. @@ -21,7 +21,7 @@ I also hang out as `ngws` in `#diku` on `irc.freenode.net`. ### Emacs Emacs is a nice text editor. -[[http://www.gnu.org/software/emacs/][Get it]]. +[Get it](http://www.gnu.org/software/emacs/). ### Firefox @@ -33,12 +33,12 @@ more like Emacs. StumpWM is a tiling, Emacs-like window mananger. It has fewer features than e.g. XMonad (another tiling wm), but it's simple and understandable. I don't even have to add a keybinding for running Emacs --- it's already there! [[https://stumpwm.github.io/][Get it]]. +-- it's already there! [Get it](https://stumpwm.github.io/). ### Debian I run Debian testing with only a small amount of proprietary software. -[[http://debian.org/][Get Debian]]. +[Get Debian](http://debian.org/). ### Dvorak @@ -104,18 +104,18 @@ It works quite well. Most of these I don't use actively. - + [[https://github.com/nqpz][GitHub]] - + [[http://en.wikipedia.org/wiki/User:NqpZ][Wikipedia]] - + [[https://twitter.com/ngwwws][Twitter]] - + [[https://keybase.io/ngws][KeyBase]] - + [[https://gitlab.com/u/ngws][GitLab]] - + [[https://launchpad.net/~ngws][Launchpad]] - + [[http://openlibrary.org/people/nqpz][Open Library]] - + [[http://en.literateprograms.org/User:NqpZ][LiteratePrograms]] - + [[http://uncyclopedia.wikia.com/wiki/User:Schabeindividuum][Uncyclopedia]] - + [[https://savannah.gnu.org/users/nqpz][GNU Savannah]] - + [[http://libreplanet.org/wiki/User:NqpZ][Libreplanet]] - + [[http://identi.ca/nqpz][StatusNet]] + + [GitHub](https://github.com/nqpz) + + [Wikipedia](http://en.wikipedia.org/wiki/User:NqpZ) + + [Twitter](https://twitter.com/ngwwws) + + [KeyBase](https://keybase.io/ngws) + + [GitLab](https://gitlab.com/u/ngws) + + [Launchpad](https://launchpad.net/~ngws) + + [Open Library](http://openlibrary.org/people/nqpz) + + [LiteratePrograms](http://en.literateprograms.org/User:NqpZ) + + [Uncyclopedia](http://uncyclopedia.wikia.com/wiki/User:Schabeindividuum) + + [GNU Savannah](https://savannah.gnu.org/users/nqpz) + + [Libreplanet](http://libreplanet.org/wiki/User:NqpZ) + + [StatusNet](http://identi.ca/nqpz) ## Keys @@ -137,5 +137,5 @@ sub 2048R/7CFE0D20 2014-06-11 ## Hongabar -[[https://hongabar.org/]] is the main domain of the server that I share -with a friend. +[https://hongabar.org/](https://hongabar.org/) is the main domain of the +server that I share with a friend. diff --git a/site/style.css b/site/style.css index a73eb66..63dfe17 100644 --- a/site/style.css +++ b/site/style.css @@ -28,6 +28,7 @@ body { #body nav ul { list-style: none; + margin: 0; padding: 0; text-align: center; font-size: 24px; @@ -48,13 +49,36 @@ body { } #content { - padding: 10px; + padding: 15px; background-color: rgba(0, 0, 0, 0.8); color: #eeeeee; } +h2 { + margin-top: 1.2em; +} + +h3 { + margin-top: 1em; +} + p { - margin-top: 0.5em; + margin-top: 0.8em; +} + +ul { + margin-top: 0.8em; +} + +pre { + margin-top: 0.8em; + border: 1px solid white; + padding: 10px; + overflow-x: auto; +} + +code { + font-size: 16px; } a:link, a:visited { diff --git a/template/base.html b/template/base.html index 8c96a58..9313f6f 100644 --- a/template/base.html +++ b/template/base.html @@ -15,7 +15,7 @@
  • projects
  • media
  • misc
  • -
  • about
  • +
  • about