forked from froge/cyberfrog.me
28 lines
618 B
HTML
28 lines
618 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<link rel="stylesheet" href=/main.css>
|
|
<title>🐸 CyberFrog</title>
|
|
</head>
|
|
|
|
<body>
|
|
<h1 class="title">Cyberfrog blog</h1>
|
|
</div>
|
|
<main id="main-content">
|
|
<h2 class="title">
|
|
This is my blog made with Zola!
|
|
</h2>
|
|
<h3>It's currently running on Vultr for free with 500MB of RAM and OpenBSD :)</h3>
|
|
<div class="blog-posts">
|
|
{% block content %} {% endblock %}
|
|
</div>
|
|
</main>
|
|
<!-- The wonderful frog pool -->
|
|
<div id="frog-pool-container">
|
|
<div class="frog-pool-water">
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|