fmartingr.com/templates/_base.html

29 lines
1.2 KiB
HTML

<html>
<head>
<title>{% block page_title %}Felipe Martin{% 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 }}">
<link rel="stylesheet" href="{{ get_pygments_stylesheet()|url }}">
</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</a> &nbsp;
<a href="{{ '/blog'|url }}">/blog</a> &nbsp;
{#<a href="{{ '/portfolio'|url }}">/portfolio</a> &nbsp;#}
<a href="{{ '/contact'|url }}">/contact</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="{{ "/made-with-open-source"|url }}">Made with Open Source tools</a> | <a href="{{ '/contact'|url }}">Contact</a>
</div>
</footer>
<script type="text/javascript" src="{{ '/static/js/app-min.js'|url }}"></script>
</body>
</html>