22 lines
850 B
HTML
22 lines
850 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 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>
|
|
|