Move content to public/
This commit is contained in:
parent
f5813e5bd6
commit
433d109f18
5 changed files with 3 additions and 3 deletions
82
public/index.html
Normal file
82
public/index.html
Normal file
|
|
@ -0,0 +1,82 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<link rel="shortcut icon" href="/favicon.ico">
|
||||
<link rel="icon" type="image/png" href="/favicon.png" sizes="196x196">
|
||||
|
||||
<title>Rupus Reinefjord</title>
|
||||
|
||||
<style>
|
||||
* {
|
||||
box-sizing: border-box;
|
||||
overflow-wrap: break-word;
|
||||
word-wrap: break-word; /* legacy */
|
||||
word-break: break-word; /* for WebKit/Chrome */
|
||||
}
|
||||
|
||||
main {
|
||||
max-width: 36rem;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
code, .email {
|
||||
font-family: monospace, monospace;
|
||||
}
|
||||
|
||||
#gpg-fingerprint {
|
||||
font-size: small;
|
||||
}
|
||||
|
||||
.asterism, footer {
|
||||
margin: 2rem 0;
|
||||
text-align: center;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<main>
|
||||
<h1>Rupus Reinefjord</h1>
|
||||
<p>
|
||||
I am a programmer currently working for
|
||||
<a href="https://46elks.com">46elks</a>. I strongly believe in keeping
|
||||
complexity low, whether in code or infrastructure.
|
||||
</p>
|
||||
|
||||
<h2>Some links</h2>
|
||||
<ul>
|
||||
<li>GitHub - <a href="https://github.com/reinefjord">reinefjord</a></li>
|
||||
<li>Flickr - <a href="https://www.flickr.com/photos/koltrast_">koltrast_</a></li>
|
||||
<li>LinkedIn - <a href="https://www.linkedin.com/in/rupus-reinefjord/">Rupus Reinefjord</a></li>
|
||||
</ul>
|
||||
|
||||
<h2>Contact me</h2>
|
||||
<ul>
|
||||
<li>Email - <a href="mailto:rupus(at)reinefjord(dot)net" class="email encoded" data-encoded="cnVwdXNAcmVpbmVmam9yZC5uZXQK">rupus(at)reinefjord(dot)net</a>
|
||||
<li>PGP key -
|
||||
<a href="/files/rupusreinefjord_pubkey.asc">
|
||||
<code id="gpg-fingerprint">DA6B 0C46 A100 662F FA4A 9B0D E17E 90E2 CE1F D278</code>
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</main>
|
||||
|
||||
<footer>❦</footer>
|
||||
|
||||
<script>
|
||||
function emaildecode() {
|
||||
var emails = document.getElementsByClassName("encoded");
|
||||
for (var i = 0; i < emails.length; i++) {
|
||||
var b64 = emails[i].dataset.encoded;
|
||||
var decoded = window.atob(b64);
|
||||
emails[i].innerHTML = decoded;
|
||||
emails[i].href = "mailto:" + decoded;
|
||||
}
|
||||
}
|
||||
emaildecode();
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
Loading…
Add table
Add a link
Reference in a new issue