blob: 29619c29e357b2bbc5ec433428471ef3d069ba88 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<html>
<head>
<title>{{ansible_distribution}} Apache Web Server</title>
<meta charset="utf-8" />
</head>
<body>
<h1>{{ansible_distribution}} Apache Web Server</h1>
<h2>Site en Constuction</h2>
{% if lamp_packages is defined %}
<h3>Packages :</h3>
<ul>
{% for item in lamp_packages %}
<li>{{item}}</li>
{% endfor %}
</ul>
{% endif %}
<p>Généré par {{ ansible_distribution }} {{ ansible_distribution_version }}</p>
</body>
</html>
|