spikecodes
3 months ago
No known key found for this signature in database
GPG Key ID: 4CECFF9B463BCB
4 changed files with
6 additions and
6 deletions
-
templates/post.html
-
templates/subreddit.html
-
templates/user.html
-
templates/utils.html
|
|
@ -55,7 +55,7 @@ |
|
|
|
</span> |
|
|
|
{% endif %} |
|
|
|
</p> |
|
|
|
<p class="post_title"> |
|
|
|
<h1 class="post_title"> |
|
|
|
{{ post.title }} |
|
|
|
{% if post.flair.flair_parts.len() > 0 %} |
|
|
|
<a href="/r/{{ post.community }}/search?q=flair_name%3A%22{{ post.flair.text }}%22&restrict_sr=on" |
|
|
@ -63,7 +63,7 @@ |
|
|
|
style="color:{{ post.flair.foreground_color }}; background:{{ post.flair.background_color }};">{% call utils::render_flair(post.flair.flair_parts) %}</a> |
|
|
|
{% endif %} |
|
|
|
{% if post.flags.nsfw %} <small class="nsfw">NSFW</small>{% endif %} |
|
|
|
</p> |
|
|
|
</h1> |
|
|
|
|
|
|
|
<!-- POST MEDIA --> |
|
|
|
<!-- post_type: {{ post.post_type }} --> |
|
|
|
|
|
@ -89,7 +89,7 @@ |
|
|
|
{% endif %} |
|
|
|
<div id="sub_meta"> |
|
|
|
<img loading="lazy" id="sub_icon" src="{{ sub.icon }}" alt="Icon for r/{{ sub.name }}"> |
|
|
|
<p id="sub_title">{{ sub.title }}</p> |
|
|
|
<h1 id="sub_title">{{ sub.title }}</h1> |
|
|
|
<p id="sub_name">r/{{ sub.name }}</p> |
|
|
|
<p id="sub_description">{{ sub.description }}</p> |
|
|
|
<div id="sub_details"> |
|
|
|
|
|
@ -81,7 +81,7 @@ |
|
|
|
{% endif %} |
|
|
|
<div class="panel" id="user"> |
|
|
|
<img loading="lazy" id="user_icon" src="{{ user.icon }}" alt="User icon"> |
|
|
|
<p id="user_title">{{ user.title }}</p> |
|
|
|
<h1 id="user_title">{{ user.title }}</h1> |
|
|
|
<p id="user_name">u/{{ user.name }}</p> |
|
|
|
<div id="user_description">{{ user.description }}</div> |
|
|
|
<div id="user_details"> |
|
|
|
|
|
@ -83,7 +83,7 @@ |
|
|
|
{% endfor %} |
|
|
|
{% endif %} |
|
|
|
</p> |
|
|
|
<p class="post_title"> |
|
|
|
<h2 class="post_title"> |
|
|
|
{% if post.flair.flair_parts.len() > 0 %} |
|
|
|
<a href="/r/{{ post.community }}/search?q=flair_name%3A%22{{ post.flair.text }}%22&restrict_sr=on" |
|
|
|
class="post_flair" |
|
|
@ -91,7 +91,7 @@ |
|
|
|
dir="ltr">{% call render_flair(post.flair.flair_parts) %}</a> |
|
|
|
{% endif %} |
|
|
|
<a href="{{ post.permalink }}">{{ post.title }}</a>{% if post.flags.nsfw %} <small class="nsfw">NSFW</small>{% endif %} |
|
|
|
</p> |
|
|
|
</h2> |
|
|
|
<!-- POST MEDIA/THUMBNAIL --> |
|
|
|
{% if (prefs.layout.is_empty() || prefs.layout == "card") && post.post_type == "image" %} |
|
|
|
<a href="{{ post.media.url }}" class="post_media_image {% if post.media.height / post.media.width < 2 %}short{% endif %}" > |
|
|
|