2018-12-06 18:54:16 +01:00
|
|
|
@use template_utils::*;
|
|
|
|
|
|
|
|
@(ctx: BaseContext, title: &str, head: Content, header: Content, content: Content)
|
2018-09-09 22:41:55 +02:00
|
|
|
|
2018-05-09 19:53:12 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
2018-05-19 16:26:56 +02:00
|
|
|
<meta charset="utf-8" />
|
2018-12-06 18:54:16 +01:00
|
|
|
<title>@i18n!(ctx.1, title) ⋅ @i18n!(ctx.1, "Plume")</title>
|
2018-09-03 15:59:02 +02:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2018-09-04 18:09:31 +02:00
|
|
|
<link rel="stylesheet" href="/static/css/main.css" />
|
|
|
|
<link rel="stylesheet" href="/static/css/feather.css" />
|
2018-09-10 16:08:22 +02:00
|
|
|
<link rel="manifest" href="/manifest.json" />
|
2018-10-09 20:23:36 +02:00
|
|
|
<link rel="icon" type="image/png" href="/static/icons/trwnh/feather-filled/plumeFeatherFilled64.png">
|
2018-12-06 18:54:16 +01:00
|
|
|
@:head()
|
2018-05-09 19:53:12 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-05-10 22:31:52 +02:00
|
|
|
<header>
|
2018-09-01 16:11:42 +02:00
|
|
|
<nav id="menu">
|
2018-12-06 18:54:16 +01:00
|
|
|
<a href="#" aria-label="@i18n!(ctx.1, "Menu")" title="@i18n!(ctx.1, "Menu")"><i class="icon icon-menu"></i></a>
|
2018-05-10 22:31:52 +02:00
|
|
|
</nav>
|
2018-09-01 16:11:42 +02:00
|
|
|
<div id="content">
|
|
|
|
<nav>
|
2018-10-09 16:37:40 +02:00
|
|
|
<a href="/" class="title">
|
|
|
|
<img src="/static/icons/trwnh/feather/plumeFeather256.png">
|
2018-12-06 18:54:16 +01:00
|
|
|
<p>@i18n!(ctx.1, "Plume")</p>
|
2018-10-09 16:37:40 +02:00
|
|
|
</a>
|
2018-09-01 16:11:42 +02:00
|
|
|
<hr/>
|
2018-12-06 18:54:16 +01:00
|
|
|
@:header()
|
2018-09-01 16:11:42 +02:00
|
|
|
</nav>
|
|
|
|
<nav>
|
2018-12-06 18:54:16 +01:00
|
|
|
@if ctx.2.is_some() {
|
2018-09-03 15:59:02 +02:00
|
|
|
<a href="/dashboard">
|
2018-12-06 18:54:16 +01:00
|
|
|
<i class="icon icon-home" aria-label="@i18n!(ctx.1, "Dashboard")"></i>
|
|
|
|
<span class="mobile-label">@i18n!(ctx.1, "Dashboard")</span>
|
2018-09-03 15:59:02 +02:00
|
|
|
</a>
|
|
|
|
<a href="/notifications">
|
2018-12-06 18:54:16 +01:00
|
|
|
<i class="icon icon-bell" aria-label="@i18n!(ctx.1, "Notifications")"></i>
|
|
|
|
<span class="mobile-label">@i18n!(ctx.1, "Notifications")</span>
|
2018-09-03 15:59:02 +02:00
|
|
|
</a>
|
|
|
|
<a href="/logout">
|
2018-12-06 18:54:16 +01:00
|
|
|
<i class="icon icon-log-out" aria-label="@i18n!(ctx.1, "Log Out")"></i>
|
|
|
|
<span class="mobile-label">@i18n!(ctx.1, "Log Out")</span>
|
2018-09-03 15:59:02 +02:00
|
|
|
</a>
|
2018-12-06 18:54:16 +01:00
|
|
|
<a href="/me" title="@i18n!(ctx.1, "My account")">
|
|
|
|
@avatar(ctx.0, &ctx.2.clone().unwrap(), Size::Small, false, &ctx.1)
|
|
|
|
<span class="mobile-label">@i18n!(ctx.1, "My account")</span>
|
2018-09-03 15:59:02 +02:00
|
|
|
</a>
|
2018-12-06 18:54:16 +01:00
|
|
|
} else {
|
2018-09-04 18:09:31 +02:00
|
|
|
<a href="/login">
|
|
|
|
<i class="icon icon-log-in"></i>
|
2018-12-06 18:54:16 +01:00
|
|
|
<span class="mobile-label">@i18n!(ctx.1, "Log In")</span>
|
2018-09-04 18:09:31 +02:00
|
|
|
</a>
|
|
|
|
<a href="/users/new">
|
|
|
|
<i class="icon icon-user-plus"></i>
|
2018-12-06 18:54:16 +01:00
|
|
|
<span class="mobile-label">@i18n!(ctx.1, "Register")</span>
|
2018-09-04 18:09:31 +02:00
|
|
|
</a>
|
2018-12-06 18:54:16 +01:00
|
|
|
}
|
2018-09-01 16:11:42 +02:00
|
|
|
</nav>
|
|
|
|
</div>
|
2018-05-10 22:31:52 +02:00
|
|
|
</header>
|
|
|
|
<main>
|
2018-12-06 18:54:16 +01:00
|
|
|
@:content()
|
2018-05-10 22:31:52 +02:00
|
|
|
</main>
|
2018-07-27 14:08:39 +02:00
|
|
|
<footer>
|
2018-12-06 18:54:16 +01:00
|
|
|
<span>@concat!("Plume ", env!("CARGO_PKG_VERSION"))</span>
|
|
|
|
<a href="/about">@i18n!(ctx.1, "About this instance")</a>
|
|
|
|
<a href="https://github.com/Plume-org/Plume">@i18n!(ctx.1, "Source code")</a>
|
|
|
|
<a href="https://riot.im/app/#/room/#plume:disroot.org">@i18n!(ctx.1, "Matrix room")</a>
|
|
|
|
@if ctx.2.clone().map(|a| a.is_admin).unwrap_or(false) {
|
|
|
|
<a href="/admin">@i18n!(ctx.1, "Administration")</a>
|
|
|
|
}
|
2018-07-27 14:08:39 +02:00
|
|
|
</footer>
|
2018-09-08 15:05:38 +02:00
|
|
|
<script src="/static/js/menu.js"></script>
|
2018-05-09 19:53:12 +02:00
|
|
|
</body>
|
|
|
|
</html>
|