microblog.pub/templates/layout.html

44 lines
2.4 KiB
HTML
Raw Normal View History

2018-05-18 13:41:41 -05:00
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
2018-05-18 13:41:41 -05:00
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{% block title %}{{ config.NAME }}{% endblock %}'s microblog</title>
2018-05-18 13:41:41 -05:00
<link rel="stylesheet" href="https://unpkg.com/purecss@1.0.0/build/pure-min.css" integrity="sha384-nn4HPE8lTHyVtfCBi5yW9d20FjT8BJwUXyWZT9InLYax14RDjBj46LmSztkmNP9w" crossorigin="anonymous">
<link rel="authorization_endpoint" href="{{ config.ID }}/indieauth">
<link rel="token_endpoint" href="{{ config.ID }}/token">
{% if not request.args.get("older_than") and not request.args.get("previous_than") %}<link rel="canonical" href="https://{{ config.DOMAIN }}{{ request.path }}">{% endif %}
{% block links %}{% endblock %}
2018-05-21 14:10:21 -05:00
{% if config.THEME_COLOR %}<meta name="theme-color" content="{{ config.THEME_COLOR }}">{% endif %}
2018-07-03 16:54:16 -05:00
<style>{{ config.CSS | safe }}</style>
2018-07-15 14:25:09 -05:00
{% block headers %}{% endblock %}
2018-05-18 13:41:41 -05:00
</head>
<body>
2018-07-01 16:25:26 -05:00
{% if logged_in %}
2018-07-15 15:20:38 -05:00
<div id="admin-menu-wrapper">
2018-07-01 16:25:26 -05:00
<ul id="admin-menu">
2018-07-24 17:11:23 -05:00
<li class="left"><a href="/admin" class="admin-title{% if request.path.startswith("/admin") %} selected{% endif %}">Admin</a></li>
<li class="left"><a href="/" class="admin-title {% if not request.path.startswith("/admin") %} selected{% endif %}">Public</a></li>
2018-07-06 17:08:44 -05:00
<li class="left"><a href="/admin/new"{% if request.path == "/admin/new" %} class="selected" {% endif %}>New</a></li>
<li class="left"><a href="/admin/stream"{% if request.path == "/admin/stream" %} class="selected" {% endif %}>Stream</a></li>
<li class="left"><a href="/admin/notifications"{% if request.path == "/admin/notifications" %} class="selected" {% endif %}>Notifications</a></li>
<li class="left"><a href="/following"{% if request.path == "/following" %} class="selected" {% endif %}>Following</a></li>
<li class="left"><a href="/admin/lookup"{% if request.path == "/admin/lookup" %} class="selected" {% endif %}>Lookup</a></li>
2018-07-15 14:25:09 -05:00
<li class="left"><a href="/admin/logout">Logout</a></li>
2018-07-01 16:25:26 -05:00
</ul>
2018-07-15 15:20:38 -05:00
</div>
2018-07-01 16:25:26 -05:00
{% endif %}
2018-05-18 13:41:41 -05:00
<div class="base-container">
{% block content %}{% endblock %}
</div>
<div class="footer">
<div>
Powered by <a href="https://microblog.pub">microblog.pub</a> <small class="microblogpub-version"><code>{{ microblogpub_version }}</code></small> (<a href="https://github.com/tsileo/microblog.pub">source code</a>) and the <a href="https://activitypub.rocks/">ActivityPub</a> protocol
2018-05-18 13:41:41 -05:00
</div>
</div>
</body>
</html>