{% extends "base.html" %} {% import "utils.html" as utils %} {% block title %}Libreddit Settings{% endblock %} {% block search %} {% call utils::search("".to_owned(), "", "") %} {% endblock %} {% block content %}

Appearance

Interface

Content

{% if prefs.subscriptions.len() > 0 %}

Subscribed Feeds

{% for sub in prefs.subscriptions %}
{% if sub.starts_with("u_") -%}{{ format!("u/{}", &sub[2..]) }}{% else -%}{{ format!("r/{}", sub) }}{% endif -%}
{% 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 %}