mirror of
https://git.joinplu.me/Plume/Plume.git
synced 2024-11-14 07:51:01 +00:00
70af57c6e1
All the template are now compiled at compile-time with the `ructe` crate. I preferred to use it instead of askama because it allows more complex Rust expressions, where askama only supports a small subset of expressions and doesn't allow them everywhere (for instance, `{{ macro!() | filter }}` would result in a parsing error). The diff is quite huge, but there is normally no changes in functionality. Fixes #161 and unblocks #110 and #273
76 lines
3.5 KiB
HTML
76 lines
3.5 KiB
HTML
@use template_utils::*;
|
|
|
|
@(ctx: BaseContext, title: &str, head: Content, header: Content, content: Content)
|
|
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<title>@i18n!(ctx.1, title) ⋅ @i18n!(ctx.1, "Plume")</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="stylesheet" href="/static/css/main.css" />
|
|
<link rel="stylesheet" href="/static/css/feather.css" />
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<link rel="icon" type="image/png" href="/static/icons/trwnh/feather-filled/plumeFeatherFilled64.png">
|
|
@:head()
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav id="menu">
|
|
<a href="#" aria-label="@i18n!(ctx.1, "Menu")" title="@i18n!(ctx.1, "Menu")"><i class="icon icon-menu"></i></a>
|
|
</nav>
|
|
<div id="content">
|
|
<nav>
|
|
<a href="/" class="title">
|
|
<img src="/static/icons/trwnh/feather/plumeFeather256.png">
|
|
<p>@i18n!(ctx.1, "Plume")</p>
|
|
</a>
|
|
<hr/>
|
|
@:header()
|
|
</nav>
|
|
<nav>
|
|
@if ctx.2.is_some() {
|
|
<a href="/dashboard">
|
|
<i class="icon icon-home" aria-label="@i18n!(ctx.1, "Dashboard")"></i>
|
|
<span class="mobile-label">@i18n!(ctx.1, "Dashboard")</span>
|
|
</a>
|
|
<a href="/notifications">
|
|
<i class="icon icon-bell" aria-label="@i18n!(ctx.1, "Notifications")"></i>
|
|
<span class="mobile-label">@i18n!(ctx.1, "Notifications")</span>
|
|
</a>
|
|
<a href="/logout">
|
|
<i class="icon icon-log-out" aria-label="@i18n!(ctx.1, "Log Out")"></i>
|
|
<span class="mobile-label">@i18n!(ctx.1, "Log Out")</span>
|
|
</a>
|
|
<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>
|
|
</a>
|
|
} else {
|
|
<a href="/login">
|
|
<i class="icon icon-log-in"></i>
|
|
<span class="mobile-label">@i18n!(ctx.1, "Log In")</span>
|
|
</a>
|
|
<a href="/users/new">
|
|
<i class="icon icon-user-plus"></i>
|
|
<span class="mobile-label">@i18n!(ctx.1, "Register")</span>
|
|
</a>
|
|
}
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
<main>
|
|
@:content()
|
|
</main>
|
|
<footer>
|
|
<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>
|
|
}
|
|
</footer>
|
|
<script src="/static/js/menu.js"></script>
|
|
</body>
|
|
</html>
|