-
Notifications
You must be signed in to change notification settings - Fork 8
/
index.html
executable file
·71 lines (58 loc) · 2.16 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
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
---
layout: default
title: "Rebble"
date: 2015-06-12 11:56:42
permalink: /
---
<div class="container">
<div class="row">
<h1 class="hugeText"> Welcome to the Rebble Help Center </h1>
</div>
<div class="row">
<div class="lite">Search for a support topic, or pick from below</div>
</div>
<div class="row">
<br><br>
<div class="wide mt-5">
<!-- <center> -->
<input class="search matchtitle" id="searchbar" onchange="performSearch()" type="text" placeholder="Search for a topic"></input>
<!-- </center> -->
</div>
</div>
<br>
<div class="row">
<div class="highlight-text lite" id="topicfilter">All topics:</div>
</div>
<div class="row mt-3">
<ul class="linklist">
<li class="searchitem" data-keywords="setup start started install rebble help first time inital"><a href="/setup/"> Setting up Rebble Web Services </a></li>
{% for post in site.topic %}
{% if post.osSpecific != true or post.os == "choose" %}
{% if post.hideFromSearch != true %}
<li class="searchitem" data-keywords="{{ post.keywords }} {{ post.prompt | downcase }}"><a href="{{ post.url | prepend: site.baseurl }}"> {{ post.prompt }} </a></li>
{% endif %}
{% endif %}
{% endfor %}
</ul>
</div>
<div class="row hidden" id="nothingFound">
Nothing quite matches, try changing your search term or asking on Discord.
</div>
</div>
{% if site.posts == 0 %}
<section>
<div class="text-content">
<p><em>There's nothing here (yet...)</em></p>
<p>
In the meantime, check out the <a href="https://discordapp.com/invite/aRUAYFN">
Discord Server</a> or subscribe to the mailing list:
</p>
{% include mailinglist.html %}
</div>
</section>
<style> footer { display: none; } </style>
{% endif %}
<script src="{{ site.baseurl }}/res/mdb/js/jquery.min.js"></script>
<script src="{{ site.baseurl }}/res/mdb/js/bootstrap.min.js"></script>
<script src="{{ site.baseurl }}/res/js/search.js"></script>
{% include footer.html %}