diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-13 00:28:18 +0100 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2014-12-13 00:32:23 +0100 |
commit | 3de9ef9ea5a4d46cbf99e83342df216cf7b48bfd (patch) | |
tree | 1e777b3f7ef35d94f0b2b399e948dbee1156bf65 | |
parent | bdfca3a7982d66355395e46a6d63910402db171c (diff) | |
download | website-3de9ef9ea5a4d46cbf99e83342df216cf7b48bfd.tar.xz |
Add picture of myself to about page
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | TODO | 1 | ||||
-rw-r--r-- | src/about.rst | 4 | ||||
-rw-r--r-- | src/resources/me.jpg | bin | 0 -> 148845 bytes | |||
-rw-r--r-- | src/style.css | 8 |
5 files changed, 13 insertions, 2 deletions
@@ -1,6 +1,6 @@ HTML := index.html journal.html about.html CSS := style.css journal/isso.css -RESOURCES := glider.png +RESOURCES := glider.png me.jpg TEMPLATES := $(shell find src/templates) FILES := $(HTML) $(CSS) sitemap.xml pgp-key.txt \ @@ -1,7 +1,6 @@ index: about: - * Add picture of me? journal: * continue I diff --git a/src/about.rst b/src/about.rst index 07687e2..8ff8488 100644 --- a/src/about.rst +++ b/src/about.rst @@ -4,6 +4,10 @@ date: 2014-10-14 author: Johannes Löthberg +.. image:: resources/me.jpg + :class: picture-me + :height: 6em + I'm “kyrias”, also commonly known online as “demize”, but you can call me “Johannes Löthberg” if you’d like. Though if you ask my local government my last name doesn’t actually contain an ‘h’, which I find quite annoying. Anyway, diff --git a/src/resources/me.jpg b/src/resources/me.jpg Binary files differnew file mode 100644 index 0000000..6dd50a0 --- /dev/null +++ b/src/resources/me.jpg diff --git a/src/style.css b/src/style.css index 6753c86..ffcf93f 100644 --- a/src/style.css +++ b/src/style.css @@ -114,6 +114,14 @@ blockquote:after { color: #ccc; } +img.picture-me { + float: right; + border: 2px solid; + border-color: black; + margin-left: 0.45rem; + margin-right: 0.1rem; +} + tt.literal { font-size: 0.75rem; } |