69 lines
2.5 KiB
HTML
69 lines
2.5 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Código para llevar</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<link rel="stylesheet" href="../static/style.css" />
|
|
<link rel="stylesheet" href="../static/light-syntax.css" />
|
|
<link rel="stylesheet" href="../static/dark-syntax.css" />
|
|
</head>
|
|
<body class="blog">
|
|
<div class="site-header">
|
|
<h1 class="site-name"><a href="./">Codigo para llevar [blog]</a></h1>
|
|
<nav class="site-links">
|
|
<span class="fancy-link">
|
|
<a href="../">Home</a>
|
|
</span>
|
|
<span class="fancy-link">
|
|
<a href="../notes/">Notes</a>
|
|
</span>
|
|
<span class="fancy-link">
|
|
<a href="https://github.com/kenkeiras">GitHub</a>
|
|
</span>
|
|
<span class="fancy-link">
|
|
<a href="https://gitlab.com/kenkeiras">GitLab</a>
|
|
</span>
|
|
<span class="fancy-link">
|
|
<a href="https://programaker.com/users/kenkeiras">PrograMaker</a>
|
|
</span>
|
|
</nav>
|
|
</div>
|
|
<div class="post-index content">
|
|
{% for post in posts %}
|
|
<div class="post-container">
|
|
<article class="post">
|
|
<h2 class="post-title"><a href="{{ post.link }}">{{ post.title }}</a></h2>
|
|
<div class="post-metadata">
|
|
<time class="post-publication-date" datetime="{{ post.post_publication_date.date() }}">
|
|
{{ post.post_publication_date.date() }}
|
|
</time>
|
|
<ul class="post-tags">
|
|
{% for post_tag in post.post_tags %}
|
|
<li class="post-tag"><a href="tags/{{ post_tag |urlencode|replace('/', '_') }}/"</a>{{ post_tag }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<div class="post-content">
|
|
{{ post.summary | safe }}
|
|
</div>
|
|
</article>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
<div class="index-pages">
|
|
{% if prev_index_num != None %}
|
|
{% if prev_index_num == 0 %}
|
|
<a class="newer-posts" href="index.html">Newer posts</a>
|
|
{% else %}
|
|
<a class="newer-posts" href="index-{{ prev_index_num }}.html">Newer posts</a>
|
|
{% endif %}
|
|
{% endif %}
|
|
|
|
{% if next_index_num %}
|
|
<a class="older-posts" href="index-{{ next_index_num }}.html">Older posts</a>
|
|
{% endif %}
|
|
</div>
|
|
</body>
|
|
</html>
|