blob: bf52ae17e7c8ffe02986069da7442c952e019ba0 (
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>
|