-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html.twig
More file actions
40 lines (29 loc) · 1.09 KB
/
index.html.twig
File metadata and controls
40 lines (29 loc) · 1.09 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>{{ host }}</title>
<link rel="stylesheet" type="text/css" href="main.css" />
</head>
<body>
<div id="content">
<h1>{{ host }}</h1>
<h2>PHP {{ infos|join(' | ') }}</h2>
<span id="random">Did you know <a href="http://www.php.net/manual/en/function.{{ function|replace({'_': '-'}) }}.php">{{ function }}</a> ?</span>
<div id="middle">
<dl class="folders">
<dt>Folders</dt>
{% for directory in directories %}
<dd><a href="{{ directory.filename }}">{{ directory.filename }}</a></dd>
{% endfor %}
</dl>
<dl class="extensions">
<dt>Extensions</dt>
{% for extension in extensions %}
<dd><a href="phpinfo.php#module_{{ extension }}">{{ extension }}</a></dd>
{% endfor %}
</dl>
</div>
</div>
</body>
</html>