44 lines
2 KiB
HTML
44 lines
2 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block page_title %}Felipe Martin{% endblock %}</title>
|
|
<link rel="stylesheet" href="/static/css/style.css">
|
|
<link rel="alternate" type="application/rss+xml" title="RSS Feed for fmartingr.com" href="/feed.xml" />
|
|
<link rel="icon" href="/static/images/favicon.ico">
|
|
<!-- 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 analytics %}
|
|
{% if not is_dev %}<script defer src="https://umami.fmartingr.dev/script.js" data-website-id="18da78a4-f6bd-4560-88fd-e28ca0b487fa"></script>{% endif %}
|
|
{% endblock %}
|
|
{% block endhead %}{% endblock %}
|
|
</head>
|
|
<body class="{% block body_class %}{% endblock %}">
|
|
<div class="page-content center">
|
|
<header>
|
|
<div class="avatar">
|
|
<img class="avatar" src="{{ '/static/images/avatar.jpg'|asseturl }}">
|
|
</div>
|
|
<h1>Felipe Martín</h1>
|
|
<nav>
|
|
<a {% if this.path == '/' %}class="text-bold"{% endif %} href="{{ '/'|url }}">/home</a>
|
|
{% for section in site.get('/').children.order_by("title") %}
|
|
<a {% if this.is_child_of(section) %}class="text-bold"{% endif %} href="{{ section|url }}">{{ section.path }}</a>
|
|
{% endfor %}
|
|
</nav>
|
|
</header>
|
|
<hr>
|
|
<section class="main-content">
|
|
{% block main_content %}{% endblock %}
|
|
</section>
|
|
<hr>
|
|
<footer>
|
|
<div>My opinions are my own.</div>
|
|
<div>Created using <a target="_blank" href="https://getlektor.com">Lektor</a> | <a target="_blank" href="https://github.com/fmartingr/fmartingr.com">Source code</a> | <a href="/feed.xml">RSS Feed</a> | <a target="_blank" href="/about">About me</a>{% if last_build_date %}| Built: {{ last_build_date }}{% endif %}</div>
|
|
</footer>
|
|
{% block endbody %}{% endblock %}
|
|
</body>
|
|
</html>
|