sorting our partners and toads
This commit is contained in:
parent
1a7b11669c
commit
6b9b8dff70
32 changed files with 98 additions and 52 deletions
12
_config.yml
12
_config.yml
|
@ -2,7 +2,7 @@
|
|||
#
|
||||
# Use of `relative_permalinks` ensures post links from the index work properly.
|
||||
#permalink: pretty
|
||||
permalink: /:year-:month-:day-:title/
|
||||
permalink: /:title/
|
||||
relative_permalinks: false
|
||||
|
||||
# Setup
|
||||
|
@ -14,7 +14,7 @@ baseurl: ""
|
|||
urlimg: https://crazy-toads.github.io/images
|
||||
markdown: kramdown
|
||||
paginate: 5
|
||||
paginate_path: "/blog/page:num"
|
||||
paginate_path: "/textes/page:num"
|
||||
excerpt_separator: <!--more-->
|
||||
default_bg: sitelogo.png
|
||||
safe: false
|
||||
|
@ -57,10 +57,10 @@ owner:
|
|||
links:
|
||||
- title: <i class="iconside iconm-home"></i> Accueil
|
||||
url: /
|
||||
- title: <i class="iconside iconm-user"></i> A Propos
|
||||
url: /apropos/
|
||||
- title: <i class="iconside iconm-quill"></i> Blog
|
||||
url: /blog/
|
||||
- title: <i class="iconside iconm-quill"></i> Textes
|
||||
url: /textes/
|
||||
- title: <i class="iconside iconm-quill"></i> Partenaires
|
||||
url: /partenaires/
|
||||
- title: <i class="iconside iconm-envelop"></i> Contact
|
||||
url: /contact/
|
||||
- title: <i class="iconside iconm-github2"></i> Source
|
||||
|
|
|
@ -2,7 +2,8 @@
|
|||
#
|
||||
# Use of `relative_permalinks` ensures post links from the index work properly.
|
||||
#permalink: pretty
|
||||
permalink: /:year-:month-:day-:title/
|
||||
# permalink: /:year-:month-:day-:title/
|
||||
permalink: /:title/
|
||||
relative_permalinks: false
|
||||
|
||||
# Setup
|
||||
|
@ -14,7 +15,7 @@ baseurl: ""
|
|||
urlimg: http://localhost:4000/images
|
||||
markdown: kramdown
|
||||
paginate: 5
|
||||
paginate_path: "/blog/page:num"
|
||||
paginate_path: "/textes/page:num"
|
||||
excerpt_separator: <!--more-->
|
||||
default_bg: sitelogo.png
|
||||
safe: false
|
||||
|
@ -57,10 +58,12 @@ owner:
|
|||
links:
|
||||
- title: <i class="iconside iconm-home"></i> Accueil
|
||||
url: /
|
||||
- title: <i class="iconside iconm-user"></i> A Propos
|
||||
url: /apropos/
|
||||
- title: <i class="iconside iconm-quill"></i> Blog
|
||||
url: /blog/
|
||||
- title: <i class="iconside iconm-quill"></i> Textes
|
||||
url: /textes/
|
||||
- title: <i class="iconside iconm-quill"></i> Crapauds
|
||||
url: /crapauds/
|
||||
- title: <i class="iconside iconm-quill"></i> Partenaires
|
||||
url: /partenaires/
|
||||
- title: <i class="iconside iconm-envelop"></i> Contact
|
||||
url: /contact/
|
||||
- title: <i class="iconside iconm-github2"></i> Source
|
||||
|
|
9
_includes/crapauds.html
Normal file
9
_includes/crapauds.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
|
||||
{% for page in site.pages %}
|
||||
{% if (page.categories | first) == "crapaud" %}
|
||||
<div>{{ page.categories | first }}</div>
|
||||
<div><a href="{{ page.url }}">{{ page.title }}</a></div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
|
|
@ -1,5 +1,6 @@
|
|||
<span class="social-icons">
|
||||
{% if site.owner.twitter %}
|
||||
<span class="social-icons"><a href="https://twitter.com/share?text={{ page.title }}&url={{ site.url }}{{ page.url }}&via={{ site.owner.twitter }}" class="social-icons" target="_blank" title="Share on twitter"> <i class="fa fa-twitter meta"></i></a>
|
||||
<a href="https://twitter.com/share?text={{ page.title }}&url={{ site.url }}{{ page.url }}&via={{ site.owner.twitter }}" class="social-icons" target="_blank" title="Share on twitter"> <i class="fa fa-twitter meta"></i></a>
|
||||
{% endif %}
|
||||
|
||||
{% if page.comments %}
|
||||
|
|
8
_includes/partners.html
Normal file
8
_includes/partners.html
Normal file
|
@ -0,0 +1,8 @@
|
|||
|
||||
{% for page in site.pages %}
|
||||
{% if page.categories | first contains "Partenaires" %}
|
||||
<div><a href="{{ page.url }}">{{ page.title }}</a></div>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
|
25
cercles.md
25
cercles.md
|
@ -4,20 +4,11 @@ title: Les 9 Cercles
|
|||
description: "Les 9 Cercles"
|
||||
---
|
||||
|
||||
## Les 9 Cercles
|
||||
|
||||
# Neuro-diversité
|
||||
# Génération 2050
|
||||
# l’Europe
|
||||
# le Génie digital
|
||||
# le collaboratif
|
||||
# la diversité culturelle
|
||||
# les games changers,
|
||||
# l’intelligence collaborative
|
||||
# l’enthousiasme
|
||||
|
||||
soit des posts (800 mots), soit des articles (1500 mots) des
|
||||
crapauds.
|
||||
|
||||
|
||||
# une page qui explique le principe
|
||||
{% for category in site.categories %}
|
||||
{{ category | first }}
|
||||
{% for posts in category %}
|
||||
{% for post in posts %}
|
||||
{{ post.title }}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
|
8
crapauds.md
Normal file
8
crapauds.md
Normal file
|
@ -0,0 +1,8 @@
|
|||
---
|
||||
layout: default
|
||||
title: Les crapauds Fous
|
||||
---
|
||||
|
||||
## Les Crapauds Fous
|
||||
|
||||
{% include crapauds.html %}
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Alexandre Delanoë
|
||||
description: Game Changer
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Alice Barbe
|
||||
description: Directrice Générale de Singa
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Antoine Brachet
|
||||
description: Les 100 Barbares
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Asmaa Guédira
|
||||
description: « hyper-connectrice »
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Augustin Poupard
|
||||
description: Jeune membre de l’AFM, EDHEC BBA
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Sofia Calcagno et Jean-Batiste Gheraert
|
||||
description: data scientists
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Fabienne Cazalis
|
||||
description: Chercheuse en neuroscience au CNRS, casse les frontières
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Francesca Pick
|
||||
description: Le collaboratif trans-national
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Jean-Baptiste de Foucauld
|
||||
description: Pacte Civique, Démocratie et Spiritualité
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Jean-Baptiste Moretti
|
||||
description: musicien et entrepreneur engagé
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Julien Derville
|
||||
description: jeune membre de l’AFM et co-fondateur de ZTP (Ze Twelfth Player)
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Laura-Jane Gautier
|
||||
description: Journaliste TV et indépendante et Ouishare connector
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Mathieu Baudin
|
||||
description: Les conspirateurs positifs
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Matthieu Dardaillon
|
||||
description: Ticket for Change
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Olivier de Fresnoye
|
||||
description: Open Santé
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Olivier Lebel
|
||||
description: Proximus, l’ONG virtuelle du 21° siècle ?
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Pierrick Judéaux
|
||||
description: Justice et citoyenneté sur tous les fronts
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Raphaël Bosch-Joubert
|
||||
description: Fondateur de 22EME SIECLE
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Thanh-Long Huynh
|
||||
description: Fondateur et DG de QuantCube
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Vincent Dahirel
|
||||
description: Université Pierre & Marie Curie, CRI
|
||||
published: true
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
---
|
||||
layout: crapaud
|
||||
category: crapauds
|
||||
categories:
|
||||
- crapaud
|
||||
title: Yamina Saheb
|
||||
description: Fondatrice et dirigeante du réseau OpenExp
|
||||
photo: yamina_saheb.jpg
|
||||
|
|
BIN
files/cv.pdf
BIN
files/cv.pdf
Binary file not shown.
|
@ -4,5 +4,6 @@ title: Nos partenaires
|
|||
description: "Nos partenaires"
|
||||
---
|
||||
|
||||
## Les partenaires des Crapauds Fous
|
||||
|
||||
## Nos partenaires
|
||||
{% include partners.html %}
|
|
@ -40,3 +40,7 @@
|
|||
.posts.list .post-date {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.custom-footer {
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue