Blame view

_layouts/cr.html 1.32 KB
6014189d   Geoffrey PREUD'HOMME   Avancement de la ...
1
2
3
4
  ---
  layout: default
  ---
  <article class="post" itemscope itemtype="http://schema.org/BlogPosting">
4a8ebb70   Geoffrey PREUD'HOMME   Navigation vers C...
5
6
7
8
9
10
11
12
13
14
15
16
17
    <div class="page-nav">
      <span>
    {% if page.next.url %}
        <a class="next" href="{{page.next.url}}">&laquo; {% include date.html date=page.next.date %}</a>
    {% endif %}
      </span>
      <span class="prev">
    {% if page.previous.url %}
        <a href="{{page.previous.url}}">{% include date.html date=page.previous.date %} &raquo;</a>
    {% endif %}
      </span>
    </div>
  
6014189d   Geoffrey PREUD'HOMME   Avancement de la ...
18
19
  
    <header class="post-header">
d4b5ecd0   Geoffrey PREUD'HOMME   categories → tags
20
      {% if page.tags contains 'ci' %}
6014189d   Geoffrey PREUD'HOMME   Avancement de la ...
21
      <img class="post-logo" alt="Logo du Club Info" src="{{ "/assets/logo-ci-inv.svg" | relative_url }}"/>
71a8b229   Geoffrey PREUD'HOMME   Petits changements
22
      {% endif %}
6014189d   Geoffrey PREUD'HOMME   Avancement de la ...
23
24
      <h1 class="post-title" itemprop="name headline">
          {{ page.title | escape }}<br/>
dfae230d   Geoffrey PREUD'HOMME   Date en français ...
25
26
27
28
          du
          <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
              {% include date.html date=page.date %}
          </time>
6014189d   Geoffrey PREUD'HOMME   Avancement de la ...
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
      </h1>
      {% if page.author %}
      <p class="post-meta">
          <span itemprop="author" itemscope itemtype="http://schema.org/Person">
              <span itemprop="name">{{ page.author }}</span>
          </span>
      </p>
      {% endif %}
    </header>
  
    <div class="post-content" itemprop="articleBody">
      {{ content }}
    </div>
  
    {% if site.disqus.shortname %}
      {% include disqus_comments.html %}
    {% endif %}
  </article>