-
Notifications
You must be signed in to change notification settings - Fork 100
Expand file tree
/
Copy pathlayout.html.twig
More file actions
55 lines (46 loc) · 2.34 KB
/
layout.html.twig
File metadata and controls
55 lines (46 loc) · 2.34 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
51
52
53
54
55
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"/>
<meta name="description"
content="{% block pageDescription %}PHPDocker.io is a PHP development environment generator built with Docker containers{% endblock %}"/>
<meta name="author" content="PHPDocker.io"/>
<meta name="keywords" content="PHP, Docker, development, environment, generator, phpdocker">
<!--[if IE]>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<![endif]-->
<title>PHPDocker.io{% block pageTitle %}{% endblock %}</title>
{% include 'analytics.html.twig' %}
<link rel="icon" type="image/svg+xml" href="/images/favicon.svg"/>
<link rel="stylesheet" href="/vendor/font-awesome/css/font-awesome.min.css"/>
<link rel="stylesheet" href="/css/app.css"/>
<link rel="stylesheet" href="/vendor/bootstrap-multiselect/dist/css/bootstrap-multiselect.css"/>
</head>
<body>
<header class="bg-[#080d19] border-b border-[#1c3050] py-4">
<div class="px-4 max-w-screen-xl mx-auto">
<a href="{{ path('home') }}" class="no-underline inline-block">
<img src="/images/logo.svg" alt="PHPDocker.io" class="h-10 w-auto"/>
</a>
<p class="text-[#94a3b8] text-sm mt-0.5">A PHP development environment generator built with Docker containers.</p>
</div>
</header>
<main class="px-4 py-6 max-w-screen-xl mx-auto">{% block body %}{% endblock %}</main>
<footer class="border-t border-[#1c3050] bg-[#080d19] py-4 mt-8">
<div class="px-4 max-w-screen-xl mx-auto flex flex-col sm:flex-row items-center justify-between gap-2 text-[#94a3b8] text-sm">
<a href="{{ path('home') }}" class="text-[#94a3b8] hover:text-[#38bdf8] no-underline font-normal">
PHPDocker.io © {{ "now"|date("Y") }}
</a>
<a href="https://github.com/phpdocker-io/phpdocker.io" target="_blank"
class="text-[#94a3b8] hover:text-[#38bdf8] no-underline font-normal">
<span class="fa fa-github"></span> Github
</a>
</div>
</footer>
<script src="/vendor/jquery/dist/jquery.min.js"></script>
<script src="/vendor/bootstrap-multiselect/dist/js/bootstrap-multiselect.js"></script>
<script src="/js/main-form.js"></script>
<script src="/js/tools.js"></script>
</body>
</html>