-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.html
36 lines (32 loc) · 984 Bytes
/
settings.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
---
layout: article
title: Settings
permalink: /settings/
# Not supported currently
# https://github.com/jekyll/jekyll-seo-tag/issues/100
noindex: true
---
<style type="text/css">
{% include form.css %}
</style>
<form>
<label for="highlight-words">Highlight Words (comma-separated):</label><br>
<textarea cols=20 wrap=hard oninput="this.parentNode.dataset.value = this.value" rows="1" id="highlight-words" style="width:100%" rows=3></textarea>
<input type=button id="btn-settings-save" value=Save>
</form>
<form>
<h2>Hide These Topics</h2>
<fieldset>
<legend>Topics are only hidden on the home screen</legend>
{% for T in site.data.topics %}
<label for="checkbox-hide-{{T[0]}}">
<input type=checkbox class="checkbox-hide" id="checkbox-hide-{{T[0]}}" value="{{T[0]}}">
{{T[0] | capitalize}}
</label>
{% endfor %}
</fieldset>
</form>
<form>
<label for=btn-settings-reset>Reset Read Articles</label>
<input type=button id="btn-settings-reset" value=Reset>
</form>