-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·60 lines (54 loc) · 1.51 KB
/
index.html
File metadata and controls
executable file
·60 lines (54 loc) · 1.51 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
---
layout: default
---
<div class="home">
<section class="banner">
<div class="wrapper">
<h1>{{ site.title }}</h1>
<p>{{ site.description }}</p>
<!--<a href="{{ "/agreement/" | prepend: site.baseurl }}" style="font-size: 20px;">Read now</a>-->
</div>
</section>
<div class="wrapper">
<div>
<h2>Italiano</h2>
{% for doc in site.data.docs %}
{% if doc.done == "1" and doc.lang == "it" %}
<li>
<a href="{{ site.baseurl }}{{doc.url}}">{{doc.title}}</a>
</li>
{% endif %}
{% endfor %}
</div>
<div>
<h2>Espanol</h2>
{% for doc in site.data.docs %}
{% if doc.done == "1" and doc.lang == "es" %}
<li>
<a href="{{ site.baseurl }}{{doc.url}}">{{doc.title}}</a>
</li>
{% endif %}
{% endfor %}
</div>
<div>
<h2>English</h2>
{% for doc in site.data.docs %}
{% if doc.done == "1" and doc.lang == "en" %}
<li>
<a href="{{ site.baseurl }}{{doc.url}}">{{doc.title}}</a>
</li>
{% endif %}
{% endfor %}
</div>
<div>
<h2>French</h2>
{% for doc in site.data.docs %}
{% if doc.done == "1" and doc.lang == "fr" %}
<li>
<a href="{{ site.baseurl }}{{doc.url}}">{{doc.title}}</a>
</li>
{% endif %}
{% endfor %}
</div>
</div>
</div>