2018-05-13 18:18:09 +02:00
|
|
|
{% load static %}
|
|
|
|
|
2018-04-24 00:16:22 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{% block title %}brutaldon{% endblock %}</title>
|
2018-04-25 15:31:55 +02:00
|
|
|
{% if not fullbrutalism %}
|
|
|
|
<link rel="stylesheet"
|
|
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.0/css/bulma.min.css">
|
|
|
|
<link rel="stylesheet"
|
|
|
|
href="https://cdn.jsdelivr.net/npm/fork-awesome@1.0.11/css/fork-awesome.min.css"
|
|
|
|
integrity="sha256-MGU/JUq/40CFrfxjXb5pZjpoZmxiP2KuICN5ElLFNd8="
|
|
|
|
crossorigin="anonymous">
|
2018-05-13 18:18:09 +02:00
|
|
|
<link rel="stylesheet" href="{% static "css/brutaldon.css" %}">
|
2018-04-25 15:31:55 +02:00
|
|
|
{% else %}
|
2018-05-13 18:18:09 +02:00
|
|
|
<link rel="stylesheet" href="{% static "css/fullbrutalism.css" %}" >
|
2018-04-25 15:31:55 +02:00
|
|
|
{% endif %}
|
2018-05-13 18:18:09 +02:00
|
|
|
<link rel="icon" href="{% static "images/brutaldon.png" %}" type="image/png">
|
2018-04-24 00:16:22 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-04-25 01:20:22 +02:00
|
|
|
{% block navbar %}
|
2018-04-25 15:31:55 +02:00
|
|
|
<nav class="navbar" role="navigation" aria-label="main navigation">
|
2018-04-25 01:20:22 +02:00
|
|
|
<div class="navbar-brand">
|
|
|
|
<a class="navbar-item">
|
2018-05-13 18:18:09 +02:00
|
|
|
<img src="{% static "images/brutaldon.png" %}"
|
2018-04-25 01:20:22 +02:00
|
|
|
width="32" height="32" alt="Brutaldon">
|
|
|
|
</a>
|
2018-05-23 15:18:23 +02:00
|
|
|
<a role="button" class="navbar-burger" aria-label="menu"
|
|
|
|
aria-expanded="false" data-target="navMenu">
|
|
|
|
<span aria-hidden="true"></span>
|
|
|
|
<span aria-hidden="true"></span>
|
|
|
|
<span aria-hidden="true"></span>
|
|
|
|
</a> <!-- navbar items, navbar burger... -->
|
2018-04-25 01:20:22 +02:00
|
|
|
</div>
|
2018-05-23 15:18:23 +02:00
|
|
|
<div class="navbar-menu" id="navMenu">
|
2018-04-25 01:20:22 +02:00
|
|
|
<!-- navbar start, navbar end -->
|
|
|
|
<div class="navbar-start">
|
|
|
|
<a href="{% url "home" %}" class="navbar-item">Home</a>
|
|
|
|
<a class="navbar-item" href="{% url "note" %}">Notifications</a>
|
|
|
|
<a class="navbar-item" href="{% url "local" %}">Local</a>
|
|
|
|
<a class="navbar-item" href="{% url "fed" %}">Federated</a>
|
|
|
|
</div>
|
|
|
|
<div class="navbar-end" >
|
2018-04-25 22:45:46 +02:00
|
|
|
<a class="navbar-item" href="{% url "settings" %}">Settings</a>
|
2018-04-25 01:20:22 +02:00
|
|
|
<a class="navbar-item" href="{% url "logout" %}">Log out</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</nav>
|
|
|
|
{% endblock %}
|
2018-04-24 00:16:22 +02:00
|
|
|
<section class="section">
|
|
|
|
<div class="container">
|
|
|
|
{% block content %}
|
|
|
|
<h1 class="title">
|
|
|
|
Title
|
|
|
|
</h1>
|
|
|
|
<p class="subtitle">
|
2018-04-24 15:12:13 +02:00
|
|
|
Brutaldon is totally a thing.
|
2018-04-24 00:16:22 +02:00
|
|
|
</p>
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
</section>
|
2018-05-23 15:18:23 +02:00
|
|
|
{% if not fullbrutalism %}
|
|
|
|
<script type="application/javascript">
|
|
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
|
|
|
|
|
|
// Get all "navbar-burger" elements
|
|
|
|
var $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
|
|
|
|
|
|
|
|
// Check if there are any navbar burgers
|
|
|
|
if ($navbarBurgers.length > 0) {
|
|
|
|
|
|
|
|
// Add a click event on each of them
|
|
|
|
$navbarBurgers.forEach(function ($el) {
|
|
|
|
$el.addEventListener('click', function () {
|
|
|
|
|
|
|
|
// Get the target from the "data-target" attribute
|
|
|
|
var target = $el.dataset.target;
|
|
|
|
var $target = document.getElementById(target);
|
|
|
|
|
|
|
|
// Toggle the class on both the "navbar-burger" and the "navbar-menu"
|
|
|
|
$el.classList.toggle('is-active');
|
|
|
|
$target.classList.toggle('is-active');
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
|
|
|
|
2018-04-24 00:16:22 +02:00
|
|
|
</body>
|
|
|
|
</html>
|