mirror of
https://github.com/YunoHost-Apps/eleventy_ynh.git
synced 2024-09-03 18:26:32 +02:00
17 lines
364 B
Text
17 lines
364 B
Text
|
<!doctype html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="utf-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
|
<title>{{ title }}}</title>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<head>
|
||
|
<h1>{{ title }}</h1>
|
||
|
<main>
|
||
|
{{ content | safe }}
|
||
|
</main>
|
||
|
</head>
|
||
|
</body>
|
||
|
</html>
|