Add blog/post header.

This commit is contained in:
Sergio Martínez Portela 2022-07-25 12:19:10 +02:00
parent 031305f5de
commit 8d831af216
2 changed files with 63 additions and 5 deletions

View file

@ -9,9 +9,28 @@
<link rel="stylesheet" href="../css/dark-syntax.css" />
</head>
<body>
<article class="post">
<h2 class="post-title">{{ title }}</h2>
{{ content | safe }}
</article>
<div class="site-header">
<h1 class="site-name"><a href="/">Codigo para llevar</a></h1>
<nav class="site-links">
<span class="fancy-link">
<a href="https://codigoparallevar.com/">Home</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="content">
<article class="post">
<h2 class="post-title">{{ title }}</h2>
{{ content | safe }}
</article>
</div>
</body>
</html>