Files @ 4b5ca3dcf102
Branch filter:

Location: majic-ansible-roles/roles/web_server/templates/index.html.j2

branko
MAR-197: Implement environment indicator for the web_server role:

- Now the environment indicator will also cover the default landing
page for the web server.
- Tweaked the landing page to look a bit better in terms of
margins (particularly important for the environment indicator).
<!DOCTYPE html>
<html>
<head>
<title>{{ web_default_title}}</title>
<style>

    body {
        margin: 0;
    }

    #welcome {
        width: 35em;
        margin: 0 auto;
        font-family: Tahoma, Verdana, Arial, sans-serif;
    }

</style>
</head>
<body>
<div id="welcome">
  <h1>{{ web_default_title}}</h1>
  <p>{{ web_default_message }}</p>
</div>
</body>
</html>