summaryrefslogtreecommitdiff
path: root/lamp/templates/index.j2
blob: 2c338ad13b5588107acc6aaa8f6b23852419e844 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<html>
<head>
<title>{{ansible_distribution}} Apache Web Server</title>
</head>
<body>
<h1>{{ansible_distribution}} Apache Web Server</h1>
{% if lamp_packages is defined %}
<h2>Packages :</h2>
<ul>
{% for item in lamp_packages %}
<li>{{item}}</li>
{% endfor %}
</ul>
{% endif %}
</body>
</html>