_ ->
conn
|> put_status(404)
- |> render_error(:not_found, "Notice not found")
+ |> render("error.html", %{message: "Post not found.", meta: ""})
end
end
_ ->
conn
|> put_status(404)
- |> render_error(:not_found, "User not found")
+ |> render("error.html", %{message: "User not found.", meta: ""})
end
end
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,minimal-ui" />
<title><%= Pleroma.Config.get([:instance, :name]) %></title>
- <%= Phoenix.HTML.raw(@meta || "") %>
+ <%= Phoenix.HTML.raw(assigns[:meta] || "") %>
<link rel="stylesheet" href="/static/static-fe.css">
</head>
<body>
--- /dev/null
+<header>
+ <h1><%= gettext("Oops") %></h1>
+</header>
+
+<main>
+ <p><%= @message %></p>
+</main>