Converted old blog entries
This commit is contained in:
parent
edb5816892
commit
7aecdaf367
83 changed files with 2445 additions and 36 deletions
|
@ -1,17 +1,19 @@
|
|||
<html>
|
||||
<head>
|
||||
<title>{% block page_title %}{% endblock %}</title>
|
||||
<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="{{ get_pygments_stylesheet()|url }}">
|
||||
</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>
|
||||
<a href="{{ '/'|url }}">/about</a>
|
||||
<a href="{{ '/blog'|url }}">/blog</a>
|
||||
<a href="{{ '/portfolio'|url }}">/portfolio</a>
|
||||
<a href="{{ '/contact'|url }}">/contact</a>
|
||||
</nav>
|
||||
<hr class="light">
|
||||
</header>
|
||||
|
@ -22,10 +24,12 @@
|
|||
<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>
|
||||
<a href="https://github.com/fmartingr" target="_blank">Github</a>
|
||||
</div>
|
||||
<div class="center text-center">
|
||||
<a href="{{ "/made-with-open-source"|url }}">Made with Open Source tools</a>
|
||||
</div>
|
||||
</footer>
|
||||
<script type="text/javascript" src="{{ 'static/js/app-min.js'|url }}"></script>
|
||||
<script type="text/javascript" src="{{ '/static/js/app-min.js'|url }}"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
@ -1 +1,3 @@
|
|||
{% extends "_base.html" %}
|
||||
|
||||
{% block page_title %}{{ super() }} | Blog{% endblock %}
|
||||
|
|
|
@ -1,8 +1,17 @@
|
|||
{% extends "blog/_base.html" %}
|
||||
{% from "macros/blog.html" import render_blog_post %}
|
||||
|
||||
{% block body_class %}blog post{% endblock %}
|
||||
|
||||
{% block page_title %}{{ super() }} | {{ this.title }}{% endblock %}
|
||||
|
||||
{% block main_content %}
|
||||
{{ render_blog_post(this) }}
|
||||
{% if this.comments_enabled %}
|
||||
<div class="center comments">{{ render_disqus_comments() }}</div>
|
||||
{% else %}
|
||||
<div class="center info">
|
||||
Comments have been disabled in this post, if you want to contact me please <a href="{{ '/contact'|url }}">go ahead</a>!
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
|
||||
{% block body_class %}blog post{% endblock %}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{% extends "_base.html" %}
|
||||
|
||||
{% block page_title %}About me // Felipe Martín{% endblock %}
|
||||
{% block page_title %}{{ super() }} | {{ this.title }}{% endblock %}
|
||||
|
||||
{% block main_content %}
|
||||
<div class="grid center">
|
||||
|
@ -8,10 +8,7 @@
|
|||
<img src="{{ 'static/images/avatar.png'|url }}">
|
||||
</div>
|
||||
<div class="col-2-3">
|
||||
<p>Hi! I'm Felipe, and I am a developer. Whatever that is.</p>
|
||||
<p>I have been playing with code for a while now, but I also enjoy geeking around with computers, algorithms and other stuff; the less I know about it, the better! Learning new things every day is my way of life.</p>
|
||||
<p>I think that developers are like artists, writers and composers... we all make art. But we don't use strokes and colors, words or notes, we make it through code. And I really love it.</p>
|
||||
<p>If you want to get in touch, feel free to drop me a line.</p>
|
||||
{{ this.body }}
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
|
|
9
templates/open-source.html
Normal file
9
templates/open-source.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
{% extends "_base.html" %}
|
||||
|
||||
{% block page_title %}{{ super() }} | {{ this.title }}{% endblock %}
|
||||
|
||||
{% block main_content %}
|
||||
<div class="center">
|
||||
{{ this.body }}
|
||||
</div>
|
||||
{% endblock %}
|
|
@ -1,5 +1,7 @@
|
|||
{% extends "_base.html" %}
|
||||
|
||||
{% block page_title %}{{ super() }} | {{ this.title }}{% endblock %}
|
||||
|
||||
{% block main_content %}
|
||||
portfolio
|
||||
{% endblock %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue