Skip to content
Snippets Groups Projects
Commit dcf6169a authored by Hugo Trentesaux's avatar Hugo Trentesaux
Browse files

ménage taxonomies

parent 3c93064f
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,6 @@ taxonomies = [ ...@@ -8,7 +8,6 @@ taxonomies = [
{name = "authors"}, {name = "authors"},
{name = "tags"}, {name = "tags"},
{name = "category"}, {name = "category"},
{name = "lang"},
] ]
[extra] [extra]
......
...@@ -8,7 +8,6 @@ thumbnail = "/PELICAN/images/duniter-logo-bw.png" ...@@ -8,7 +8,6 @@ thumbnail = "/PELICAN/images/duniter-logo-bw.png"
[taxonomies] [taxonomies]
authors = [ "cgeek",] authors = [ "cgeek",]
tags = [ "Technical",]
+++ +++
# L'expérimentation Meta_Brouzouf est terminée ! # L'expérimentation Meta_Brouzouf est terminée !
...@@ -42,7 +41,7 @@ Le logiciel uCoin, quant à lui, ne fait que traiter ces documents et les ajoute ...@@ -42,7 +41,7 @@ Le logiciel uCoin, quant à lui, ne fait que traiter ces documents et les ajoute
Force est de constater que cet objectif, à la fin de l'expérimentation, a été atteint ! De valeureux développeurs se sont donnés corps et âme pour produire les précieux logiciels qui suivent : Force est de constater que cet objectif, à la fin de l'expérimentation, a été atteint ! De valeureux développeurs se sont donnés corps et âme pour produire les précieux logiciels qui suivent :
* [Sakia](http://sakia-wallet.org), un logiciel de bureau complet pour Linux, Mac et Windows * [Sakia](http://sakia-wallet.org), un logiciel de bureau complet pour Linux, Mac et Windows
* [uCoin App](https://play.google.com/store/apps/details?id=io.ucoin.android), application pour votre smartphone Android * [uCoin App](https://play.google.com/store/apps/details?id=io.ucoin.android), application pour votre smartphone Android
* [uCoinWallet](https://play.google.com/store/apps/details?id=io.ucoin.android.wallet), autre application pour smartphone Android * [uCoinWallet](https://play.google.com/store/apps/details?id=io.ucoin.android.wallet), autre application pour smartphone Android
* [Cesium](https://cesium.app/), un client toute plateforme qui fonctionne dans votre navigateur favori * [Cesium](https://cesium.app/), un client toute plateforme qui fonctionne dans votre navigateur favori
......
+++
title = "Taxonomies"
template = "taxonomies/taxonomies.html"
weight = 0
[extra]
hide = true
+++
\ No newline at end of file
...@@ -5,7 +5,6 @@ weight = 9 ...@@ -5,7 +5,6 @@ weight = 9
title = "Qui sommes-nous ?" title = "Qui sommes-nous ?"
[taxonomies] [taxonomies]
lang = [ "fr",]
authors = [ "cgeek",] authors = [ "cgeek",]
+++ +++
......
{% extends "taxonomies/list.html" %}
{% extends "taxonomies/single.html" %}
{% extends "index.html" %}
{% block content %}
<main class="w3-container">
<p>Voici toutes les taxonomies et leurs pages.</p>
{% for t in config.taxonomies %}
<ul>
{% set taxonomy = get_taxonomy(kind=t.name) %}
<li><a href="/{{taxonomy.kind.name}}">{{taxonomy.kind.name}}</a> ({{ taxonomy.items | length }})</li>
<ul>
{% for item in taxonomy.items %}
{% set url = get_taxonomy_url(kind=taxonomy.kind.name, name=item.name) %}
<li><a href="{{url}}">{{ item.name }}</a> ({{ item.pages | length }})</li>
<ul>
{% for p in item.pages %}
<li><a href="{{p.permalink}}">{{p.title}}</a></li>
{% endfor %}
</ul>
{% endfor %}
</ul>
</ul>
<hr>
{% endfor %}
</main>
{% endblock content %}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment