summaryrefslogtreecommitdiffstats
path: root/templates/base.html
blob: 4dcb60172e539de9dbc44c9cbe8d6dc756544707 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html lang="en">
	<head>
		<title>rgoncalves.se</title>
		<meta charset="utf-8">
		<meta name="viewport" content="width=device-width, initial-scale=1.0 minimum-scale=1">
		<link rel="icon" type="image/png" href="logo.png">
		<link href="/style/style.css" rel="stylesheet" type="text/css">
	</head>
	<body>
		{% include "_header.html" %}

		{% block content %} {% endblock %}

		{% include "_footer.html" %}
	</body>
</html>
remember that computers suck.