-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (87 loc) · 2.54 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
---
layout: home
---
<h1 class="home-title">Guillaume</h1>
<div class="spacer"></div>
<a href="mailto:[email protected]">[email protected]</a>
<div class="spacer"></div>
<p>
Software engineer @ <a href="https://www.blablacar.com/">BlaBlaCar</a><br />
<a href="http://web.polytech.univ-nantes.fr/">Polytech Nantes</a> alumni
</p>
<p>
<a href="http://github.com/guillaumewuip">Github</a>
- <a href="https://www.linkedin.com/in/guillaume-clochard/">Linkedin</a>
- <a href="https://twitter.com/GuillaumeWuip">Twitter</a>
</p>
<div class="spacer"></div>
<h2>Experiences</h2>
<p>
<a href="https://www.blablacar.com/">BlaBlaCar</a>
- <a href="http://iadvize.com">iAdvize</a>
- <a href="http://stuart.com">Stuart</a>
- <a href="http://lengow.fr">Lengow</a>
- <a href="http://keople.net">Keople</a>
- <a href="http://zenbus.fr">JOUL</a>
</p>
<div class="spacer"></div>
<h2>Articles</h2>
<ul class="with-date">
{% assign postsSorted = site.posts | sort: 'date' | reverse %}
{% for post in postsSorted %}
<li>
<span class="date">{{ post.date | date: "%b %Y" }}</span>
<span>
{% if post.externalUrl %}
<a href="{{ post.externalUrl }}">
{{ post.title }} ↗
</a>
{% else %}
<a href="{{ post.url }}">
{{ post.title }}
</a>
{% endif %}
</span>
</li>
{% endfor %}
</ul>
<div class="spacer"></div>
<h2>Talks</h2>
<ul class="with-date">
{% assign talksSorted = site.talks | sort: 'date' | reverse %}
{% for talk in talksSorted %}
<li>
<span class="date">{{ talk.date | date: "%b %Y" }}</span>
<span>
{% if talk.externalUrl %}
<a href="{{ talk.externalUrl }}">
{{ talk.title }} ↗
</a>
{% else %}
{{ talk.title }}
{% endif %}
</span>
</li>
{% endfor %}
</ul>
<div class="spacer"></div>
<h2>Music</h2>
<p><a href="https://cmd.wuips.com/">cmd</a> - one post with the ~10 latest discovery every Friday.</p>
<p><a href="https://www.prun.net/">Prun</a> - local radio station in Nantes, France.</p>
<div class="spacer"></div>
<h2>Projects</h2>
<ul class="with-date projects">
{% assign projectsSorted = site.projects | sort: 'date' | reverse | where_exp:"project", "project.hidden != true" %}
{% for project in projectsSorted %}
<li class="project">
<span class="date">{{ project.date | date: "%b %Y" }}</span>
<span>
<span class="title">{{ project.title }}</span>
{{ project.desc | raw }}
<span class="tags">
{{ project.tags | join: ' - ' }}
</span>
</span>
</li>
{% endfor %}
</ul>