-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (35 loc) · 1.12 KB
/
index.html
File metadata and controls
43 lines (35 loc) · 1.12 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: default
title: Living Off the Pipeline
---
<h1><a href="{{site.baseurl}}">LOTP</a></h1>
{% include home.html %}
<h2>Tags</h2>
<p class="tags">
{% for tag in site.data.tags %}
<a class="tag" data-tag="{{tag[0]}}" href="{{site.baseurl}}?#{{ tag[0] }}" title="{{ tag[1].docs }}">
{{ tag[0] }}
</a>
{% endfor %}
<a class="reset" href="{{site.baseurl}}?">Reset</a>
</p>
<table class="lotp">
<thead>
<th>Tool</th>
<th>Tags</th>
</thead>
<tbody>
{% assign sorted_tools = site.tool | sort_natural: "title" %}
{% for tool in sorted_tools %}
<tr data-tags="{% for tag in tool.tags %}{{tag}} {% endfor %}">
<td><a href="{{site.baseurl}}{{ tool.url }}">{{ tool.title }}</a></td>
<td>
{% for tag in tool.tags %}
<a class="tag" data-tag="{{tag}}" href="{{site.baseurl}}?#{{ tag }}">{{ tag }}</a>
{% endfor %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
<script src="{{site.baseurl}}/assets/js/search.js"></script>