66 lines
		
	
	
	
		
			3.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			66 lines
		
	
	
	
		
			3.2 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://mastodon.social/@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 %}
 | |
|     <script>
 | |
|      (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
 | |
|          (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
 | |
|                               m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
 | |
|      })(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
 | |
| 
 | |
|      ga('create', 'UA-41989443-1', 'auto');
 | |
|      ga('send', 'pageview');
 | |
|     </script>
 | |
|   </body>
 | |
| </html>
 |