-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.html.twig
81 lines (80 loc) · 3.06 KB
/
layout.html.twig
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
{% block head %}
<title>{% block title %} {{ project.name }}{% endblock %}</title>
{% endblock %}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
{{ renderBaseUrlHeader() }}
<link rel="icon" href="imgs/favicon.ico"/>
{% block stylesheets %}
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/prism.css">
{% endblock %}
{% block javascripts %}
<script src="js/jquery-3.6.0.min.js"></script>
<script src="js/js.cookie.min.js"></script>
<script src="js/main.js"></script>
<script src="js/fuse.js"></script>
<script src="js/prism.js"></script>
<script src="js/search.js"></script>
<script src="js/methodlinks.js"></script>
<script defer src="js/searchIndex.js"></script>
{% endblock %}
</head>
<body id="top">
<main>
<div id="left">
{% include 'sidebar.html.twig' %}
</div>
<div id="splitter"></div>
<div id="right">
<div id="rightInner">
<section data-search-form class="search">
<input type="search" class="search__field" placeholder="Loading .." />
<section data-search-results class="search-results search-results--hidden">
<header class="search-results__header">
<button class="search-results__close">close</button>
<h2 class="search-results__title">Search results</h2>
</header>
<ul class="search-results__entries"></ul>
</section>
</section>
<div id="navigation">
<ul>
<li>
<a href="namespaces.html" title="List of namespaces">
<span>Namespaces</span>
</a>
</li>
</ul>
<ul>
<li>
<a href="reports/errors.html" title="List of errors">
<span>Errors</span>
</a>
</li>
<li>
<a href="reports/deprecated.html" title="List of elements with deprecated annotation">
<span>Deprecated</span>
</a>
</li>
<li>
<a href="reports/markers.html" title="List of markers">
<span>Markers</span>
</a>
</li>
</ul>
</div>
<div id="content">
{% block content %}{% endblock %}
</div>
</div>
<div id="footer">
{{ project.name }}
</div>
</div>
</main>
</body>
</html>