Have a different 404 page for pages and posts
This commit is contained in:
parent
75cc11741e
commit
427ad62b3b
5 changed files with 30 additions and 6 deletions
|
@ -41,8 +41,17 @@ pub(crate) struct PostTemplate {
|
|||
}
|
||||
|
||||
#[derive(Template)]
|
||||
#[template(path = "notfound.html")]
|
||||
pub(crate) struct NotFoundTemplate {
|
||||
#[template(path = "pagenotfound.html")]
|
||||
pub(crate) struct PageNotFoundTemplate {
|
||||
menu: Vec<menu_entry::Model>,
|
||||
slug: String,
|
||||
year: String,
|
||||
settings: settings::Model
|
||||
}
|
||||
|
||||
#[derive(Template)]
|
||||
#[template(path = "postnotfound.html")]
|
||||
pub(crate) struct PostNotFoundTemplate {
|
||||
menu: Vec<menu_entry::Model>,
|
||||
slug: String,
|
||||
year: String,
|
||||
|
|
|
@ -10,7 +10,7 @@ use sea_orm::*;
|
|||
|
||||
use chrono::{Utc, Datelike};
|
||||
|
||||
use super::{PageTemplate, NotFoundTemplate};
|
||||
use super::{PageTemplate, PageNotFoundTemplate};
|
||||
|
||||
pub(crate) async fn resolver(
|
||||
Path(slug): Path<String>,
|
||||
|
@ -45,7 +45,7 @@ pub(crate) async fn resolver(
|
|||
Ok(page_result) => {
|
||||
match page_result {
|
||||
Some(page_result) => page_result,
|
||||
None => return (StatusCode::NOT_FOUND, NotFoundTemplate { slug, year: Utc::now().date_naive().year().to_string(), menu, settings }).into_response(),
|
||||
None => return (StatusCode::NOT_FOUND, PageNotFoundTemplate { slug, year: Utc::now().date_naive().year().to_string(), menu, settings }).into_response(),
|
||||
}
|
||||
},
|
||||
Err(e) => {
|
||||
|
|
|
@ -10,7 +10,7 @@ use sea_orm::*;
|
|||
|
||||
use chrono::{Utc, Datelike};
|
||||
|
||||
use super::{PostTemplate, NotFoundTemplate};
|
||||
use super::{PostTemplate, PostNotFoundTemplate};
|
||||
|
||||
pub(crate) async fn resolver(
|
||||
Path(slug): Path<String>,
|
||||
|
@ -45,7 +45,7 @@ pub(crate) async fn resolver(
|
|||
Ok(post_result) => {
|
||||
match post_result {
|
||||
Some(post_result) => post_result,
|
||||
None => return (StatusCode::NOT_FOUND, NotFoundTemplate { slug, year: Utc::now().date_naive().year().to_string(), menu, settings }).into_response(),
|
||||
None => return (StatusCode::NOT_FOUND, PostNotFoundTemplate { slug, year: Utc::now().date_naive().year().to_string(), menu, settings }).into_response(),
|
||||
}
|
||||
},
|
||||
Err(e) => {
|
||||
|
|
15
templates/postnotfound.html
Normal file
15
templates/postnotfound.html
Normal file
|
@ -0,0 +1,15 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}404{% endblock %}
|
||||
|
||||
{% block description %}
|
||||
This post wasn't found!
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<h1>Post not found!</h1>
|
||||
|
||||
<p><code>{{ slug }}</code> was not found! Would you like to view other <a href="/posts">posts</a> or go <a href="/">home</a>?</p>
|
||||
|
||||
{% endblock %}
|
Reference in a new issue