-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmodules.html
executable file
·78 lines (70 loc) · 3.51 KB
/
modules.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
---
title: 'Modules'
---
{% include head.html %}
<body class="body-blue">
<div class="page-wrapper">
{% include breadcrumbs.html current=page.title %}
<div class="content-wrapper">
<div class="container">
<div id="content-header" class="content-header text-center">
<h1 class="content-title">
<span aria-hidden="true" class="icon icon_puzzle_alt"></span>
{{ page.title }}
</h1>
<div class="meta">
<i class="far fa-clock"></i>
Last updated: {{ site.time | date: '%d.%m.%Y' }}
</div>
</div>
<div class="content-body row">
<div class="col-md-9 col-12 order-1">
<div class="content-inner">
<div class="callout-block callout-success">
<div class="icon-holder">
<i class="fas fa-thumbs-up"></i>
</div>
<div class="content">
<h4 class="callout-title">Add your module:</h4>
<ol style="padding-left: 20px;">
<li>Fork project</li>
<li>Edit _data/modules.yaml</li>
<li>Add your module</li>
<li>Do a Pull Request</li>
</ol>
</div>
</div>
{% for category in site.data.categories %}
<section id="{{ category.name }}" class="content-section">
<h2 class="section-title">{{ category.name | capitalize }}</h2>
{% assign filtered-modules = site.data.modules | where:'category', category.name %}
{% for module in filtered-modules %}
<div class="section-block">
<h3 class="question">
<i class="fas fa-cube"></i>
<a target="_blank" href="{{ module.url }}">{{ module.name }}</a>
</h3>
<div class="answer">{{ module.description }}</div>
</div>
{% endfor %}
</section>
{% endfor %}
</div>
</div>
<div class="content-sidebar col-md-3 col-12 order-0 d-none d-md-flex">
<div id="content-nav" class="content-nav">
<nav id="content-menu" class="nav content-menu flex-column sticky">
{% for category in site.data.categories %}
<a class="nav-link scrollto" href="#{{ category.name }}">{{ category.name | capitalize }}</a>
{% endfor %}
</nav>
</div>
</div>
</div>
</div>
</div>
{% include promo.html %}
</div>
{% include footer.html %}
</body>
</html>