1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//! Error page renderer trait and context.
use StatusCode;
use Markup;
use HashMap;
/// Context passed to error page renderers.
///
/// Contains all the information available about the error, allowing
/// renderers to produce rich error pages.
/// Trait for providing custom error pages.
///
/// Implement this trait to override the default error pages. Each method
/// receives an [`ErrorContext`] with information about the error.
///
/// The default implementation (via [`super::DefaultErrorPages`]) renders
/// styled HTML pages using Maud and Tailwind.
///
/// # Examples
///
/// ```rust,no_run
/// use autumn_web::error_pages::{ErrorPageRenderer, ErrorContext};
/// use maud::{Markup, html};
///
/// struct BrandedErrors;
///
/// impl ErrorPageRenderer for BrandedErrors {
/// fn render_error(&self, ctx: &ErrorContext) -> Markup {
/// html! {
/// html {
/// body {
/// h1 { (ctx.status.as_u16()) " — " (ctx.path) }
/// a href="/" { "Go home" }
/// }
/// }
/// }
/// }
/// }
/// ```