md-toy-blog
Version:
Very simple Markdown blog: serves your md as html without fancy databases. You will only spend time writing the actual data.
26 lines (24 loc) • 692 B
HTML
<html lang="en">
<head>
<meta charset="utf-8">
<title>{{ attributes.title }} - {{ siteTitle }}</title>
<meta name="description" content="Simplest Blog in Nodejs">
<meta name="author" content="Guillermo Pages">
<link rel="stylesheet" href="/css/styles.css?v=1.0">
<link rel="stylesheet" href="/css/highlight-js-github.css">
</head>
<body>
<div id="main-container">
<header>
<a href="{{ blogUrlPathPrefix }}"><h1>{{ siteTitle }}</h1></a>
</header>
<div id="content">
<h2>{{ attributes.title }}</h2>
<div class="post">
{{ bodyHtml }}
</div>
</div>
</div>
</body>
</html>