Blame view

_layouts/tuto.html 489 Bytes
b6ffb66d   Geoffrey PREUD'HOMME   Ajout des tutorie...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
  ---
  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 %}
          {% if page.author %}
              (<a href="{{ page.license_url }}">{{ page.license }}</a>)
          {% endif %}
      </p>
  
      {{content}}
  
  </div>