-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprojects.html
More file actions
34 lines (27 loc) · 822 Bytes
/
Copy pathprojects.html
File metadata and controls
34 lines (27 loc) · 822 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
33
34
{% assign projects = site.data.data.projects %}
{% if projects %}
<section class="section projects-section">
<h2 class="section-title">
<span class="fa-stack fa-xs">
<i class="fas fa-circle fa-stack-2x"></i>
<i class="fas fa-archive fa-stack-1x fa-inverse"></i>
</span>
{{ projects.title }}
</h2>
{% if projects.intro %}
<div class="intro">
<p>{{ projects.intro }}</p>
</div><!--//intro-->
{% endif %}
{% for project in projects.assignments %}
<div class="item">
<span class="project-title">
<a href="{{ project.link }}">{{ project.title }}</a>
</span>
{% if project.tagline %}
- <span class="project-tagline">{{ project.tagline }}</span>
{% endif %}
</div><!--//item-->
{% endfor %}
</section><!--//section-->
{% endif %}