forked from mruby/mruby.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
43 lines (42 loc) · 1.02 KB
/
index.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
---
layout: default
title: mruby - libraries
---
<div class="row">
<div class="col-md-12">
<h2 class="page-header">Libraries</h2>
</div>
</div>
<div class="row">
<div class="col-md-12">
<p>
<strong>mrbgems</strong> is mruby's package manager. See the <a href="https://github.com/mruby/mruby/blob/master/doc/guides/mrbgems.md">mrbgems doc</a> for more information about how to use it.
</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<table class="table table-striped table-bordered">
<thead>
<th>Name</th>
<th>Description</th>
<th>Author</th>
</thead>
<tbody>
{% for mgem_data in site.data.mgems %}
<tr>
<td>
<a href="{{ mgem_data.website }}">{{ mgem_data.name }}</a>
</td>
<td>
{{ mgem_data.description }}
</td>
<td>
{{ mgem_data.author }}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>