forked from simonc/jeveuxapprendreruby.fr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (59 loc) · 1.97 KB
/
index.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
layout: default
title: Je veux apprendre Ruby
---
<section id="websites">
<header>
<div class="page-header">
<h1>JeVeuxApprendre<span>Ruby</span></h1>
</div>
</header>
{% for post in site.posts %}
<article>
<div class="row">
<div class="col-sm-5 col-md-3">
<p><a class="thumbnail" href="{{post.link}}"><img src="images/{{post.image}}" /></a></p>
</div>
<div class="col-sm-7 col-md-8 col-md-offset-1">
<h1 class="title"><a href="{{post.link}}">{{post.title}}</a></h1>
<p class="description">{{post.content}}</p>
<dl>
<dt>URL</dt>
<dd><a href="{{post.link}}">{{post.link}}</a></dd>
<dt>Langue</dt>
{% for item in post.lang %}
<dd class="lang">{{item}}</dd>
{% endfor %}
<dt>Statut</dt>
{% for item in post.status %}
<dd class="status">{{item}}</dd>
{% endfor %}
<dt>Prix</dt>
{% for item in post.price %}
<dd class="pricing">{{item}}</dd>
{% endfor %}
<dt>Sujets</dt>
{% for item in post.categories %}
<dd class="category">{{item}}</dd>
{% endfor %}
<dt>Niveau</dt>
{% for item in post.level %}
<dd class="level">{{item}}</dd>
{% endfor %}
<dt>Modalités</dt>
{% for item in post.instruction %}
<dd class="instruction">{{item}}</dd>
{% endfor %}
</dl>
</div>
</div>
</article>
{% endfor %}
<footer class="row">
<p class="col-xs-12 col-sm-6">Une ressource manque, quelque chose de faux ?
<a href="http://github.com/simonc/jeveuxapprendreruby.fr">Contribuez !</a></p>
<p class="col-xs-12 col-sm-6 text-right">Une initiative proposée par
<a href="http://www.tinci.fr"><img src="images/tinci.jpg" alt="Tinci" />
Tinci</a></p>
</footer>
</section>