-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpage1-projects.html
More file actions
37 lines (33 loc) · 1015 Bytes
/
page1-projects.html
File metadata and controls
37 lines (33 loc) · 1015 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
35
36
37
---
layout: page
title: Projects
permalink: /projects/
---
{% assign sorted_projects = site.projects | sort:"order" %}
{% for project in sorted_projects %}
<div class="project">
<div class="flex-row project-header">
<h2><a href="{{ project.url }}.html">{{ project.title }}</a></h2>
<div class="label-row">
{% if project.built_with %}
{% for item in project.built_with %}
<span class="badge badge-secondary">{{ item }}</span>
{% endfor %}
{% endif %}
</div>
</div>
{{ project.excerpt }}
<div class="icon-row">
{% if project.repository %}
<a href="{{ project.repository }}" target="_blank">
<i class="fab fa-github"></i>
</a>
{% endif %}
{% if project.link %}
<a href="https://{{ project.link }}" target="_blank">
<i class="fas fa-link"></i> {{ project.link }}
</a>
{% endif %}
</div>
</div>
{% endfor %}