-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathabout.html
More file actions
32 lines (25 loc) · 890 Bytes
/
about.html
File metadata and controls
32 lines (25 loc) · 890 Bytes
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
---
layout: default
title: About
---
If you're here, you might already know a bit about Food&Code, if not, let me refresh you a little bit.
Bla bla bla bla
You can found more info here & here...
Now, a little bit about the authors:
<br/>
<br/>
<p>
{% for author in site.data.authors %}
<p class="memberText">
<div class="memberImage"><img alt="{{ author.firstname }}" src="{{ site.baseurl }}/assets/images/{{ author.firstname }}.jpg" /></div>
<span id="{{ author.firstname }}" class="authorName">{{ author.firstname }} {{ author.lastname }}</span>: {{ author.bio }}
<br/>
Email: <a href="mailto:{{ author.email }}">{{ author.email }}</a> <br/>
Website: <a href="{{ author.website }}">{{ author.website }}</a>
{% unless forloop.last %}
</p>
<center><hr width="60%"/></center>
<br/>
{% endunless %}
{% endfor %}
</p>