2022-06-19 05:03:51 +02:00

29 lines
781 B
Django/Jinja

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ webpage_title }}</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:200,600" rel="stylesheet">
<!-- Styles -->
<link href="styles.css" rel="stylesheet">
</head>
<body>
<div class="flex-center position-ref full-height">
<div class="content">
<div class="title m-b-md">
{{ webpage_title }}
</div>
<div class="links">
<a href="{{ webpage_url }}">{{ webpage_text }}</a>
</div>
</div>
</div>
</body>
</html>