-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathideas.html
More file actions
32 lines (31 loc) · 941 Bytes
/
Copy pathideas.html
File metadata and controls
32 lines (31 loc) · 941 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
---
layout: default
title: Ideas
---
<ul class="projects clearfix">
{% for post in site.categories.ideas %}
<li>
<div class="project">
<a class="cover" href="{{ site.baseurl }}{{ post.url }}">
<div class="project-details">
<span> {{ post.title }} </span>
<span> {{ post.worktype }} </span>
<span> View project </span>
</div>
</a>
{% if post.opensource %} {% if post.blackbg %}
<span class="github-icon light"></span>
{% else %}
<span class="github-icon"></span>
{% endif %} {% endif %} {% if post.progress %}
<span class="progress">
<span class="under-construction"></span>
<span class="progress-bar" style="width: {{ post.progress }}%"></span>
</span>
{% endif %}
<img class="thumb" src="img/thumbs/{{ post.uid }}.jpg" />
<div class="aspect-two-one"></div>
</div>
</li>
{% endfor %}
</ul>