Blame view

_layouts/home.html 522 Bytes
6014189d   Geoffrey PREUD'HOMME   Avancement de la ...
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
  ---
  layout: default
  ---
  
  <div class="home">
  
    <h1 class="page-heading">Compte-rendus</h1>
    
    {{ content }}
  
    <ul class="post-list">
      {% for post in site.posts %}
        <li>
          <span class="post-meta">{{ post.date | date: "%d/%m/%Y" }}</span>
  
          <h2>
            <a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
          </h2>
        </li>
      {% endfor %}
    </ul>
  
    <p class="rss-subscribe">s'abonner <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
  
  </div>