website/templates/page_en.html

30 lines
776 B
HTML

<!DOCTYPE html>
<html id="html">
<head>
<meta charset="utf-8"/>
<title>Augusto Gunsch | {{ page }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='stylesheet.css') }}"/>
<link rel="stylesheet" href="{{ url_for('static', filename='stylesheet_page.css') }}"/>
<link rel="icon" href="{{ url_for('static', filename='icon.png') }}"/>
</head>
<body id="body">
<header id="header">
<h1 id="title"><a href='/'>Augusto<br>Gunsch</a></h1>
<nav id="links">
<a href='contact'>Contact</a>
<a href='about'>About</a>
<a href='projects' class='button'>Projects</a>
</nav>
</header>
<article id="wrapper">
<div id="content">
{% autoescape false %}
{{ body }}
{% endautoescape %}
</div>
</article>
</body>
</html>