2021-01-26 01:49:49 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
|
|
|
|
<link rel="alternate" type="application/rss+xml" title="RSS Feed for the Platypush blog" href="/rss" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/common.css">
|
|
|
|
|
|
|
|
{% if styles %}
|
|
|
|
{% for style in styles %}
|
|
|
|
<link rel="stylesheet" type="text/css" href="{{ style }}">
|
|
|
|
{% endfor %}
|
|
|
|
{% endif %}
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
</head>
|
|
|
|
<body>
|
2021-01-26 02:17:25 +01:00
|
|
|
{% if not skip_header %}
|
2021-01-26 01:49:49 +01:00
|
|
|
<header>
|
|
|
|
<div class="left">
|
|
|
|
<a href="/">
|
|
|
|
<div class="icon"></div>
|
|
|
|
<div class="title">PlatyBlog</div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="right">
|
|
|
|
<a href="/rss" target="_blank">
|
|
|
|
<div class="icon"></div>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</header>
|
2021-01-26 02:12:43 +01:00
|
|
|
{% endif %}
|