-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetailed-projects.html
53 lines (41 loc) · 1.38 KB
/
detailed-projects.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
<div class="page-split no-print"></div>
<section class="content-section detailed-projects no-print">
<header class="section-header">
<h2>Projects</h2>
</header>
{% for c in site.data.projects %}
<div class="resume-item">
{% if c.photo %}
<div class="col-1-4 resume-project-photo">
{% if c.url %}<a href="{{ c.url }}">{% endif %}
<img src="img/work/{{c.photo}}" alt="{{c.title}}">
{% if c.url %}</a>{% endif %}
{% else %}
<div class="col-1-4 resume-project-photo resume-project-photo-placeholder">
{% if c.url %}<a href="{{ c.url }}">{% endif %}
<img src="img/work/placeholder.png" role="presentation">
{% if c.url %}</a>{% endif %}
{% endif %}
</div>
<div class="col-1-4">
<h3 class="resume-item-title">
{% if c.url %}<a href="{{ c.url }}">{% endif %}
{{ c.title }}
{% if c.url %}</a>{% endif %}
</h3>
<h4 class="resume-item-details">
{{ c.secondary }}
</h4>
<h5>{{ c.year }}</h5>
</div>
<ul class="summary-bullets col-3-4 project-photo-description">
{% for p in c.summary %}
<li class="resume-item-copy">{{p | markdownify}}</li>
{% endfor %}
{% for p in c.detailed %}
<li class="resume-item-copy">{{p | markdownify}}</li>
{% endfor %}
</ul>
</div>
{% endfor %}
</section>