Blame view

_layouts/tuto.html 1.11 KB
b6ffb66d   Geoffrey PREUD'HOMME   Ajout des tutorie...
1
2
3
4
5
6
7
8
9
10
11
12
13
  ---
  layout: default
  ---
  
  <div class="home">
  
      <h1 class="post-title">Tutoriel : {{ page.title }}</h1>
      <p class="post-meta">
          {% if page.author %}
          <span itemprop="author" itemscope itemtype="http://schema.org/Person">
              <span itemprop="name">{{ page.author }}</span>
          </span>
          {% endif %}
a1774662   Geoffrey PREUD'HOMME   Rajout des antiqu...
14
          {% if page.license %}
b6ffb66d   Geoffrey PREUD'HOMME   Ajout des tutorie...
15
16
              (<a href="{{ page.license_url }}">{{ page.license }}</a>)
          {% endif %}
a1774662   Geoffrey PREUD'HOMME   Rajout des antiqu...
17
18
19
20
21
22
          {% if page.date %}
              <br/>Mis à jour le 
              <time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">
                  {% include date.html date=page.date %}
              </time>
          {% endif %}
b6ffb66d   Geoffrey PREUD'HOMME   Ajout des tutorie...
23
      </p>
a1774662   Geoffrey PREUD'HOMME   Rajout des antiqu...
24
25
26
27
28
29
      {% if page.tags contains 'archive' %}
      <blockquote>
          <strong>Attention :</strong> Ce tutoriel est archivé car il a été rédigé il y a très longtemps et son contenu n'est plus d'actualité.<br/>
          Regardez dans les <a href="{{ '/tutos.html' | relative_url }}">tutoriels récents</a> pour voir si un tutoriel plus récent est disponible.
      </blockquote>
      {% endif %}
b6ffb66d   Geoffrey PREUD'HOMME   Ajout des tutorie...
30
31
32
33
  
      {{content}}
  
  </div>