The landing page for my domain.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

149 lines
3.8 KiB

<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Welcome to JulioBiason.Me</title>
<style type="text/css" media="all">
/*!
* Hack typeface https://github.com/source-foundry/Hack
* License: https://github.com/source-foundry/Hack/blob/master/LICENSE.md
*/@font-face {
font-family:'Hack';
src:url("fonts/hack-regular.woff2?sha=3114f1256") format("woff2"),
url("fonts/hack-regular.woff?sha=3114f1256") format("woff");
font-weight:400;
font-style:normal
}
@font-face {
font-family:'Hack';
src:url("fonts/hack-bold.woff2?sha=3114f1256") format("woff2"),
url("fonts/hack-bold.woff?sha=3114f1256") format("woff");
font-weight:700;
font-style:normal
}
@font-face {
font-family:'Hack';
src:url("fonts/hack-italic.woff2?sha=3114f1256") format("woff2"),
url("fonts/hack-italic.woff?sha=3114f1256") format("woff");
font-weight:400;
font-style:italic
}
@font-face {
font-family:'Hack';
src:url("fonts/hack-bolditalic.woff2?sha=3114f1256") format("woff2"),
url("fonts/hack-bolditalic.woff?sha=3114f1256") format("woff");
font-weight:700;
font-style:italic
}
body {
background-color: #1d212c;
color: white;
padding: 20px 10px;
max-width: 50rem;
margin: 0 auto;
font-family:Hack, DejaVu Sans Mono, Monaco, Consolas, Ubuntu Mono, monospace;
}
.hero {
margin: 0 auto;
}
a {
color: white;
border-bottom: 1px solid white;
text-decoration: none;
}
.tabs {
margin-bottom: 10px;
padding: 2px;
}
.tabs .active {
background-color: rgb(35, 176, 255);
color: black;
padding: 2px;
}
.hidden {
display: none;
}
h1 {
color: rgb(35, 176, 255);
}
</style>
</head>
<body>
<div class="hero">
<img src="sorry.gif" alt="">
</div>
<h1>
This is not the real landing page, this is just a tribute.
</h1>
<h3>
This page is intentionally badly designed, 'cause the real content resides on the subdomains.
</h3>
<div>
<div class="tabs">
<a href="#blog">Blog</a>
<a href="#books">Books</a>
<a href="#codersrank">CodersRank</a>
<a href="#git">Git</a>
<a href="#mastodon">Mastodon</a>
<a href="#presentations">Presentations</a>
<a href="#resume">Resumé</a>
</div>
<div class="panels">
<div id="books" class="hidden">
I wrote some books and put them open to the public on <a href="https://books.juliobiason.me">https://books.juliobiason.me</a>.
</div>
<div id="blog" class="hidden">
Random thoughts that are longer than a toot are on <a href="https://blog.juliobiason.me">https://blog.juliobiason.me</a>.
</div>
<div id="git" class="hidden">
I keep my own code repository on <a href="https://git.juliobiason.me">https://git.juliobiason.me</a>.
</div>
<div id="presentations" class="hidden">
My presentations are available online at <a href="https://presentations.juliobiason.me">https://presentations.juliobiason.me</a>.
</div>
<div id="resume" class="hidden">
My CV/Resumé is available at <a href="https://resume.juliobiason.me">https://resume.juliobiason.me</a>.
</div>
<div id="mastodon" class="hidden">
Not hosted here, but I toot quite regularly on <a rel="me" href="https://functional.cafe/@juliobiason">Mastodon</a>.
</div>
<div id="codersrank" class="hidden">
I try to keep my programmer profile updated on <a href="https://profile.codersrank.io/user/jbiason">CodersRank</a>.
</div>
</div>
</div>
</body>
<script src="zepto.min.js" charset="utf-8"></script>
<script charset="utf-8">
$('.tabs a').on('click', function (ev) {
ev.preventDefault();
$('.tabs a').removeClass('active');
$('.panels div').addClass('hidden');
$(ev.target).addClass('active');
var target = $(ev.target).attr('href');
$(target).removeClass('hidden');
});
</script>
</html>