website/templates/index_en.html

43 lines
1.0 KiB
HTML
Raw Normal View History

2022-03-30 07:14:42 -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>
<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>
<div id="page">
<div id="social">
<a href="https://github.com/augustogunsch" target="_blank">
<img src="{{ url_for('static', filename='github.png') }}">
</a>
<a href="https://www.linkedin.com/in/augusto-gunsch-210b17218" target="_blank">
<img src="{{ url_for('static', filename='linkedin.png') }}">
</a>
</div>
<main>
<figure>
<blockquote>
{{ quote }}
</blockquote>
<figcaption>{{ author }}</figcaption>
</figure>
<span>
I turn <mark>ideas</mark><br>into<br><mark>software</mark>.
</span>
</main>
</div>
</body>
</html>