16 lines
326 B
Twig
16 lines
326 B
Twig
|
<!DOCTYPE html>
|
||
|
<html lang="{{ site.locale | lang_base }}">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<link rel="stylesheet" href="{{ theme.url }}/stylesheets/all.css" type="text/css" media="all">
|
||
|
<title>{{ title }}</title>
|
||
|
</head>
|
||
|
<body class="preview">
|
||
|
<div class="standalone">
|
||
|
<section>
|
||
|
{{ content }}
|
||
|
</section>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|