ErrorPage.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <f:comment><!-- A common error layout for 403, 404, 500 errors... --></f:comment>
  2. <!DOCTYPE html>
  3. <html dir="ltr" lang="fr-FR">
  4. <head>
  5. <meta charset="utf-8">
  6. <title>{siteTitle}</title>
  7. <meta name="generator" content="TYPO3 CMS" />
  8. <meta name="robots" content="index,follow,archive" />
  9. <meta name="viewport" content="width=device-width" />
  10. <meta name="twitter:card" content="summary" />
  11. <style>
  12. #errpage {
  13. width: 100%;
  14. font-family: 'Source Sans Pro',sans-serif;;
  15. }
  16. #errpage header {
  17. display: flex;
  18. flex-direction: row;
  19. justify-content: center;
  20. align-items: center;
  21. height: 200px;
  22. }
  23. #errpage .title {
  24. color: #4d4d4d;
  25. }
  26. #errpage .message {
  27. display: flex;
  28. flex-direction: column;
  29. justify-content: center;
  30. align-items: center;
  31. text-align: center;
  32. min-height: 200px;
  33. line-height: 2em;
  34. font-size: 17px;
  35. padding: 24px 0;
  36. background-color: #ffe6cc;
  37. }
  38. #errpage a {
  39. margin-top: 16px;
  40. font-weight: bold;
  41. color: #b35c00;
  42. text-decoration: none;
  43. padding: 3px;
  44. }
  45. #errpage a:hover {
  46. color: #994f00;
  47. }
  48. </style>
  49. </head>
  50. <body>
  51. <div id="errpage">
  52. <header>
  53. <h1 class="title">{siteTitle}</h1>
  54. </header>
  55. <div class="message">
  56. <f:render section="Message" />
  57. </div>
  58. </div>
  59. </body>