forked from quentin/quentin.dufour.io
Add draft support
This commit is contained in:
parent
89448eea1b
commit
8d2a178b77
5 changed files with 19 additions and 18 deletions
|
@ -1,10 +1,12 @@
|
||||||
<ul id="post-list">
|
<ul id="post-list">
|
||||||
{% for post in paginator.posts %}
|
{% for post in paginator.posts %}
|
||||||
|
{% if post.status == "published" %}
|
||||||
<li>
|
<li>
|
||||||
<a href='{{ post.url }}'><aside class="dates">{{ post.date | date:"%b %d" }}</aside></a>
|
<a href='{{ post.url }}'><aside class="dates">{{ post.date | date:"%b %d" }}</aside></a>
|
||||||
<a href='{{ post.url }}'>{{ post.title }} <h2>{{ post.description }}</h2></a>
|
<a href='{{ post.url }}'>{{ post.title }} <h2>{{ post.description }}</h2></a>
|
||||||
</li>
|
</li>
|
||||||
{% endfor %}
|
{% endif %}
|
||||||
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
{% if paginator.previous_page or paginator.next_page %}
|
{% if paginator.previous_page or paginator.next_page %}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
layout: post
|
layout: post
|
||||||
slug: tout-sur-les-serveurs-teeworlds-partie-1
|
slug: tout-sur-les-serveurs-teeworlds-partie-1
|
||||||
status: publish
|
status: published
|
||||||
title: Créer un serveur Teeworlds (partie 1)
|
title: Créer un serveur Teeworlds (partie 1)
|
||||||
description: Un serveur Teeworlds basique
|
description: Un serveur Teeworlds basique
|
||||||
categories:
|
categories:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
layout: post
|
layout: post
|
||||||
slug: installer-icescrum-7
|
slug: installer-icescrum-7
|
||||||
status: publish
|
status: published
|
||||||
title: Installer Icescrum
|
title: Installer Icescrum
|
||||||
description: Gestion de projet agile self-hosted
|
description: Gestion de projet agile self-hosted
|
||||||
categories:
|
categories:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
layout: post
|
layout: post
|
||||||
slug: utiliser-casperjs
|
slug: utiliser-casperjs
|
||||||
status: draft
|
status: published
|
||||||
title: CasperJS
|
title: CasperJS
|
||||||
description: Du test fonctionnel au web scraping
|
description: Du test fonctionnel au web scraping
|
||||||
categories:
|
categories:
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
---
|
---
|
||||||
layout: post
|
layout: post
|
||||||
slug: l2tp
|
slug: l2tp
|
||||||
status: draft
|
status: published
|
||||||
title: Tunnel L2TP
|
title: Tunnel L2TP
|
||||||
description: Créer un tunnel avec la commande ip
|
description: Créer un tunnel avec la commande ip
|
||||||
categories:
|
categories:
|
||||||
|
@ -168,4 +168,3 @@ Pour moi, ça a marché, à vous de jouer !
|
||||||
##Explorons !
|
##Explorons !
|
||||||
|
|
||||||
Il reste encore bien des possibilités. Ainsi, nous verrons prochainement comment bridger les interfaces en L2TP pour faire passer autre chose que de l'IP ainsi que quelques rudiments de routage avec ``ip route``
|
Il reste encore bien des possibilités. Ainsi, nous verrons prochainement comment bridger les interfaces en L2TP pour faire passer autre chose que de l'IP ainsi que quelques rudiments de routage avec ``ip route``
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue