Initial commit
This commit is contained in:
commit
edb5816892
30 changed files with 534 additions and 0 deletions
31
templates/_base.html
Normal file
31
templates/_base.html
Normal file
|
@ -0,0 +1,31 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>{% block page_title %}{% 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 }}">
|
||||
</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 me</a> //
|
||||
<a href="{{ '/blog'|url }}">Blog</a> //
|
||||
<a href="{{ '/portfolio'|url }}">Portfolio</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="mailto:me@fmartingr.com" target="_blank">E-mail</a> //
|
||||
<a href="https://telegram.me/fmartingr" target="_blank">Telegram</a> //
|
||||
<a href="http://es.linkedin.com/in/felipemartingarcia" target="_blank">LinkedIn</a> //
|
||||
<a href="https://github.com/fmartingr" target="_blank">Github</a> //
|
||||
<a href="https://twitter.com/fmartingr" target="_blank">Twitter</a>
|
||||
</div>
|
||||
</footer>
|
||||
<script type="text/javascript" src="{{ 'static/js/app-min.js'|url }}"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue