-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathideas.html
More file actions
50 lines (49 loc) · 1.3 KB
/
ideas.html
File metadata and controls
50 lines (49 loc) · 1.3 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
---
layout: default
---
<section class="faq">
<div class="container question col-xs-12 col-sm-8 col-sm-offset-2">
<h1 class="text-center">Hack Ideas</h1>
<hr>
<div class="row">
<div class="col-xs-24 col-sm-16">
{% for item in site.event.ideas %}
<div class="question col-xs-24 col-sm-16">
<h2 id="{{ item.id }}">{{ item.title }}</h2>
<hr>
{{ item.hook | markdownify }}
{{ item.description | markdownify }}
<hr>
Type: {{ item.type }}
{% if item.assets|length %}
<hr>
Assets
<ul>
{% for asset in item.assets %}
<li><a href="{{asset.url}}">{{asset.title}}</a> {{asset.description}}</li>
{% endfor %}
</ul>
{% endif %}
{% if item.links|length %}
<hr>
Links
<ul>
{% for link in item.links %}
<li><a href="{{link.url}}">{{link.title}}</a></li>
{% endfor %}
</ul>
{% endif %}
<hr>
<!--Facilitators
<ul>
{% for facilitator in item.facilitators %}
<li>{{facilitator.name}}</li>
{% endfor %}
</ul>-->
</div>
{% endfor %}
</div>
</div>
<hr>
</div>
</section>