🏡 index : github.com/captn3m0/news.git

---
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>