e5b749795e
Mainly, provide a login link on it.
12 lines
261 B
HTML
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>
|
|
}
|
|
})
|