album/templates/not_found.rs.html
Rasmus Kaj e5b749795e Use a custom 404 page.
Mainly, provide a login link on it.
2017-06-27 00:13:48 +02:00

12 lines
261 B
HTML

@use templates::page_base;
@(user: Option<String>)
@:page_base("Not found", &[], &user, {
<p>No page or photo match that url.</p>
@if user.is_none() {
<p>At least nothing publicly visible, you might try
<a href="/login">logging in</a>.</p>
}
})