parent
d7e45dc856
commit
11bd75254e
@ -0,0 +1,3 @@ |
||||
+++ |
||||
transparent = true |
||||
+++ |
@ -0,0 +1,3 @@ |
||||
+++ |
||||
transparent = true |
||||
+++ |
@ -0,0 +1,11 @@ |
||||
+++ |
||||
title = "Un nouveau site pour dnsmanager" |
||||
slug = "nouveau-site" |
||||
date = 2020-03-29 |
||||
+++ |
||||
|
||||
Aujourd'hui, nous ouvrons un nouveau site web pour dnsmanager! |
||||
|
||||
Il devrait fonctionner correctement sur tous vos appareils y compris les téléphones portables. Si ça n'est pas le cas, merci de nous le signaler ou de soumettre un patch. |
||||
|
||||
Dans le futur, toutes les nouvelles excitantes à propos de dnsmanager apparaîtront sur ce blog, alors reste connectéE. |
@ -0,0 +1,12 @@ |
||||
+++ |
||||
title = "A new homepage for dnsmanager" |
||||
date = 2020-03-29 |
||||
+++ |
||||
|
||||
Today, we are opening a website for dnsmanager! |
||||
|
||||
<!-- more --> |
||||
|
||||
It should display properly on all devices including mobile phones. If that's not the case, please let us know about it or submit a patch yourself. |
||||
|
||||
In the future, exciting news about dnsmanager will appear on this blog, so be sure to stay tuned. |
@ -0,0 +1,3 @@ |
||||
+++ |
||||
title = "Derniers articles" |
||||
+++ |
@ -0,0 +1,3 @@ |
||||
+++ |
||||
title = "Latest articles" |
||||
+++ |
@ -0,0 +1,27 @@ |
||||
{% extends "index.html" %} |
||||
|
||||
{% block title %}{{ section.title }} - {{ config.title }}{% endblock %} |
||||
|
||||
{% block main %} |
||||
<section class="h-feed"> |
||||
<h1 class="p-name">{{ section.title }}</h1> |
||||
<a class="u-url" hidden aria-hidden=true href="{{ section.permalink }}">Permalink</a> |
||||
{% for page in section.pages %} |
||||
<article> |
||||
<div> |
||||
<a class="u-url" href="{{ page.permalink }}"><h2>{{ page.title }}</h2></a> |
||||
{%- if page.date -%}<time class="dt-published" datetime="{{ page.date }}">📅 {{ page.date | date(format="%d/%m/%Y") }}</time>{%- endif -%} |
||||
</div> |
||||
{% if page.summary %} |
||||
<div class="p-summary e-content"> |
||||
{{ page.summary | markdown | safe }} |
||||
</div> |
||||
{% else %} |
||||
<div class="e-content"> |
||||
{{ page.content | markdown | safe }} |
||||
</div> |
||||
{% endif %} |
||||
</article> |
||||
{% endfor %} |
||||
</article> |
||||
{% endblock %} |
Loading…
Reference in new issue