2023-03-31 21:59:07 +02:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h1 class="title is-1">{{page.title}}</h1>
|
|
|
|
<div class="content">
|
|
|
|
{{page.content | safe}}
|
2023-05-06 20:30:36 +02:00
|
|
|
|
|
|
|
<h2> Des amis </h2 >
|
|
|
|
|
|
|
|
D'autres amis propose du contenus que j'apprécie énormément. Une liste non exaustive ci-dessous.
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% set friend_sites = get_section(path="blog_amis/_index.md") %}
|
|
|
|
{% for page in friend_sites.pages %}
|
|
|
|
<article class="media note p-4" >
|
|
|
|
<a href="{{ page.extra.url }}" class="" style="width: 100%">
|
|
|
|
<div class="media-content media-flex" style="overflow-y: clip;">
|
|
|
|
<h2 class="title is-2">{{ page.title }}</h2>
|
|
|
|
<div class="content has-text-justified">
|
|
|
|
{{ page.summary | markdown | safe }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</a>
|
|
|
|
</article>
|
|
|
|
{% endfor %}
|
2023-03-31 21:59:07 +02:00
|
|
|
</div>
|
|
|
|
{% endblock content %}
|