kitsu.cafe/layouts/index.html

23 lines
850 B
HTML
Raw Normal View History

2024-10-16 08:25:29 +02:00
<!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 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>