Feat: Ajout de la description des topologies et des scénarios
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2021-02-02 21:36:08 +01:00
parent c45cdd3ec6
commit e3b9fc1383
7 changed files with 433 additions and 493 deletions

View File

@@ -0,0 +1,37 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<link href="../role.css" rel="stylesheet">
<title>{{ topo }}</title>
<meta name="description" content="topologie">
</head>
<body>
<header>
<span id="layout">
<img src="../{{topo}}/logo.png">
</span>
<span id="title">
<p>Réseau: {{ topo }}</p>
</span>
<span id="number">
</span>
</header>
<main>
<section id="description">
<h2>Description:</h2>
<p>{{ description }}</p>
<h2>Mise en place</h2>
<p>Distribuez les rôles, positionnez vous puis reliez vous pour former le réseau suivant</p>
<img src="../{{topo}}/shape.png">
<h2>Scénarios: </h2>
<ul>
{% for s in scenarios %}
<li>{{ s | replace("{", "") | replace("}", "") | replace("'", "")}}</li>
{% endfor %}
</ul>
</section>
</main>
</body>
</html>