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
46 lines (45 loc) · 1.69 KB
/
project.html
File metadata and controls
46 lines (45 loc) · 1.69 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
---
layout: page
---
<div class="row">
<div class="col-lg-9">
{% include /util/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 /style/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">
{% for author in page.author %}
{% include /util/author-card.html author = author %}
{% endfor %}
</li>
{% endif %}
</ul>
</div>
</div>
</div>