{% if prefs.subscriptions.len() > 0 %}
{% for sub in prefs.subscriptions %}
{% let feed -%}
{% if sub.starts_with("u_") -%}{% let feed = format!("u/{}", &sub[2..]) -%}{% else -%}{% let feed = format!("r/{}", sub) -%}{% endif -%}
{{ feed }}
{% endfor %}
{% endif %}
{% if !prefs.filters.is_empty() %}
{% for sub in prefs.filters %}
{% let feed -%}
{% if sub.starts_with("u_") -%}{% let feed = format!("u/{}", &sub[2..]) -%}{% else -%}{% let feed = format!("r/{}", sub) -%}{% endif -%}
{{ feed }}
{% endfor %}
{% endif %}
Note: settings and subscriptions are saved in browser cookies. Clearing your cookies will reset them.
You can restore your current settings and subscriptions after clearing your cookies using this link.
{% endblock %}