website/templates/index_en.html

46 lines
1.3 KiB
HTML
Raw Normal View History

2022-03-30 07:14:42 -04:00
<!DOCTYPE html>
2022-03-30 08:22:10 -04:00
<html id="html">
2022-03-30 07:14:42 -04:00
<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>
2022-03-30 08:22:10 -04:00
<body id="body">
<header id="header">
<h1 id="title"><a href='/'>Augusto<br>Gunsch</a></h1>
2022-03-30 07:14:42 -04:00
2022-03-30 08:22:10 -04:00
<nav id="links">
2022-03-30 07:14:42 -04:00
<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">
2022-04-19 18:59:21 -04:00
<a href="https://git.augustogunsch.com/augusto" target="_blank">
<img class="icon" src="{{ url_for('static', filename='gitea.png') }}">
</a>
2022-03-30 07:14:42 -04:00
<a href="https://github.com/augustogunsch" target="_blank">
2022-03-30 08:22:10 -04:00
<img class="icon" src="{{ url_for('static', filename='github.png') }}">
2022-03-30 07:14:42 -04:00
</a>
2022-03-30 11:42:24 -04:00
<a href="https://www.linkedin.com/in/augusto-gunsch" target="_blank">
2022-03-30 08:22:10 -04:00
<img class="icon" src="{{ url_for('static', filename='linkedin.png') }}">
2022-03-30 07:14:42 -04:00
</a>
</div>
2022-03-30 08:22:10 -04:00
<main id="main">
<figure id="quote">
2022-03-30 07:14:42 -04:00
<blockquote>
{{ quote }}
</blockquote>
<figcaption>{{ author }}</figcaption>
</figure>
2022-03-30 08:22:10 -04:00
<span id="slogan">
2022-03-30 07:14:42 -04:00
I turn <mark>ideas</mark><br>into<br><mark>software</mark>.
</span>
</main>
</div>
</body>
</html>