kitsu.cafe/layouts/index.html
2024-12-20 07:28:58 -06:00

27 lines
898 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% block head %}
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta property="og:url" content="https://kitsu.cafe" />
<meta property="og:type" content="website" />
<meta name="description" content="A portfolio and blog for Rowan, a game developer, artist, and musician.">
<meta name="keywords"
content="Unity, Bevy, JavaScript, Rust, C#, HTML, CSS, Game Development, Programming, Music, Art">
<meta name="author" content="Rowan">
<title>{% block title %}Kitsune Cafe{% endblock title %}</title>
<link rel="stylesheet" href="/static/css/main.css">
{% endblock head %}
</head>
<body>
<div class="full-width container">
{% block body %}
{% endblock %}
</div>
</body>
</html>