-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathperson.html
More file actions
73 lines (67 loc) · 1.67 KB
/
person.html
File metadata and controls
73 lines (67 loc) · 1.67 KB
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
---
layout: default
---
<div class="row">
{% if content %}
<section class="col-md-6 col-sm-6">
<h1>{{ page.title }}</h1>
{{content}}
{% assign projects = site.projects | where: "artist", page.slug %}
{% if projects != '' %}
<h3>Projects</h3>
{% for project in projects %}
{% include project.html project=project %}
{% endfor %}
{% endif %}
</section>
{% endif %}
<section class="info col-md-4 col-md-offset-1 col-sm-6">
<img src="{{site.baseurl}}/static/img/{{ page.id }}.jpg"/>
<table class="table">
<tr>
<th colspan="2">SFPC CV</th>
</tr>
{% for affiliation in page.affiliation reversed %}
<tr>
<td>{{affiliation.class}}</td>
<td>{{affiliation.role}}</td>
</tr>
{% endfor %}
</table>
<table class="table">
<tr>
<th colspan="2">Info</th>
</tr>
{% if page.website %}
<tr>
<td><i class="fa fa-globe"></i> Website</td>
<td><a href="{{page.website}}">{{page.website}}</a></td>
</tr>
{% endif %}
{% if page.twitter %}
<tr>
<td><i class="fa fa-twitter"></i> Twitter</td>
<td><a href="http://twitter.com/{{page.twitter}}"> @{{page.twitter}}</a></td>
</tr>
{% endif %}
{% if page.github %}
<tr>
<td><i class="fa fa-github"></i> Github</td>
<td><a href="http://github.com/{{page.github}}">{{page.github}}</a></td>
</tr>
{% endif %}
{% if page.instagram %}
<tr>
<td><i class="fa fa-instagram"></i> Instagram</td>
<td><a href="http://instagram.com/{{page.instagram}}">{{page.instagram}}</a></td>
</tr>
{% endif %}
{% if page.place %}
<tr>
<td><i class="fa fa-home"></i> Location</td>
<td>{{page.place}}</td>
</tr>
{% endif %}
</table>
</section>
</div>