-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
37 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,39 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Eirik Kultorp's homepage</title> | ||
<link rel="stylesheet" href="style.css"> | ||
<link rel="stylesheet" href="style.css"> | ||
<script type="application/ld+json" data-rh="true"> | ||
{ | ||
"@context": "https://schema.org/", | ||
"@type": "WebPage", | ||
"url": "https://ekul.no", | ||
"mainEntity": { | ||
"@id": "https://ekul.no/eirik-kultorp", | ||
"@type": "Person", | ||
"image": "https://ekul.no/portrait.png", | ||
"name": "Eirik Kultorp", | ||
"url": "https://ekul.no" | ||
} | ||
} | ||
</script> | ||
</head> | ||
<body> | ||
<h1>Eirik Kultorp</h1> | ||
<p>Software engineer interested in HPC, DevOps and infra, and knowledge representation.</p> | ||
<footer> | ||
<a href="https://github.com/ekulno"> | ||
<img src="https://github.githubassets.com/assets/GitHub-Mark-ea2971cee799.png" class="social-button"/> | ||
<span>Github</span> | ||
</a> | ||
<a href="https://www.linkedin.com/in/eirik-kultorp-aa0225256/"> | ||
<img src="https://content.linkedin.com/content/dam/me/business/en-us/amp/brand-site/v2/bg/LI-Bug.svg.original.svg" class="social-button"/> | ||
<span>LinkedIn</span> | ||
</a> | ||
</footer> | ||
<section> | ||
|
||
<h1>Eirik Kultorp</h1> | ||
<p> | ||
Software engineer interested in high-performance computing, devops and infra, and knowledge representation. | ||
Enjoys sci-fi and racket sports. | ||
Based in Oslo. | ||
</p> | ||
<ul> | ||
<li><a href="https://github.com/ekulno">Github</a></li> | ||
<li><a href="https://triplydb.com/eirik">TriplyDB</a></li> | ||
<li><a href="https://www.linkedin.com/in/eirik-kultorp-aa0225256/">LinkedIn</a></li> | ||
<li><a href="https://orcid.org/0009-0005-5211-045X">ORCID</a></li> | ||
</ul> | ||
<img src="portrait.png" id="portrait"/> | ||
</section> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
.social-button { | ||
height: 2em; | ||
width: 2em; | ||
} | ||
|
||
#portrait { | ||
width: 10em; | ||
border-radius: 100%; | ||
} |