-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathsearch.html
31 lines (31 loc) · 1.08 KB
/
search.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
---
title: Search
layout: default
permalink: /search/
---
<noscript>
<div class="warning">
This website was poorly built and requires JavaScript for the search to properly work. Bummer. But below you can find a dump of all the features available with their name and keywords.
</div>
</noscript>
<div class="post">
<div class="post-inside">
<h1 class="post-title">Search</h1>
This is the search page. Try using the search text box above. Or browse the following list of all the features available.
</div>
</div>
{% assign features-by-category = site.features | group_by:"category" %}
{% for category in features-by-category %}
<h2 class="list-title">{{ site.data.nicenames.category[category.name] | default: category.name }}</h2>
<ul class="list list--features">
{% assign features = category.items | sort:'id' %}
{% for feature in features %}
<li>
<a href="{{ feature.url }}">{{ feature.title | escape_once }}</a>
{% if feature.keywords != nil and feature.keywords != "" %}
({{ feature.keywords | escape_once }})
{% endif %}
</li>
{% endfor %}
</ul>
{% endfor %}