-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstaff.html
36 lines (33 loc) · 1.02 KB
/
staff.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
---
layout: default
title: Staff
---
{% for author in site.authors %}
<!--
<h2><a href="{{ author.url }}">{{ author.name }}</a></h2>
-->
<h2 class="master">{{ author.name }}</a></h2>
{% capture author_picture %} {{ author.picture }} {% endcapture %}
{% capture author_position %} {{ author.position }} {% endcapture %}
{% capture author_content %} {{ author.content }} {% endcapture %}
{% include pic_box.html
picture = author_picture
position = author_position
content = author_content
%}
<!--
<table class="pic_box">
<tr>
<td class="pic_box">
<img class="pic_box" src={{ author.picture }}>
</td>
<td class="pic_box">
<h5 class="master">{{ author.position }}</h5>
<div class="warning">{{ author.content }}</div>
</td>
</tr>
</table>
-->
{% endfor%}
<hr>
<address class="address"><a class="address" href="http://pixabay.com/service/license">Pixabay License</a></address>