mirror of
				https://git.sr.ht/~tsileo/microblog.pub
				synced 2025-06-05 21:59:23 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			60 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE HTML>
 | 
						|
<html lang="en">
 | 
						|
<head>
 | 
						|
<meta charset="utf-8">
 | 
						|
<meta http-equiv="x-ua-compatible" content="ie=edge">
 | 
						|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
 | 
						|
<link rel="stylesheet" href="/static/css/main.css?v={{ CSS_HASH }}">
 | 
						|
<link rel="alternate" title="{{ local_actor.display_name}}'s microblog" type="application/json" href="{{ url_for("json_feed") }}" />
 | 
						|
<link rel="alternate" href="{{ url_for("rss_feed") }}" type="application/rss+xml" title="{{ local_actor.display_name}}'s microblog">
 | 
						|
<link rel="alternate" href="{{ url_for("atom_feed") }}" type="application/atom+xml" title="{{ local_actor.display_name}}'s microblog">
 | 
						|
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
 | 
						|
<style>{{ highlight_css }}</style>
 | 
						|
{% block head %}{% endblock %}
 | 
						|
</head>
 | 
						|
<body>
 | 
						|
<div id="main">
 | 
						|
<main{%- block main_tag %}{%- endblock %}>
 | 
						|
{% if is_admin %}
 | 
						|
<div id="admin">
 | 
						|
{% macro admin_link(url, text) %}
 | 
						|
{% set url_for = request.app.router.url_path_for(url) %}
 | 
						|
<a href="{{ url_for }}" {% if request.url.path == url_for %}class="active"{% endif %}>{{ text }}</a>
 | 
						|
{% endmacro %}
 | 
						|
<div class="admin-menu">
 | 
						|
<nav class="flexbox">
 | 
						|
    <ul>
 | 
						|
        <li>{{ admin_link("index", "Public") }}</li>
 | 
						|
        <li>{{ admin_link("admin_new", "New") }}</li>
 | 
						|
        <li>{{ admin_link("admin_stream", "Stream") }}</li>
 | 
						|
        <li>{{ admin_link("admin_inbox", "Inbox") }} / {{ admin_link("admin_outbox", "Outbox") }}</li>
 | 
						|
        <li>{{ admin_link("admin_direct_messages", "DMs") }}</li>
 | 
						|
        <li>{{ admin_link("get_notifications", "Notifications") }} {% if notifications_count %}({{ notifications_count }}){% endif %}</li>
 | 
						|
        <li>{{ admin_link("get_lookup", "Lookup") }}</li>
 | 
						|
        <li>{{ admin_link("admin_bookmarks", "Bookmarks") }}</li>
 | 
						|
        <li><a href="{{ url_for("logout")}}">Logout</a></li>
 | 
						|
    </ul>
 | 
						|
</nav>
 | 
						|
</div>
 | 
						|
 | 
						|
</div>
 | 
						|
{% endif %}
 | 
						|
{% block content %}{% endblock %}
 | 
						|
</main>
 | 
						|
</div>
 | 
						|
 | 
						|
<footer class="footer">
 | 
						|
    <div class="box">
 | 
						|
    {% if custom_footer %}
 | 
						|
        {{ custom_footer | safe }}
 | 
						|
    {% else %}
 | 
						|
        Powered by <a href="https://docs.microblog.pub">microblog.pub</a> <small class="microblogpub-version"><code>{{ microblogpub_version }}</code></small> and the <a href="https://activitypub.rocks/">ActivityPub</a> protocol. <a href="{{ url_for("login") }}">Admin</a>.
 | 
						|
    {% endif %}
 | 
						|
    </div>
 | 
						|
</footer>
 | 
						|
{% if is_admin %}
 | 
						|
<script src="/static/common-admin.js?v={{ JS_HASH }}"></script>
 | 
						|
{% endif %}
 | 
						|
</body>
 | 
						|
</html>
 |