| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <f:comment><!-- A common error layout for 403, 404, 500 errors... --></f:comment>
- <!DOCTYPE html>
- <html dir="ltr" lang="fr-FR">
- <head>
- <meta charset="utf-8">
- <title>{siteTitle}</title>
- <meta name="generator" content="TYPO3 CMS" />
- <meta name="robots" content="index,follow,archive" />
- <meta name="viewport" content="width=device-width" />
- <meta name="twitter:card" content="summary" />
- <style>
- #errpage {
- width: 100%;
- font-family: 'Source Sans Pro',sans-serif;;
- }
- #errpage header {
- display: flex;
- flex-direction: row;
- justify-content: center;
- align-items: center;
- height: 200px;
- }
- #errpage .title {
- color: #4d4d4d;
- }
- #errpage .message {
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- text-align: center;
- min-height: 200px;
- line-height: 2em;
- font-size: 17px;
- padding: 24px 0;
- background-color: #ffe6cc;
- }
- #errpage a {
- margin-top: 16px;
- font-weight: bold;
- color: #b35c00;
- text-decoration: none;
- padding: 3px;
- }
- #errpage a:hover {
- color: #994f00;
- }
- </style>
- </head>
- <body>
- <div id="errpage">
- <header>
- <h1 class="title">{siteTitle}</h1>
- </header>
- <div class="message">
- <f:render section="Message" />
- </div>
- </div>
- </body>
|