You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
781 B
29 lines
781 B
2 years ago
|
<!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>
|