website/templates/index.html

33 lines
693 B
HTML
Raw Normal View History

2022-03-28 15:24:48 -04:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Augusto Gunsch</title>
<link rel="stylesheet" href="{{ url_for('static', filename='stylesheet.css') }}"/>
<link rel="icon" href="{{ url_for('static', filename='icon.png') }}"/>
</head>
<body>
2022-03-29 18:38:10 -04:00
<header>
<h1>Augusto<br>Gunsch</h1>
<nav>
<a href='contact'>Contact</a>
<a href='about'>About</a>
<a href='projects' class='button'>Projects</a>
</nav>
</header>
2022-03-28 15:24:48 -04:00
<main>
2022-03-29 18:38:10 -04:00
<figure>
<blockquote>
{{ quote }}
</blockquote>
2022-03-28 15:24:48 -04:00
<figcaption>{{ author }}</figcaption>
2022-03-29 18:38:10 -04:00
</figure>
<span>
I turn <mark>ideas</mark><br>into<br><mark>software</mark>.
</span>
2022-03-28 15:24:48 -04:00
</main>
</body>
</html>