1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/eleventy_ynh.git synced 2024-09-03 18:26:32 +02:00
eleventy_ynh/sources/_includes/base.njk
2023-05-12 18:49:28 +02:00

17 lines
No EOL
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>