about summary refs log tree commit diff
path: root/src/ci/citool/templates/layout.askama
blob: 3b3b6f23741d427e98e4c24cbe0dbdebe32c2f11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
<head>
  <meta charset="UTF-8">
  <title>Rust CI Test Dashboard</title>
  <style>
    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.6;
        max-width: 1500px;
        margin: 0 auto;
        padding: 20px;
        background: #F5F5F5;
    }
    {% block styles %}{% endblock %}
  </style>
</head>

<body>
{% block content %}{% endblock %}
{% block scripts %}{% endblock %}
</body>
</html>