31 lines
1.3 KiB
HTML
31 lines
1.3 KiB
HTML
<html>
|
|
<head>
|
|
<title>{% block page_title %}{% endblock %}</title>
|
|
<link href='https://fonts.googleapis.com/css?family=Antic+Slab' rel='stylesheet' type='text/css'>
|
|
<link rel="stylesheet" href="{{ '/static/css/style.css'|asseturl }}">
|
|
</head>
|
|
<body class="{% block body_class %}{% endblock %}">
|
|
<header class="center">
|
|
<h1>Felipe Martín</h1>
|
|
<h2>Be incomprehensible. If they can't understand, they can't disagree.</h2>
|
|
<nav class="main-menu">
|
|
<a href="{{ '/'|url }}">About me</a> //
|
|
<a href="{{ '/blog'|url }}">Blog</a> //
|
|
<a href="{{ '/portfolio'|url }}">Portfolio</a>
|
|
</nav>
|
|
<hr class="light">
|
|
</header>
|
|
{% block main_content %}{% endblock %}
|
|
<footer class="center text-center">
|
|
<hr class="light">
|
|
<div class="center text-center">
|
|
<a href="mailto:me@fmartingr.com" target="_blank">E-mail</a> //
|
|
<a href="https://telegram.me/fmartingr" target="_blank">Telegram</a> //
|
|
<a href="http://es.linkedin.com/in/felipemartingarcia" target="_blank">LinkedIn</a> //
|
|
<a href="https://github.com/fmartingr" target="_blank">Github</a> //
|
|
<a href="https://twitter.com/fmartingr" target="_blank">Twitter</a>
|
|
</div>
|
|
</footer>
|
|
<script type="text/javascript" src="{{ 'static/js/app-min.js'|url }}"></script>
|
|
</body>
|
|
</html>
|