roydejong/Enlighten

View on GitHub
static/not_found.html

Summary

Maintainability
Test Coverage
<!doctype html>
<html lang="nl" dir="ltr">
<head>

    <meta charset="utf-8" />
    <title>Page not found</title>

    <style>
        @import url(//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css);
        @import url(//fonts.googleapis.com/css?family=Lato:300,400,700);
        body {
            font-family: 'Lato', sans-serif;
            font-size: 24px;
            color: #444;
            padding: 50px;
        }
        h1 {
            font-weight: 500;
            margin: 0 0 30px 0;
            color: #111;
        }
        .lite {
            color: #888;
        }
        a {
            color: #2e8ece;
            text-decoration: none;
            border-bottom: 2px solid #2e8ece;
        }
    </style>

</head>
<body>

    <h1>
        <i class="fa fa-question-circle"></i>
        Page not found.
    </h1>

    <p>The page you requested does not (currently) exist.</p>
    <p class="lite">(Check the web address and try again, or go back to the <a href="/">homepage</a>.)</p>

</body>
</html>