blog/templates/common-head.html

33 lines
937 B
HTML

<!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>
{% if not skip_header %}
<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>
{% endif %}