12345678910111213141516171819202122232425 |
- {{define "403"}}
- <!DOCTYPE html>
- <html lang="fr" dir="ltr">
- <head>
- <title>{{.SiteName}}: {{.FullyQualifiedShortURL}}</title>
- <link rel="shortcut icon" href="{{asset "" "favicon.ico"}}">
- <link rel="stylesheet" type="text/css" href="{{asset "css" "plusvite.css"}}" />
- <link rel="stylesheet" type="text/css" href="{{asset "css" "riff.css"}}" />
- {{template "analytics" .}}
- {{template "inlinecss"}}
- <meta http-equiv="Refresh" content="{{.RefreshDelay}};{{.SiteBaseURL}}" />
- </head>
- <body>
- <div id="box">
- <h1>{{.FullyQualifiedShortURL}}</h1>
- <p>L'URL de destination est valide mais a été bloqué par son titulaire.</p>
- <p>Dans quelques secondes, vous serez redirigé vers la page d'accueil du site.</p>
- <p><a href="{{.SiteBaseURL}}">Retour</a></p>
- </div>
- {{template "footer" .}}
- </body>
- </html>
- {{end}}
|