Files @ ac8884ab98ca
Branch filter:

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

branko
MAR-218: Fix some minor issues for the test runner script:

- No need to use the $ variable syntax for arithmetic operations.
- Use correct form when printing the list of roles (@ -> *).
- Fix missing quote when assembling the list of roles.
<!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>