20 lines
509 B
HTML
20 lines
509 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<meta name="viewport" content="width=device-width,minimum-scale=1">
|
||
|
<meta charset="utf-8">
|
||
|
<title>{{ section.title ~ " | " ~ section.description }}</title>
|
||
|
|
||
|
<link rel="stylesheet" href="css/style.css">
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<h1>{{ section.title }}</h1>
|
||
|
<p>{{ section.description }}</p>
|
||
|
|
||
|
<div class="flex wrap width-content justify-content">
|
||
|
{{ section.content | safe }}
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|