52 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
	
		
			2.7 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="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">
 | |
| 
 | |
|     <script type="text/javascript">
 | |
|     var disqus_shortname = 'fmartingr';
 | |
|     </script>
 | |
|     {% 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 }}">/about</a>  
 | |
|         <a {% if this.is_child_of('/blog') %}class="text-bold"{% endif %} href="{{ '/blog'|url }}">/blog</a>  
 | |
|         <a {% if this.is_child_of('/portfolio') %}class="text-bold"{% endif %} href="{{ '/portfolio'|url }}">/portfolio</a>  
 | |
|         <a {% if this.is_child_of('/contact') %}class="text-bold"{% endif %} 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>
 | |
|     {% 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>
 |