57 lines
2.7 KiB
HTML
57 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<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="https://cdn.jsdelivr.net/npm/fork-awesome@1.0.11/css/fork-awesome.min.css" integrity="sha256-MGU/JUq/40CFrfxjXb5pZjpoZmxiP2KuICN5ElLFNd8=" crossorigin="anonymous">
|
|
<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">
|
|
|
|
{% block endhead %}{% endblock %}
|
|
</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 {% if this.path == '/' %}class="text-bold"{% endif %} href="{{ '/'|url }}">/home</a>
|
|
{% for section in site.get('/').children %}
|
|
<a{% if this.is_child_of(section) %} class="text-bold"{% endif
|
|
%} href="{{ section|url }}">{{ section.path }}</a> {% if not loop.last %} {% endif %}
|
|
{% endfor %}
|
|
</nav>
|
|
<hr class="light">
|
|
</header>
|
|
{% block main_content %}{% endblock %}
|
|
<footer class="center text-center">
|
|
<hr class="light">
|
|
<div>
|
|
Powered by <a href="https://www.getlektor.com/" target="_blank">Lektor</a> and <a href="https://about.gitlab.com/product/pages/">Gitlab Pages</a>.
|
|
</div>
|
|
<div>
|
|
<a target="_blank" href="mailto:me@fmartingr.com">E-Mail</a>
|
|
|
|
|
<a target="_blank" href="https://gitlab.com/fmartingr">Gitlab</a>
|
|
|
|
|
<a target="_blank" href="https://github.com/fmartingr">Github</a>
|
|
|
|
|
<a target="_blank" href="https://www.linkedin.com/in/fmartingr/">LinkedIn</a>
|
|
|
|
|
<a target="_blank" href="https://telegram.me/fmartingr">Telegram</a>
|
|
|
|
|
<a target="_blank" rel="me" href="https://fosstodon.org/@fmartingr">Mastodon</a>
|
|
</div>
|
|
</footer>
|
|
<script src="https://cdn.commento.io/js/commento.js"></script>
|
|
<script src="https://cdn.commento.io/js/count.js"></script>
|
|
<script type="text/javascript" src="{{ '/static/js/app-min.js'|url }}"></script>
|
|
{% block endbody %}{% endblock %}
|
|
</body>
|
|
</html>
|