18 lines
365 B
Plaintext
18 lines
365 B
Plaintext
![]() |
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>{{ title }}</title>
|
||
|
<link rel="stylesheet" href="style.css">
|
||
|
</head>
|
||
|
<body>
|
||
|
<header>
|
||
|
<h1>{{ title }}</h1>
|
||
|
</header>
|
||
|
<main>
|
||
|
{{ content | safe }}
|
||
|
</main>
|
||
|
</body>
|
||
|
</html>
|