diff --git a/templates/settings.html b/templates/settings.html index 8d841c0..07ad84b 100644 --- a/templates/settings.html +++ b/templates/settings.html @@ -4,7 +4,7 @@ {% block title %}Libreddit Settings{% endblock %} {% block search %} - {% call utils::search("".to_owned(), "", "") %} + {% call utils::search("".to_owned(), "") %} {% endblock %} {% block content %} diff --git a/templates/subreddit.html b/templates/subreddit.html index 2584ca3..b0c7dcb 100644 --- a/templates/subreddit.html +++ b/templates/subreddit.html @@ -12,7 +12,7 @@ {% endblock %} {% block subscriptions %} - {% call utils::sub_list(sub.name.as_str(), "wide") %} + {% call utils::sub_list(sub.name.as_str()) %} {% endblock %} {% block body %} diff --git a/templates/user.html b/templates/user.html index 4dbd03a..039c7c7 100644 --- a/templates/user.html +++ b/templates/user.html @@ -2,7 +2,7 @@ {% import "utils.html" as utils %} {% block search %} - {% call utils::search("".to_owned(), "", "") %} + {% call utils::search("".to_owned(), "") %} {% endblock %} {% block title %}{{ user.name.replace("u/", "") }} (u/{{ user.name }}) - Libreddit{% endblock %}