new-codigoparallevar/static/article.tmpl.html

18 lines
552 B
HTML
Raw Normal View History

2022-06-27 18:39:21 +00:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
2022-07-21 21:28:02 +00:00
<title>{{ title }} @ Código para llevar</title>
2022-06-27 18:39:21 +00:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="../css/style.css" />
<link rel="stylesheet" href="../css/light-syntax.css" />
2022-07-18 20:46:03 +00:00
<link rel="stylesheet" href="../css/dark-syntax.css" />
2022-06-27 18:39:21 +00:00
</head>
<body>
2022-07-21 21:28:02 +00:00
<article class="post">
<h2 class="post-title">{{ title }}</h2>
2022-06-27 18:39:21 +00:00
{{ content | safe }}
</article>
</body>
</html>