You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
294 B

  1. @{
  2. Page.Title = "The page does not exist";
  3. Layout = "~/themes/" + Blog.Theme + "/_Layout.cshtml";
  4. Response.StatusCode = 404;
  5. }
  6. <article>
  7. <h1>The page doesn't exist</h1>
  8. <p>Sorry about that. </p>
  9. <p>
  10. <a href="~/">Go to the front page</a>
  11. </p>
  12. </article>