website/templates/index.html

32 lines
868 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>
<main>
<div id="content">
{% autoescape false %}
{{ body }}
{% endautoescape %}
</div>
<div>
<figure>
<blockquote>{{ quote }}</blockquote>
<figcaption>{{ author }}</figcaption>
</figure>
</div>
</main>
<nav>
<a onclick="loadPage(this)" class="selected" id="index">Home</a>
<a onclick="loadPage(this)" id="projects">Projects</a>
<!--<a onclick="loadPage(this)" id="articles">Articles</a>-->
<!--<a onclick="loadPage(this)" id="library">Library</a>-->
</nav>
</body>
<script src="{{ url_for('static', filename='index.js') }}"></script>
</html>