libreddit/templates/user.html

113 lines
4.1 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 %}
{% block search %}
{% call utils::search("".to_owned(), "", "") %}
{% endblock %}
{% block title %}{{ user.name.replace("u/", "") }} (u/{{ user.name }}) - Libreddit{% endblock %}
2021-01-07 17:38:05 +01:00
2020-11-23 01:29:05 +01:00
{% block body %}
2021-01-10 22:08:36 +01:00
<main>
2020-12-24 07:16:04 +01:00
<div id="column_one">
2021-01-01 00:54:13 +01:00
<form id="sort">
<select name="sort">
{% call utils::options(sort.0, ["hot", "new", "top"], "") %}
2020-12-30 02:11:47 +01:00
</select>{% if sort.0 == "top" %}<select id="timeframe" name="t">
2021-01-01 00:54:13 +01:00
{% 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>
2021-01-09 02:35:04 +01:00
<div id="posts">
2020-12-24 07:16:04 +01:00
{% for post in posts %}
2021-01-09 02:35:04 +01:00
{% if post.flags.nsfw && prefs.hide_nsfw == "on" %}
{% else if post.title != "Comment" %}
2021-01-12 02:38:35 +01:00
<div class="post {% if post.flags.stickied %}stickied{% endif %} {% if prefs.layout == "card" && post.post_type == "image" %}card_post{% endif %}">
2020-12-24 07:16:04 +01:00
<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">
2021-01-05 04:26:41 +01:00
<div class="post_text">
<p class="post_header">
<a class="post_subreddit" href="/r/{{ post.community }}">r/{{ post.community }}</a>
2021-01-12 23:34:16 +01:00
{% if post.author_flair.flair_parts.len() > 0 %}
<small class="author_flair">{% call utils::render_flair(post.author_flair.flair_parts) %}</small>
{% endif %}
2021-01-05 06:17:19 +01:00
<span class="dot">&bull;</span>
2021-01-05 06:32:22 +01:00
<span class="datetime">{{ post.time }}</span>
2021-01-05 04:26:41 +01:00
</p>
<p class="post_title">
2021-01-12 22:43:03 +01:00
{% if post.flair.background_color == "Comment" %}
{% else if post.flair.background_color == "" %}
2021-01-05 04:26:41 +01:00
{% else %}
2021-01-12 23:34:16 +01:00
<small class="post_flair" style="color:{{ post.flair.foreground_color }}; background:{{ post.flair.background_color }}">{% call utils::render_flair(post.flair.flair_parts) %}</small>
2021-01-05 04:26:41 +01:00
{% endif %}
<a href="{{ post.permalink }}">{{ post.title }}</a>
</p>
</div>
2021-01-06 03:04:49 +01:00
<!-- POST MEDIA/THUMBNAIL -->
2021-01-09 02:35:04 +01:00
{% if prefs.layout == "card" && post.post_type == "image" %}
2021-01-06 03:04:49 +01:00
<img class="post_media" src="{{ post.media }}"/>
2021-01-12 02:38:35 +01:00
{% else if post.post_type != "self" %}
<a class="post_thumbnail {% if post.thumbnail == "" %}no_thumbnail{% endif %}" href="{% if post.post_type == "link" %}{{ post.media }}{% else %}{{ post.permalink }}{% endif %}">
{% if post.thumbnail == "" %}
<svg viewBox="0 0 100 106" width="50" height="53" xmlns="http://www.w3.org/2000/svg">
<path d="M35,15h-15a10,10 0,0,0 0,20h25a10,10 0,0,0 10,-10m-12.5,0a10, 10 0,0,1 10, -10h25a10,10 0,0,1 0,20h-15" fill="none" stroke-width="5" stroke-linecap="round"/>
</svg>
{% else %}
<img src="{{ post.thumbnail }}">
{% endif %}
<span>{% if post.post_type == "link" %}{{ post.domain }}{% else %}{{ post.post_type }}{% endif %}</span>
</a>
2021-01-06 03:04:49 +01:00
{% endif %}
2020-12-24 07:16:04 +01:00
</div>
2021-01-04 04:44:44 +01:00
</div>
2020-12-24 07:16:04 +01:00
{% else %}
<div class="comment">
<div class="comment_left">
2020-12-29 03:42:46 +01:00
<p class="comment_score">{{ post.score }}</p>
2020-12-28 00:37:01 +01:00
<div class="line"></div>
2020-12-24 07:16:04 +01:00
</div>
2020-12-29 03:42:46 +01:00
<details class="comment_right" open>
<summary class="comment_data">
<a class="comment_link" href="{{ post.permalink }}">COMMENT</a>
2020-12-24 07:16:04 +01:00
<span class="datetime">{{ post.time }}</span>
2020-12-29 03:42:46 +01:00
</summary>
<p class="comment_body">{{ post.body }}</p>
</details>
2021-01-04 04:44:44 +01:00
</div>
2020-12-24 07:16:04 +01:00
{% endif %}
2021-01-09 02:35:04 +01:00
2020-12-24 07:16:04 +01:00
{% endfor %}
2021-01-09 02:35:04 +01:00
</div>
2020-12-27 21:36:10 +01:00
<footer>
{% if ends.0 != "" %}
2021-01-15 20:21:59 +01:00
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&before={{ ends.0 }}">PREV</a>
2020-12-27 21:36:10 +01:00
{% endif %}
{% if ends.1 != "" %}
2021-01-15 20:21:59 +01:00
<a href="?sort={{ sort.0 }}&t={{ sort.1 }}&after={{ ends.1 }}">NEXT</a>
2020-12-27 21:36:10 +01:00
{% endif %}
</footer>
2020-12-24 07:16:04 +01:00
</div>
<aside>
2021-01-04 04:44:44 +01:00
<div class="panel" id="user">
2020-12-29 03:42:46 +01:00
<img id="user_icon" src="{{ user.icon }}">
<p id="user_title">{{ user.title }}</p>
2020-12-29 03:42:46 +01:00
<p id="user_name">u/{{ user.name }}</p>
<div id="user_description">{{ user.description }}</div>
<div id="user_details">
2020-12-24 07:16:04 +01:00
<label>Karma</label>
<label>Created</label>
<div>{{ user.karma }}</div>
<div>{{ user.created }}</div>
</div>
2020-11-23 20:33:43 +01:00
</div>
2020-12-24 07:16:04 +01:00
</aside>
2020-11-23 01:29:05 +01:00
</main>
2021-01-12 22:43:03 +01:00
{% endblock %}