libreddit/templates/search.html

73 lines
2.6 KiB
HTML
Raw Normal View History

2020-11-23 01:29:05 +01:00
{% extends "base.html" %}
2021-01-01 00:54:13 +01:00
{% import "utils.html" as utils %}
2020-11-23 01:29:05 +01:00
{% block content %}
2020-12-24 07:16:04 +01:00
<div id="column_one">
2021-01-01 00:54:13 +01:00
<form id="search_sort">
<input id="search" type="text" name="q" placeholder="Search" value="{{ query }}">
{% if sub != "" %}
<div id="inside">
<input type="checkbox" name="restrict_sr" id="restrict_sr" checked="checked" data-com.bitwarden.browser.user-edited="yes">
<label for="restrict_sr">in r/{{ sub }}</label>
</div>
{% endif %}
<select id="sort_options" name="sort">
{% call utils::options(sort.0, ["relevance", "hot", "top", "new", "comments"], "") %}
</select>{% if sort.0 != "new" %}<select id="timeframe" name="t">
{% call utils::options(sort.1, ["hour", "day", "week", "month", "year", "all"], "all") %}
2020-12-30 02:11:47 +01:00
</select>{% endif %}<input id="sort_submit" type="submit" value="&rarr;">
2020-12-24 07:16:04 +01:00
</form>
{% for post in posts %}
2021-01-01 00:54:13 +01:00
{% if post.title != "Comment" %}
2020-12-24 07:16:04 +01:00
<div class="post">
<div class="post_left">
2020-12-29 03:42:46 +01:00
<p class="post_score">{{ post.score }}</p>
2020-12-30 04:01:02 +01:00
{% if post.flags.nsfw %}<div class="nsfw">NSFW</div>{% endif %}
2020-12-24 07:16:04 +01:00
</div>
<div class="post_right">
2020-12-29 03:42:46 +01:00
<p>
2020-12-24 07:16:04 +01:00
<b><a class="post_subreddit" href="/r/{{ post.community }}">r/{{ post.community }}</a></b>
&bull; <a class="post_author" href="/u/{{ post.author }}">u/{{ post.author }}</a>
{% if post.author_flair.0 != "" %}
<small class="author_flair">{{ post.author_flair.0 }}</small>
{% endif %}
<span class="datetime" style="float: right;">{{ post.time }}</span>
2020-12-29 03:42:46 +01:00
</p>
<p class="post_title">
2020-12-24 07:16:04 +01:00
{% if post.flair.0 != "" %}
<small class="post_flair" style="color:{{ post.flair.2 }}; background:{{ post.flair.1 }}">{{ post.flair.0 }}</small>
{% endif %}
<a href="{{ post.url }}">{{ post.title }}</a>
2020-12-29 03:42:46 +01:00
</p>
2020-12-24 07:16:04 +01:00
</div>
<img class="post_thumbnail" src="{{ post.media }}">
</div><br>
2021-01-01 00:54:13 +01:00
{% else %}
<div class="comment">
<div class="comment_left">
<p class="comment_score">{{ post.score }}</p>
<div class="line"></div>
</div>
<details class="comment_right" open>
<summary class="comment_data">
<a class="comment_link" href="{{ post.url }}">COMMENT</a>
<span class="datetime">{{ post.time }}</span>
</summary>
<p class="comment_body">{{ post.body }}</p>
</details>
</div><br>
{% endif %}
2020-12-24 07:16:04 +01:00
{% endfor %}
2020-11-23 01:29:05 +01:00
2020-12-24 07:16:04 +01:00
<footer>
{% if ends.0 != "" %}
2020-12-30 02:11:47 +01:00
<a href="?sort={{ sort.0 }}{% if sort.0 == "top" %}&t={{ sort.1 }}{% endif %}&before={{ ends.0 }}">PREV</a>
2020-12-24 07:16:04 +01:00
{% endif %}
2020-11-23 01:29:05 +01:00
2020-12-24 07:16:04 +01:00
{% if ends.1 != "" %}
2020-12-30 02:11:47 +01:00
<a href="?sort={{ sort.0 }}{% if sort.0 == "top" %}&t={{ sort.1 }}{% endif %}&after={{ ends.1 }}">NEXT</a>
2020-12-24 07:16:04 +01:00
{% endif %}
</footer>
</div>
2020-11-25 02:50:12 +01:00
{% endblock %}