add some content

This commit is contained in:
mose 2017-08-26 20:53:13 +08:00
parent 7275911d69
commit 5441de2b7e
27 changed files with 59 additions and 109 deletions

View file

@ -9,9 +9,9 @@ relative_permalinks: false
title: Les Crapauds Fous
#tagline: 'foo's website
description: La Fable Moderne d'un Monde Libre et juste un peu Fou
url: https://crazy-toads.github.io/website/
baseurl: "/website"
urlimg: https://shelleycavaness.github.io/wildtoad/images/
url: https://crazy-toads.github.io/
baseurl: ""
urlimg: https://crazy-toads.github.io/images/
markdown: kramdown
paginate: 5
paginate_path: "/blog/page:num"
@ -46,9 +46,9 @@ owner:
# Use the coder's toolbox at http://coderstoolbox.net/string/#!encoding=xml&action=encode&charset=us_ascii to encode your description into XML string
description:
# Social networking links used in footer. Update and remove as you like.
twitter: abcd
twitter:
facebook:
github: crazy-toad
github: crazy-toads
flickr:
## sidebar links:

View file

View file

@ -1,8 +0,0 @@
name: Alice Barbe
profession:
city:
photo:
declaration:
email:
linkedin:
twitter:

View file

@ -1,8 +0,0 @@
name: Mathieu Baudin
profession:
city:
photo:
declaration:
email:
linkedin:
twitter:

View file

@ -1,8 +0,0 @@
name: Raphaël Bosch-Joubert
profession:
city:
photo:
declaration:
email:
linkedin:
twitter:

View file

@ -1,8 +0,0 @@
name: Antoine Brachet
profession:
city:
photo:
declaration:
email:
linkedin:
twitter:

View file

@ -1,8 +0,0 @@
name: Thierry Brunel
profession:
city:
photo:
declaration:
email:
linkedin:
twitter:

View file

@ -1,8 +0,0 @@
name: Sofia Calcagno
profession:
city:
photo:
declaration:
email:
linkedin:
twitter:

View file

@ -1,8 +0,0 @@
name: Jéronimo Calderon
profession:
city:
photo:
declaration:
email:
linkedin:
twitter:

View file

@ -1,8 +0,0 @@
name: Fabienne Cazalis
profession:
city:
photo:
declaration:
email:
linkedin:
twitter:

View file

@ -1,8 +0,0 @@
name: Arnaud Chaput
profession:
city:
photo:
declaration:
email:
linkedin:
twitter:

View file

@ -46,10 +46,10 @@ owner:
# Use the coder's toolbox at http://coderstoolbox.net/string/#!encoding=xml&action=encode&charset=us_ascii to encode your description into XML string
description:
# Social networking links used in footer. Update and remove as you like.
twitter: abcd
facebook:
github: crazy-toad
flickr:
#twitter:
#facebook:
#github: crazy-toads
#flickr:
## sidebar links:
# For external links add external: true
@ -62,9 +62,9 @@ links:
url: /blog/
- title: <i class="iconside iconm-envelop"></i> Contact
url: /contact/
- title: <i class="iconside iconm-twitter"></i> Twitter
url: https://twitter.com/abcd
external: true
# - title: <i class="iconside iconm-twitter"></i> Twitter
# url: https://twitter.com/abcd
# external: true
- title: <i class="iconside iconm-feed2"></i> Feed
url: /feed.xml

View file

@ -3,10 +3,10 @@
<ul class="social-icons">
{% for social_item in site.data.socialmedia %}
{% if social_item.url contains 'http' %}
{% assign domain = '' %}
{% else %}
{% assign domain = site.url %}
{% endif %}
{% assign domain = '' %}
{% else %}
{% assign domain = site.url %}
{% endif %}
<li><a href="{{ domain }}{{ social_item.url }}" rel="me" {% if social_item.url contains 'http' %} target="_blank" {% endif %} class="social-icons" title="{{ social_item.title }}"> <i class="{{ social_item.class }} fa-2x"></i></a></li>
{% endfor %}
</ul>

View file

@ -1,6 +1,11 @@
{% if site.owner.twitter %}
<span class="social-icons"><a href="https://twitter.com/share?text={{ page.title }}&amp;url={{ site.url }}{{ page.url }}&amp;via={{ site.owner.twitter }}" class="social-icons" target="_blank" title="Share on twitter"> <i class="fa fa-twitter meta"></i></a>
{% endif %}
<a href="https://plus.google.com/share?url={{ site.url }}{{ page.url }}" class="social-icons" target="_blank" title="Share on Google+"> <i class="fa fa-google-plus"></i></a>
{% if page.comments %}<a href="{{ site.url }}{{ page.url }}#disqus_thread" class="social-icons" title="Comments"><i class="fa fa-comments"></i></a>{% endif %}
{% if page.comments %}
<a href="{{ site.url }}{{ page.url }}#disqus_thread" class="social-icons" title="Comments"><i class="fa fa-comments"></i></a>
{% endif %}
{% if page.category contains "featured" %}<a href="{{ site.url }}/featured" title="Featured posts"><i class="fa fa-paperclip" title="Featured" class="social-icons" style="vertical-align: top;"></i></a>{% endif %}
<a href="javascript:window.print()" class="social-icons" title="Printer friendly format"><i class="fa fa-print"></i></a>
</span>

View file

@ -38,18 +38,4 @@
</nav>
<hr class="gh">
{% if site.google_search %}
<div id="searchbox2" style="margin:0 auto; display: table;">
<div class="searchcont2">
<!-- span class="searchicon2"><i class="fa fa-search fa-2x"></i></span -->
<form role="search" method="get" action="{{ site.url }}/cse/">
<input id="searchString2" name="searchString2"
placeholder=" Search" type="text">
</form>
</div>
</div>
{% endif %}
</div>

20
_layouts/crapaud.html Normal file
View file

@ -0,0 +1,20 @@
---
layout: default
---
<div class="page">
<h1 class="page-title">{{ page.title }}</h1>
{% if page.photo %}
<img src="{{ site.urlimg }}/profiles/{{ page.photo }}" align="right" width="256" height="256" />
{% else %}
<img src="{{ site.urlimg }}/profiles/crazy-toad-grey-256.png" align="right" width="256" height="256" />
{% endif %}
{{ content }}
</div>
{% unless page.hide_printmsg == true %}
{% include printmsgpages.html %}
{% endunless %}
<div class="page-break"></div>
{% if site.disqus_shortname and page.comments == true %}<div id="disqus_thread"></div><!-- /#disqus_thread -->{% endif %}

View file

@ -4,13 +4,7 @@ layout: default
<div class="page">
<h1 class="page-title">{{ page.title }}</h1>
{% if page.show_meta == true %}
{% include meta_info.html %}
{% endif %}
{{ content }}
{% if page.show_meta == true %}
{% include meta_info.html %}
{% endif %}
</div>
{% unless page.hide_printmsg == true %}

17
crapauds/alice_barbe.md Normal file
View file

@ -0,0 +1,17 @@
---
layout: crapaud
category: crapauds
title: Alice Barbe
description: Directrice Générale de Singa
published: true
---
Après des études européennes où elle a lopportunité dapprendre Machiavel, le polonais et comment faire un bon risotto, Alice démarre sa carrière à Montréal aux Nations Unies, au contact des organisations internationales et représentations étatiques. En 2012, elle rejoint les fondateurs de Singa, persuadée que laccueil des personnes réfugiées est au cœur de nombreux enjeux sociétaux occidentaux.
Le mouvement grandit et créé du lien, rassemble réfugiés et non-réfugiés autour du sport, de musique, de colocations, dappli, de plateformes Web. Singa se pose comme davantage comme questionneur, étonneur, davantage que comme ONG ou services. Le mouvement vise à inverser le paradigme selon lequel les nouveaux arrivants seront des bénéficiaires, et les révèle comme contributeurs, il agit pour la société, avec des réfugiés.
Au cours de cette expérience, Alice co-développe #StopHarcelementDeRue qui vise à déconstruire les comportements de harcèlement à l'encontre des femmes et personnes LGBT, et mène en parallèle des activités de consultante RSE.
<img src="{{ site.urlimg }}/profiles/alice_barbe_illus.png" />
En 2015, SINGA devient internationale, et compte 25 000 membres. Ce nest aujourdhui ni un modèle, ni un projet, ni une solution. Cest une approche de co-création, de participation à une nouvelle culture à travers laquelle, à travers les projets développés et mis en place par ses membres qui font société, au lieu de sadapter à elle.

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 275 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 167 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 103 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 104 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 28 KiB