-
Notifications
You must be signed in to change notification settings - Fork 5
/
starter_kit.html
59 lines (55 loc) · 2.23 KB
/
starter_kit.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
title: Kalliope
---
{% include header.html %}
{% include navbar.html %}
<div class="container">
<div class="well">
<p class="lead">
<h1 class="text-primary">Starter kits</h1>
<p>A starter kit is a repository that contains an already made configuration with some brain examples for a language.
Starter kit are a good entrypoint to learn how Kalliope works.</p>
<p>
How to use a starter kit:</br>
<li>Follow the doc to <a href="https://github.com/kalliope-project/kalliope/blob/master/Docs/installation.md">install Kalliope</a></li>
<li>Clone a starter kit: <code>git clone <starter_kit_git_url.git></code></li>
<li>Place yourself into the starter kit: <code>cd cloned_starter_kit</code></li>
<li>Start kalliope: <code>kalliope start</code></li>
</p>
</p>
</div>
<div class="panel panel-primary">
<div class="panel-heading">
<h3 class="panel-title">Starter kits</h3>
</div>
<div class="panel-body">
Join the community and add your own starter kit to
<a href="https://github.com/kalliope-project/kalliope-project.github.io/blob/sources/_data/starter_kits.yml">
the list
</a>!
<table class="table table-striped table-hover">
<thead>
<tr>
<td class="vert-align text-center"><strong>Language</strong></td>
<td class="vert-align text-center"><strong>Repository</strong></td>
</tr>
</thead>
<tbody>
{% for starter_kit in site.data.starter_kits %}
<tr>
<td class="vert-align text-center">
<span class="flag-icon flag-icon-{{starter_kit.flag}}"></span>
</td>
<td class="vert-align text-center">
<a href="{{ starter_kit.repo_url }}" class="btn btn-primary" type="button">
{{ starter_kit.language }}
</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% include footer.html %}