forked from mediafutureseu/mediafutureseu.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtools.html
48 lines (41 loc) · 1.53 KB
/
tools.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
---
layout: default
title: Tools | Mediafutures
description: Free Open Source Tools for Data Analysis and Visualization
keywords: mediafutures, tools
url: https://mediafutureseu.github.io/tools
custom_css: tools.css
custom_js: tools.js
---
<!-- Header -->
<div class="header simple-header">
<div class="Grid container">
<div id="header-text" class="Grid-cell">
<h1 class="large-title">Tools</h1>
<h1 class="squad-subheading">Free Open Source Tools for Data Analysis and Visualization
<div class="search-bar">
<input class="search-box" type="text" name="search" placeholder="Search Tools" autocomplete="off" />
<span class="Icon Icon--search"></span>
</div>
</div>
</div>
</div>
<!-- Container for no results text -->
<div class="Grid container no-results-container"></div>
<!-- Tools grid (See renderTools() in tools.js) -->
<div class="Grid container all-tools"></div>
<!-- End of all-tools -->
<script type="text/javascript">
let allTools = [];
{% for item in site.data.tools %}
allTools.push({
name: "{{ item["name"] }}",
project_url: "{{ item["project_url"] }}",
code_url: "{{ item["code_url"] }}",
description: "{{ item["description"] }}",
category_name: "{{ item["category_name"] }}",
type: "{{ item["type"] }}",
})
{% endfor %}
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fuse.js/3.0.4/fuse.min.js" async></script>