-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (33 loc) · 883 Bytes
/
index.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
---
layout: default
---
{% for project in site.data.projects %}
<div class="post-snippet mb64">
<a href="{{ project.projecturl }}" target="_blank" >
<img class="mb24" alt="Post Image" src="img/{{ project.img }}" />
</a>
<div class="post-title">
<a href="{{ project.projecturl }}" target="_blank" >
<h4 class="inline-block">{{ project.title }}</h4>
</a>
</div>
<ul class="post-meta">
<!-- <li>
<i class="ti-calendar"></i>
<span>Date:
<span>{{ project.date }}</span>
</span>
</li> -->
<li>
<i class="ti-tag"></i>
<span>Category:
<a href="#">{{ project.category }}</a>
</span>
</li>
</ul>
<hr>
<p> {{ project.description }}</p>
<a class="btn btn-sm" href="{{ project.projecturl }} " target="_blank">Go to project >></a>
</div>
<!--end of post snippet-->
{% endfor %}