36 lines
1.6 KiB
HTML
36 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<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 }}">
|
|
<link rel="alternate" type="application/rss+xml" title="RSS Feed for fmartingr.com" href="/feed.xml" />
|
|
<!-- Mobile -->
|
|
<meta name="HandheldFriendly" content="True">
|
|
<meta name="MobileOptimized" content="320">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=0">
|
|
<meta http-equiv="cleartype" content="on">
|
|
</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>
|
|
<a href="{{ '/blog'|url }}">/blog</a>
|
|
{#<a href="{{ '/portfolio'|url }}">/portfolio</a> #}
|
|
<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>
|