forked from ev3dev/ev3dev.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.html
More file actions
43 lines (42 loc) · 1.45 KB
/
project.html
File metadata and controls
43 lines (42 loc) · 1.45 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
---
layout: page
---
<div class="col-lg-9">
{% include youtube-embed.html %}
{{ content }}
</div>
<div class="col-lg-3">
<div class="panel panel-default">
<div class="panel-heading">
<h3 class="panel-title">Project Info</h3>
</div>
<ul class="list-group">
{% if page.programming_language %}
<li class="list-group-item">
Written with {% include language-logo.html language=page.programming_language %}<br />
</li>
{% endif %}
{% if page.project_homepage_url %}
<li class="list-group-item">
<a class="btn btn-primary" href="{{ page.project_homepage_url }}">Project homepage</a>
</li>
{% endif %}
{% if page.building_instructions_url %}
<li class="list-group-item">
<a class="btn btn-primary" href="{{ page.building_instructions_url }}">Building instructions</a>
</li>
{% endif %}
{% if page.source_code_url %}
<li class="list-group-item">
<a class="btn btn-primary" href="{{ page.source_code_url }}">Source code</a>
</li>
{% endif %}
{% if page.author %}
<li class="list-group-item">
{% assign author_card = page.author %}
{% include author-card.html %}
</li>
{% endif %}
</ul>
</div>
</div>