First version
This commit is contained in:
parent
d3a8282df9
commit
f49843fdea
32 changed files with 1455 additions and 0 deletions
76
src/index.html
Normal file
76
src/index.html
Normal file
|
@ -0,0 +1,76 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<link rel="icon" href="/static/favicons/favicon.ico">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/static/favicons/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/static/favicons/favicon-16x16.png">
|
||||
|
||||
<link rel="stylesheet" href="{{style.css}}">
|
||||
|
||||
<title>reinefjord.net</title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main>
|
||||
<h1>Välkommen!</h1>
|
||||
<p>
|
||||
My name is Rupus Reinefjord and this is my own little space on the
|
||||
World Wide Web.
|
||||
</p>
|
||||
<p>
|
||||
I am a programmer and computer enthusiast. I love technology,
|
||||
especially <a href="https://en.wikipedia.org/wiki/Free_and_open-source_software">
|
||||
free and open source</a> software.
|
||||
I am currently studying computer science at
|
||||
KTH Royal Institute of Technology, and I work for a small company as an
|
||||
IT administrator.
|
||||
</p>
|
||||
|
||||
<h2>Photography</h2>
|
||||
<p>
|
||||
My photography is available at <a href="https://www.flickr.com/photos/koltrast_">Flickr</a>
|
||||
primarily. You can also follow me on <a href="https://www.instagram.com/rupusreinefjord/">Instagram</a>. I mostly take photos of nature, but mix it up with whatever I happen
|
||||
to see while carrying my camera. I use a Nikon D7100 with a Nikkor 18-140mm
|
||||
kit lens. It works for most purposes.
|
||||
</p>
|
||||
|
||||
<h2>My online presence</h2>
|
||||
<dl>
|
||||
<dt>GitHub:</dt>
|
||||
<dd><a href="https://github.com/reinefjord">reinefjord</a></dd>
|
||||
<dt>Flickr:</dt>
|
||||
<dd><a href="https://www.flickr.com/photos/koltrast_">koltrast_</a></dd>
|
||||
<dt>Instagram:</dt>
|
||||
<dd><a href="https://www.instagram.com/rupusreinefjord/">@rupusreinefjord</a></dd>
|
||||
<dt>Keybase:</dt>
|
||||
<dd><a href="https://keybase.io/rupus">rupus</a></dd>
|
||||
</dl>
|
||||
|
||||
<h2>How to contact me</h2>
|
||||
<p>
|
||||
I prefer you contact me via email. Use PGP encryption if you feel like
|
||||
doing so!
|
||||
</p>
|
||||
<dl>
|
||||
<dt>Email:</dt>
|
||||
<dd>
|
||||
<a href="mailto:firstname(at)lastname(dot)net" class="email encoded">cnVwdXNAcmVpbmVmam9yZC5uZXQK</a>
|
||||
<p class="nojs">
|
||||
Please activate javascript to see the address. Hint: it is
|
||||
<span class="email">firstname(at)lastname(dot)net</span>
|
||||
</p>
|
||||
</dd>
|
||||
<dt>PGP key:</dt>
|
||||
<dd>
|
||||
<a href="/static/rupusreinefjord_pubkey.asc">
|
||||
<code>E275 C3F0 8765 EBC3 C906 66F4 E918 999B E668 8BD2</code>
|
||||
</a>
|
||||
</dd>
|
||||
</dl>
|
||||
</main>
|
||||
<script src="{{common.js}}"></script>
|
||||
</body>
|
||||
</html>
|
Reference in a new issue