codigocomentado/templates/index.html.tera

33 lines
897 B
Plaintext

<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8"/>
<title>CódigoComentado - blog personal de kirbylife</title>
<link href="/static/css/style.css" rel="stylesheet"/>
</head>
<body>
<header>
<a class="logo">{{ title }}</a>
</header>
<nav>
<a href="">⍉ Item 1</a>
<a href="">⍉ Item 2</a>
<a href="">⍉ Item 3</a>
</ul>
</nav>
<section>
<article>
<span><strong>{ image: </strong></span>
<figure>
<img src="https://files.realpython.com/media/MProc.7cf3be371bbc.png">
</figure>
<p class="article-title"><strong>title: </strong>Foo bar</p>
<p class="article-body"><strong>Article: </strong>Lorem Ipsum</p>
<div class="article-info">
<span><strong>Author: </strong>kirbylife <strong>Date: </strong>12/11/2019<strong> }</strong></span>
</div>
</article>
</section>
</body>
</html>