pastebin/templates/not_found.rs.html

10 lines
221 B
HTML
Raw Normal View History

2019-10-24 12:15:53 +00:00
@use crate::models::session::Session;
2019-04-17 07:41:33 +00:00
@use crate::templates::{header, footer};
2019-10-24 12:15:53 +00:00
@(session: &Session)
2019-04-17 07:41:33 +00:00
2019-10-24 12:15:53 +00:00
@:header(session)
2019-04-17 07:41:33 +00:00
<h1>Paste not found</h1>
<p>It may have been automatically deleted after 24 hours.
2019-10-24 12:15:53 +00:00
@:footer(session)