Template improments, links, breadcrumbs for domain lookups

This commit is contained in:
Slatian
2023-02-24 00:01:51 +01:00
parent 6e1d3c02ef
commit da13444a2e
10 changed files with 112 additions and 8 deletions

View File

@ -285,7 +285,7 @@ async fn format_and_language_middleware<B>(
next.run(req).await
}
async fn hello_world_handler(
async fn not_found_handler(
State(arc_state): State<Arc<ServiceSharedState>>,
Extension(settings): Extension<TemplateSettings>,
) -> Response {
@ -297,7 +297,7 @@ async fn hello_world_handler(
).await
}
async fn not_found_handler(
async fn hello_world_handler(
State(arc_state): State<Arc<ServiceSharedState>>,
Extension(settings): Extension<TemplateSettings>,
) -> Response {