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.

89 lines
2.0 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">
body {
background-color: #22222b;
color: #ccc;
padding: 20px 10px;
max-width: 50rem;
margin: 0 auto;
font-family: Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
}
.hero {
margin: 0 auto;
}
.tabs {
margin-bottom: 10px;
}
a {
color: #ff9800;
border-bottom: 1px solid #ff2e88;
text-decoration: none;
}
.tabs .active {
background-color: #ff2e88;
color: #ccc;
}
.hidden {
display: none;
}
</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="#git">Git</a>
<a href="#presentations">Presentations</a>
</div>
<div class="panels">
<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>
</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>