-
Notifications
You must be signed in to change notification settings - Fork 3
/
documentation.html
42 lines (39 loc) · 1.32 KB
/
documentation.html
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
---
layout: default_documentation
description: |
Documentation
title: Previsecours
width: is-12
---
<section class="section">
<div class="tile is-ancestor">
<div class="tile is-vertical is-12">
<div class="tile">
<div class="tile is-parent is-12 has-text-centered">
<span href="about" class="tile is-child notification is-light">
<p class="title">Liste des chapitres</p>
{% for post in site.categories.documentation %}
<p class="subtitle"> <a href="{{site.baseurl}}{{post.url}}" style="color:#3273dc;cursor: pointer;text-decoration: none;"> {{post.title}} </a> </p>
{% endfor %}
</span>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="tile is-ancestor">
<div class="tile is-vertical is-12">
<div class="tile">
<div class="tile is-parent is-12 has-text-centered">
<span href="about" class="tile is-child notification is-light">
<p class="title">FAQ</p>
{% for post in site.categories.faq %}
<p class="subtitle"> <a href="{{site.baseurl}}{{post.url}}" style="color:#3273dc;cursor: pointer;text-decoration: none;"> {{post.title}} </a> </p>
{% endfor %}
</span>
</div>
</div>
</div>
</div>
</section>