1
Fork 0
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
theorangeone.net-legacy/theme/templates/page-no-js.html

25 lines
854 B
HTML
Raw Normal View History

2016-05-22 18:28:01 +01:00
<!DOCTYPE html>
<html>
<head>
2016-06-12 11:34:20 +01:00
<meta http-equiv="content-type" content="text/html;charset=UTF-8" />
2016-05-22 18:28:01 +01:00
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
2016-06-12 11:34:20 +01:00
<meta http-equiv="Content-Language" content="en" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
<link rel="alternate" type="application/atom+xml" href="/feed.atom" />
2016-05-22 18:28:01 +01:00
2016-06-12 11:34:20 +01:00
{% for tag, value in page.ogtags %}
<meta property="{{ tag }}" content="{{ value|striptags|e }}" />
{% endfor %}
2016-05-22 18:28:01 +01:00
2016-06-12 11:34:20 +01:00
<title>{{ page.title }} - {{ SITENAME }}</title>
<link rel="stylesheet" href="/static/css/index.css" type="text/css" />
<link rel="shortcut icon" href="/static/img/logo-transparent.png" type="image/png" />
2016-05-22 18:28:01 +01:00
</head>
<body>
{{ page.content }}
{% include "extras/footer.html" %}
</body>
</html>