-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.twig
More file actions
50 lines (45 loc) · 1.01 KB
/
index.twig
File metadata and controls
50 lines (45 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}{{ title ?? 'Your title' }}{% endblock %} | {{ app.app_title }}</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
max-width: 800px;
margin: 80px auto;
padding: 0 24px;
color: #1a1a1a;
}
h1 {
font-size: 2rem;
margin-bottom: 0.25rem;
}
.meta {
color: #666;
margin-bottom: 2rem;
}
.greeting {
font-size: 1.25rem;
margin-bottom: 1rem;
}
.items {
list-style: none;
padding: 0;
}
.items li {
padding: 10px 16px;
background: #f5f5f5;
border-radius: 6px;
margin-bottom: 8px;
}
</style>
{% block head %}{% endblock %}
</head>
<body>
<main>
{% block content %}{% endblock %}
</main>
</body>
</html>