37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
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" href="/fonts/poppins.css">
|
|
<link rel="stylesheet" href="/fonts/fira-sans.css">
|
|
<link rel="stylesheet" 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="https://platypush.tech" title="Home">
|
|
<img src="/img/icon.png" class="icon" alt="Logo">
|
|
</a>
|
|
|
|
<a href="/" title="Blog">
|
|
<span class="title">Blog</span>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="right">
|
|
<a href="/rss" target="_blank" title="RSS feeds">
|
|
<div class="icon"></div>
|
|
</a>
|
|
</div>
|
|
</header>
|
|
{% endif %}
|