{% extends "base.html" %} {% import "utils.html" as utils %} {% block title %}Libreddit: search results - {{ params.q }}{% endblock %} {% block subscriptions %} {% call utils::sub_list("") %} {% endblock %} {% block content %}
{% if sub != "" %}
{% endif %} {% if params.sort != "new" %}{% endif %}
{% if subreddits.len() > 0 %}
{% for subreddit in subreddits %}
{% if subreddit.icon != "" %}r/{{ subreddit.name }} icon{% endif %}

{{ subreddit.name }} {{ subreddit.subscribers.0 }} Members

{{ subreddit.description }}

{% endfor %}
{% endif %} {% for post in posts %} {% if post.flags.nsfw && prefs.show_nsfw != "on" %} {% else if post.title != "Comment" %} {% call utils::post_in_list(post) %} {% else %}

{{ post.score.0 }}

COMMENT {{ post.rel_time }}

{{ post.body }}

{% endif %} {% endfor %} {% if prefs.use_hls == "on" %} {% endif %}
{% endblock %}