forked from ifpb/projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (23 loc) · 932 Bytes
/
index.html
File metadata and controls
24 lines (23 loc) · 932 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
---
layout: default
---
<div class="projects">
{% for project_hash in site.data.projects %}
{% assign project = project_hash[1] %}
<div class="project">
<a href="{{ project.demo | default: project.repository }}" target="_blank" class="project-image">
<img src="assets/thumbnails/projects/{{ project.preview | default: "project-placeholder.png" }}" alt="{{ project.title }}">
</a>
<a href="{{ project.repository }}" target="_blank" class="project-title">
{{ project.repository | replace: "https://github.com/", "" | replace: "https://gitlab.com/", "" }}
</a>
<ul class="project-tags">
{% for topic in project.topics %}
<li>{{ topic }}</li>
{% endfor %}
<li>{{ project.subject }}-{{ project.session }}</li>
<li>{{ project.course }}-{{ project.campus | replace: "João Pessoa", "jp" }}</li>
</ul>
</div>
{% endfor %}
</div>