2021-01-01 12:54:13 +13:00
{% macro options(current, values, default) -%}
{% for value in values %}
2021-12-27 18:18:20 +13:00
< option value = "{{ value }}" { % if current = = value . to_string ( ) | | ( current = = " " & & value . to_string ( ) = = default . to_string ( ) ) % } selected { % endif % } >
2021-02-21 09:14:32 +13:00
{{ format!("{}{}", value.get(0..1).unwrap_or_default().to_uppercase(), value.get(1..).unwrap_or_default()) }}
2021-01-01 12:54:13 +13:00
< / option >
{% endfor %}
{%- endmacro %}
{% macro sort(root, methods, selected) -%}
{% for method in methods %}
2021-12-27 18:18:20 +13:00
< a { % if method . to_string ( ) = = selected . to_string ( ) % } class = "selected" { % endif % } href = "{{ root }}/{{ method }}" >
2021-02-21 09:14:32 +13:00
{{ format!("{}{}", method.get(0..1).unwrap_or_default().to_uppercase(), method.get(1..).unwrap_or_default()) }}
2021-01-01 12:54:13 +13:00
< / a >
{% endfor %}
{%- endmacro %}
{% macro search(root, search) -%}
2021-03-18 13:28:05 +13:00
< form action = "{% if root != " / r / " & & ! root . is_empty ( ) % } { { root } } { % endif % } / search " id = "searchbox" >
2023-12-27 12:25:52 +13:00
< input id = "search" type = "text" name = "q" placeholder = "Search" title = "Search redlib" value = "{{ search }}" >
2021-01-01 17:21:56 +13:00
{% if root != "/r/" & & !root.is_empty() %}
2021-01-01 12:54:13 +13:00
< div id = "inside" >
2022-01-06 11:06:41 +13:00
< input type = "checkbox" name = "restrict_sr" id = "restrict_sr" checked >
2021-02-13 17:53:33 +13:00
< label for = "restrict_sr" class = "search_label" title = "Restrict search to this subreddit" > in {{ root }}< / label >
2021-01-01 12:54:13 +13:00
< / div >
{% endif %}
2021-01-18 12:51:03 +13:00
< button class = "submit" >
< svg width = "15" viewBox = "0 0 110 100" fill = "none" stroke-width = "10" stroke-linecap = "round" >
< path d = "M20 50 H100" / >
< path d = "M75 15 L100 50 L75 85" / >
→
< / svg >
< / button >
2021-01-01 12:54:13 +13:00
< / form >
2021-01-13 10:43:03 +13:00
{%- endmacro %}
2021-02-21 10:59:16 +13:00
{% macro render_flair(flair_parts) -%}
2021-12-27 18:18:20 +13:00
{% for flair_part in flair_parts.clone() %}{% if flair_part.flair_part_type == "emoji" %}< span class = "emoji" style = "background-image:url('{{ flair_part.value }}');" > < / span > {% else if flair_part.flair_part_type == "text" & & !flair_part.value.is_empty() %}< span > {{ flair_part.value }}< / span > {% endif %}{% endfor %}
2021-01-13 10:43:03 +13:00
{%- endmacro %}
2021-01-30 18:00:55 +13:00
2021-01-31 11:52:18 +13:00
{% macro sub_list(current) -%}
2021-02-02 14:50:00 +13:00
< details id = "feeds" >
< summary > Feeds< / summary >
< div id = "feed_list" >
< p > MAIN FEEDS< / p >
< a href = "/" > Home< / a >
< a href = "/r/popular" > Popular< / a >
< a href = "/r/all" > All< / a >
2022-05-21 17:42:05 +12:00
{% if prefs.subscriptions.len() > 0 %}
< p > REDDIT FEEDS< / p >
{% for sub in prefs.subscriptions %}
< a href = "/r/{{ sub }}" { % if sub = = current % } class = "selected" { % endif % } > {{ sub }}< / a >
{% endfor %}
{% endif %}
2021-01-31 15:16:42 +13:00
< / div >
< / details >
2021-01-30 18:00:55 +13:00
{%- endmacro %}
2021-02-04 08:11:04 +13:00
2021-05-10 13:25:52 +12:00
{% macro render_hls_notification(redirect_url) -%}
{% if post.post_type == "video" & & !post.media.alt_url.is_empty() & & prefs.hide_hls_notification != "on" %}
2021-05-17 03:41:47 +12:00
< div class = "post_notification" > < p > < a href = "/settings/update/?use_hls=on&redirect={{ redirect_url }}" > Enable HLS< / a > to view with audio, or < a href = "/settings/update/?hide_hls_notification=on&redirect={{ redirect_url }}" > disable this notification< / a > < / p > < / div >
2021-05-10 13:25:52 +12:00
{% endif %}
{%- endmacro %}
2022-11-10 05:16:51 +13:00
{% macro post(post) -%}
2024-06-22 22:47:33 +12:00
{% set post_should_be_blurred = post.flags.spoiler & & prefs.blur_spoiler=="on" -%}
2022-11-10 05:16:51 +13:00
<!-- POST CONTENT -->
< div class = "post highlighted" >
< p class = "post_header" >
< a class = "post_subreddit" href = "/r/{{ post.community }}" > r/{{ post.community }}< / a >
< span class = "dot" > • < / span >
< a class = "post_author {{ post.author.distinguished }}" href = "/user/{{ post.author.name }}" > u/{{ post.author.name }}< / a >
{% if post.author.flair.flair_parts.len() > 0 %}
< small class = "author_flair" > {% call render_flair(post.author.flair.flair_parts) %}< / small >
{% endif %}
< span class = "dot" > • < / span >
< span class = "created" title = "{{ post.created }}" > {{ post.rel_time }}< / span >
2023-01-02 15:39:38 +13:00
{% if !post.awards.is_empty() & & prefs.hide_awards != "on" %}
2022-11-10 05:16:51 +13:00
< span class = "dot" > • < / span >
< span class = "awards" >
{% for award in post.awards.clone() %}
< span class = "award" title = "{{ award.name }}" >
< img alt = "{{ award.name }}" src = "{{ award.icon_url }}" width = "16" height = "16" / >
{{ award.count }}
< / span >
{% endfor %}
< / span >
{% endif %}
< / p >
< 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"
class="post_flair"
style="color:{{ post.flair.foreground_color }}; background:{{ post.flair.background_color }};">{% call render_flair(post.flair.flair_parts) %}< / a >
{% endif %}
{% if post.flags.nsfw %} < small class = "nsfw" > NSFW< / small > {% endif %}
2024-06-22 22:38:13 +12:00
{% if post.flags.spoiler %} < small class = "spoiler" > Spoiler< / small > {% endif %}
2022-11-10 05:16:51 +13:00
< / h1 >
<!-- POST MEDIA -->
<!-- post_type: {{ post.post_type }} -->
{% if post.post_type == "image" %}
< div class = "post_media_content" >
< a href = "{{ post.media.url }}" class = "post_media_image" >
2023-03-04 01:50:05 +13:00
{% if post.media.height == 0 || post.media.width == 0 %}
2024-06-22 22:47:33 +12:00
<!-- i.redd.it images special case -->
< img width = "100%" height = "100%" loading = "lazy" alt = "Post image" src = "{{ post.media.url }}" { % if post_should_be_blurred % } class = "post_nsfw_blur" { % endif % } / >
2023-03-04 01:50:05 +13:00
{% else %}
2022-11-10 05:16:51 +13:00
< svg
width="{{ post.media.width }}px"
height="{{ post.media.height }}px"
2024-06-22 22:47:33 +12:00
{%if post_should_be_blurred %}class="post_nsfw_blur"{% endif %}
2022-11-10 05:16:51 +13:00
xmlns="http://www.w3.org/2000/svg">
< image width = "100%" height = "100%" href = "{{ post.media.url }}" / >
< desc >
< img loading = "lazy" alt = "Post image" src = "{{ post.media.url }}" / >
< / desc >
< / svg >
2023-03-04 01:50:05 +13:00
{% endif %}
2022-11-10 05:16:51 +13:00
< / a >
< / div >
{% else if post.post_type == "video" || post.post_type == "gif" %}
{% if prefs.use_hls == "on" & & !post.media.alt_url.is_empty() %}
< script src = "/hls.min.js" > < / script >
< div class = "post_media_content" >
2024-06-22 22:47:33 +12:00
< video class = "post_media_video short {% if prefs.autoplay_videos == " on " % } hls_autoplay { % endif % } { % if post_should_be_blurred % } post_nsfw_blur { % endif % } " { % if post . media . width > 0 & & post.media.height > 0 %}width="{{ post.media.width }}" height="{{ post.media.height }}"{% endif %} poster="{{ post.media.poster }}" preload="none" controls>
2022-11-10 05:16:51 +13:00
< source src = "{{ post.media.alt_url }}" type = "application/vnd.apple.mpegurl" / >
< source src = "{{ post.media.url }}" type = "video/mp4" / >
< / video >
< / div >
< script src = "/playHLSVideo.js" > < / script >
{% else %}
< div class = "post_media_content" >
2024-06-22 22:47:33 +12:00
< video class = "post_media_video{%if post_should_be_blurred %} post_nsfw_blur{% endif %}" src = "{{ post.media.url }}" controls { % if prefs . autoplay_videos = = " on " % } autoplay { % endif % } loop > < a href = {{ post . media . url } } > Video< / a > < / video >
2022-11-10 05:16:51 +13:00
< / div >
{% call render_hls_notification(post.permalink[1..]) %}
{% endif %}
{% else if post.post_type == "gallery" %}
< div class = "gallery" >
{% for image in post.gallery -%}
< figure >
< a href = "{{ image.url }}" > < img loading = "lazy" alt = "Gallery image" src = "{{ image.url }}" / > < / a >
< figcaption >
< p > {{ image.caption }}< / p >
{% if image.outbound_url.len() > 0 %}
< p > < a class = "outbound_url" href = "{{ image.outbound_url }}" rel = "nofollow" > {{ image.outbound_url }}< / a >
{% endif %}
< / figcaption >
< / figure >
{%- endfor %}
< / div >
{% else if post.post_type == "link" %}
< a id = "post_url" href = "{{ post.media.url }}" rel = "nofollow" > {{ post.media.url }}< / a >
{% endif %}
<!-- POST BODY -->
< div class = "post_body" > {{ post.body|safe }}< / div >
2023-03-24 07:29:28 +13:00
< div class = "post_score" title = "{{ post.score.1 }}" >
2023-03-23 16:29:48 +13:00
{% if prefs.hide_score != "on" %}
2023-03-24 07:29:28 +13:00
{{ post.score.0 }}
{% else %}
•
2023-03-23 16:29:48 +13:00
{% endif %}
2023-03-24 07:29:28 +13:00
< span class = "label" > Upvotes< / span > < / div >
2022-11-10 05:16:51 +13:00
< div class = "post_footer" >
< ul id = "post_links" >
2024-07-05 13:32:12 +12:00
< li >
< a href = "{{ post.permalink }}" >
< span class = "desktop_item" > perma< / span > link
< / a >
< / li >
2022-11-10 05:16:51 +13:00
{% if post.num_duplicates > 0 %}
2024-07-05 13:32:12 +12:00
< li >
< a href = "/r/{{ post.community }}/duplicates/{{ post.id }}" >
dup< span class = "desktop_item" > licat< / span > es
< / a >
< / li >
2022-11-10 05:16:51 +13:00
{% endif %}
2023-02-08 20:22:37 +13:00
{% call external_reddit_link(post.permalink) %}
2024-07-05 13:32:12 +12:00
{% if post.media.download_name != "" %}
< li >
< a href = "{{ post.media.url }}" download = "{{ post.media.download_name }}" >
< span class = "mobile_item" > dl< / span >
< span class = "desktop_item" > download< / span >
< / a >
< / li >
{% endif %}
2022-11-10 05:16:51 +13:00
< / ul >
< p > {{ post.upvote_ratio }}%< span id = "upvoted" > Upvoted< / span > < / p >
< / div >
< / div >
{%- endmacro %}
2023-02-08 20:22:37 +13:00
{% macro external_reddit_link(permalink) %}
2024-07-05 13:32:12 +12:00
< li >
2023-02-08 20:22:37 +13:00
< a
{% if prefs.disable_visit_reddit_confirmation != "on" %}
href="#popup"
{% else %}
href="https://reddit.com{{ permalink }}"
rel="nofollow"
{% endif %}
>reddit< / a >
{% if prefs.disable_visit_reddit_confirmation != "on" %}
{% call visit_reddit_confirmation(permalink) %}
{% endif %}
< / li >
{% endmacro %}
2021-02-04 08:11:04 +13:00
{% macro post_in_list(post) -%}
2024-06-22 22:16:12 +12:00
{% set post_should_be_blurred = (post.flags.nsfw & & prefs.blur_nsfw=="on") || (post.flags.spoiler & & prefs.blur_spoiler=="on") -%}
2021-05-10 13:25:52 +12:00
< div class = "post {% if post.flags.stickied %}stickied{% endif %}" id = "{{ post.id }}" >
2021-02-04 08:11:04 +13:00
< p class = "post_header" >
2021-04-07 05:23:05 +12:00
{% let community -%}
{% if post.community.starts_with("u_") -%}
{% let community = format!("u/{}", & post.community[2..]) -%}
{% else -%}
{% let community = format!("r/{}", post.community) -%}
{% endif -%}
< a class = "post_subreddit" href = "/{{ community }}" > {{ community }}< / a >
2021-02-04 08:11:04 +13:00
< span class = "dot" > • < / span >
2022-01-09 15:50:53 +13:00
< a class = "post_author {{ post.author.distinguished }}" href = "/u/{{ post.author.name }}" > u/{{ post.author.name }}< / a >
2021-02-04 08:11:04 +13:00
< span class = "dot" > • < / span >
< span class = "created" title = "{{ post.created }}" > {{ post.rel_time }}< / span >
2023-01-02 15:39:38 +13:00
{% if !post.awards.is_empty() & & prefs.hide_awards != "on" %}
2021-11-25 15:08:27 +13:00
{% for award in post.awards.clone() %}
< span class = "award" title = "{{ award.name }}" >
< img alt = "{{ award.name }}" src = "{{ award.icon_url }}" width = "16" height = "16" / >
< / span >
{% endfor %}
{% endif %}
2021-02-04 08:11:04 +13:00
< / p >
2022-05-22 10:47:58 +12:00
< h2 class = "post_title" >
2021-02-04 08:11:04 +13:00
{% if post.flair.flair_parts.len() > 0 %}
2021-03-18 13:28:05 +13:00
< a href = "/r/{{ post.community }}/search?q=flair_name%3A%22{{ post.flair.text }}%22&restrict_sr=on"
2021-02-22 17:28:04 +13:00
class="post_flair"
2021-05-07 07:11:25 +12:00
style="color:{{ post.flair.foreground_color }}; background:{{ post.flair.background_color }};"
dir="ltr">{% call render_flair(post.flair.flair_parts) %}< / a >
2021-02-04 08:11:04 +13:00
{% endif %}
2024-06-22 22:38:13 +12:00
< a href = "{{ post.permalink }}" > {{ post.title }}< / a > {% if post.flags.nsfw %} < small class = "nsfw" > NSFW< / small > {% endif %}{% if post.flags.spoiler %} < small class = "spoiler" > Spoiler< / small > {% endif %}
2022-05-22 10:47:58 +12:00
< / h2 >
2021-02-04 08:11:04 +13:00
<!-- POST MEDIA/THUMBNAIL -->
{% if (prefs.layout.is_empty() || prefs.layout == "card") & & post.post_type == "image" %}
2022-09-27 14:35:23 +13:00
< div class = "post_media_content" >
2023-03-04 01:50:05 +13:00
< a href = "{{ post.media.url }}" class = "post_media_image {% if post.media.height < post.media.width*2 %}short{% endif %}" >
{% if post.media.height == 0 || post.media.width == 0 %}
<!-- i.redd.it images speical case -->
< img width = "100%" height = "100%" loading = "lazy" alt = "Post image" src = "{{ post.media.url }}" / >
{% else %}
2022-09-27 14:35:23 +13:00
< svg
2024-06-22 22:16:12 +12:00
{%if post_should_be_blurred %}class="post_nsfw_blur"{% endif %}
2022-09-27 14:35:23 +13:00
width="{{ post.media.width }}px"
height="{{ post.media.height }}px"
xmlns="http://www.w3.org/2000/svg">
< image width = "100%" height = "100%" href = "{{ post.media.url }}" / >
< desc >
< img loading = "lazy" alt = "Post image" src = "{{ post.media.url }}" / >
< / desc >
< / svg >
2023-03-04 01:50:05 +13:00
{% endif %}
2022-09-27 14:35:23 +13:00
< / a >
< / div >
2024-07-06 08:33:06 +12:00
{% else if (prefs.layout.is_empty() || prefs.layout == "card") & & (post.post_type == "gif" || post.post_type == "video") %}
2021-05-10 13:25:52 +12:00
{% if prefs.use_hls == "on" & & !post.media.alt_url.is_empty() %}
2022-09-27 14:35:23 +13:00
< div class = "post_media_content" >
2024-06-22 22:16:12 +12:00
< video class = "post_media_video short {%if post_should_be_blurred %}post_nsfw_blur{% endif %} {% if prefs.autoplay_videos == " on " % } hls_autoplay { % endif % } " { % if post . media . width > 0 & & post.media.height > 0 %}width="{{ post.media.width }}" height="{{ post.media.height }}"{% endif %} poster="{{ post.media.poster }}" controls preload="none">
2022-09-27 14:35:23 +13:00
< source src = "{{ post.media.alt_url }}" type = "application/vnd.apple.mpegurl" / >
< source src = "{{ post.media.url }}" type = "video/mp4" / >
< / video >
< / div >
2021-05-10 13:25:52 +12:00
{% else %}
2022-09-27 14:35:23 +13:00
< div class = "post_media_content" >
2024-06-22 22:16:12 +12:00
< video class = "post_media_video short {%if post_should_be_blurred %}post_nsfw_blur{% endif %}" src = "{{ post.media.url }}" { % if post . media . width > 0 & & post.media.height > 0 %}width="{{ post.media.width }}" height="{{ post.media.height }}"{% endif %} poster="{{ post.media.poster }}" preload="none" controls {% if prefs.autoplay_videos == "on" %}autoplay{% endif %}>< a href = {{ post . media . url } } > Video< / a > < / video >
2022-09-27 14:35:23 +13:00
< / div >
2021-08-05 06:52:24 +12:00
{% call render_hls_notification(format!("{}%23{}", & self.url[1..].replace("& ", "%26").replace("+", "%2B"), post.id)) %}
2021-05-10 13:25:52 +12:00
{% endif %}
2021-02-04 08:11:04 +13:00
{% else if post.post_type != "self" %}
2021-05-11 05:31:19 +12:00
< a class = "post_thumbnail {% if post.thumbnail.url.is_empty() %}no_thumbnail{% endif %}" href = "{% if post.post_type == " link " % } { { post . media . url } } { % else % } { { post . permalink } } { % endif % } " rel = "nofollow" >
2021-02-04 08:11:04 +13:00
{% if post.thumbnail.url.is_empty() %}
< svg viewBox = "0 0 100 106" width = "140" height = "53" xmlns = "http://www.w3.org/2000/svg" >
< title > Thumbnail< / title >
< 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 %}
2022-09-27 14:35:23 +13:00
< div style = "max-width:{{ post.thumbnail.width }}px;max-height:{{ post.thumbnail.height }}px;" >
2024-06-22 22:16:12 +12:00
< svg { % if post_should_be_blurred % } class = "thumb_nsfw_blur" { % endif % } width = "{{ post.thumbnail.width }}px" height = "{{ post.thumbnail.height }}px" xmlns = "http://www.w3.org/2000/svg" >
2022-09-27 14:35:23 +13:00
< image width = "100%" height = "100%" href = "{{ post.thumbnail.url }}" / >
< desc >
< img loading = "lazy" alt = "Thumbnail" src = "{{ post.thumbnail.url }}" / >
< / desc >
< / svg >
< / div >
2021-02-04 08:11:04 +13:00
{% endif %}
< span > {% if post.post_type == "link" %}{{ post.domain }}{% else %}{{ post.post_type }}{% endif %}< / span >
< / a >
{% endif %}
2023-03-24 07:29:28 +13:00
< div class = "post_score" title = "{{ post.score.1 }}" >
2023-03-23 16:29:48 +13:00
{% if prefs.hide_score != "on" %}
2023-03-24 07:29:28 +13:00
{{ post.score.0 }}
{% else %}
•
2023-03-23 16:29:48 +13:00
{% endif %}
2023-03-24 07:29:28 +13:00
< span class = "label" > Upvotes< / span > < / div >
2021-11-21 10:13:50 +13:00
< div class = "post_body post_preview" >
2022-05-21 17:28:31 +12:00
{{ post.body|safe }}
2021-11-21 10:13:50 +13:00
< / div >
2023-03-24 01:21:09 +13:00
{% call poll(post) %}
2021-02-04 08:11:04 +13:00
< div class = "post_footer" >
2022-11-01 14:36:24 +13:00
< a href = "{{ post.permalink }}" class = "post_comments" title = "{{ post.comments.1 }} {% if post.comments.1 == " 1 " % } comment { % else % } comments { % endif % } " > {{ post.comments.0 }} {% if post.comments.1 == "1" %}comment{% else %}comments{% endif %}< / a >
2021-02-04 08:11:04 +13:00
< / div >
< / div >
{%- endmacro %}
2023-01-12 21:46:56 +13:00
{% macro visit_reddit_confirmation(url) -%}
< div class = "popup" id = "popup" >
< div class = "popup-inner" >
2023-12-27 12:25:52 +13:00
< h1 > You are about to leave Redlib< / h1 >
2023-01-12 21:46:56 +13:00
< p > Do you want to continue?< / p >
< p id = "reddit_url" > https://www.reddit.com{{ url }}< / p >
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 639.24 563" >
< defs >
< style > . cls-1 { fill : #000000 ; } . cls-2 { fill : #f8aa00 ; } < / style >
< / defs >
< path class = "cls-2" d = "M322.03,0c1.95,2.5,4.88,.9,7.33,1.65,10.5,3.21,17.65,10.39,22.83,19.35,93.64,162.06,186.98,324.29,280.25,486.56,15.73,20.19,2.49,51.27-22.92,54.37-1.21,.19-2.72-.54-3.49,1.08H239.03c-70.33-2.43-141.6,.79-212.08-1.74-17.49-4.92-23.16-15.88-26.91-32.26l-.04-1.97C88.74,354.76,194.49,188.2,289.92,18.43c6.2-10.66,15.03-16.94,27.61-17.36,.95-.03,2.05,.18,2.51-1.07h2Zm-2.43,545c94.95-.02,189.9,.04,284.85-.02,11.84-.73,20.75-13.19,16.68-23.55C523.83,355.97,430.74,187.62,332.05,23.07c-7.93-9.02-22.2-6.58-27.23,3.22C230.28,156.11,155.21,285.64,80.41,415.31c-19.88,34.41-39.31,69.07-59.78,103.14-2.43,4.05-4.24,8.8-1.68,14.18,3.92,8.24,9.59,12.37,18.82,12.37,93.95,0,187.9,0,281.85,0Z" / >
< path class = "cls-1" d = "M319.61,545c-93.95,0-187.9,0-281.85,0-9.22,0-14.89-4.13-18.82-12.37-2.56-5.38-.75-10.13,1.68-14.18,20.47-34.07,39.9-68.73,59.78-103.14C155.21,285.64,230.28,156.11,304.82,26.29c5.03-9.8,19.3-12.24,27.23-3.22,98.7,164.55,191.79,332.9,289.1,498.35,4.06,10.36-4.85,22.82-16.68,23.55-94.94,.06-189.9,0-284.85,.02Zm.44-462.31C238.88,223.22,158.17,362.95,77.28,503h485.54c-80.94-140.13-161.61-279.79-242.77-420.31Z" / >
< path class = "cls-2" d = "M320.05,82.69c81.16,140.52,161.83,280.18,242.77,420.31H77.28C158.17,362.95,238.88,223.22,320.05,82.69Zm36.05,118.99c-.14-46.75-68.32-52.32-74.66-4.76,.73,51.49,9.2,102.97,12.63,154.49,1.18,13.14,10.53,21.81,23.32,22.76,13.12,.97,23.89-9.13,24.96-21.58,4.44-49.99,9.4-101.22,13.76-150.91Zm-36.56,271.4c48.8,.76,49.24-74.7-.31-75.47-53.45,3-46.02,78.12,.31,75.47Z" / >
< path class = "cls-1" d = "M356.1,201.67c-4.36,49.69-9.31,100.91-13.76,150.91-1.07,12.45-11.84,22.56-24.96,21.58-12.79-.95-22.14-9.63-23.31-22.76-3.43-51.52-11.9-103-12.63-154.49,6.33-47.53,74.51-42.03,74.66,4.76Z" / >
< path class = "cls-1" d = "M319.54,473.08c-46.34,2.64-53.75-72.47-.31-75.47,49.56,.78,49.1,76.24,.31,75.47Z" / >
< / svg >
< a id = "goback" href = "#" > No, go back!< / a >
< a id = "toreddit" href = "https://www.reddit.com{{ url }}" rel = "nofollow" > Yes, take me to Reddit< / a >
< / div >
< / div >
{%- endmacro %}
2023-03-24 01:21:09 +13:00
{% macro poll(post) -%}
{% match post.poll %}
{% when Some with (poll) %}
{% let widest = poll.most_votes() %}
< div class = "post_poll" >
2023-04-02 01:31:39 +13:00
< span > {{ poll.total_vote_count }} votes,< / span >
< span title = "{{ poll.voting_end_timestamp.1 }}" > {{ poll.voting_end_timestamp.0 }}< / span >
2023-03-24 01:21:09 +13:00
{% for option in poll.poll_options %}
< div class = "poll_option" >
2023-04-02 01:26:04 +13:00
{# Posts without vote_count (all open polls) will show up without votes.
2023-03-24 01:21:09 +13:00
This is an issue with Reddit API, it doesn't work on Old Reddit either. #}
2023-04-02 01:26:04 +13:00
{% match option.vote_count %}
{% when Some with (vote_count) %}
{% if vote_count.eq(widest) || widest == 0 %}
2023-04-02 01:31:39 +13:00
< div class = "poll_chart most_voted" > < / div >
2023-04-02 01:26:04 +13:00
{% else %}
< div class = "poll_chart" style = "width: {{ (vote_count * 100) / widest }}%" > < / div >
{% endif %}
< span > {{ vote_count }}< / span >
{% when None %}
2023-04-02 01:31:39 +13:00
< div class = "poll_chart most_voted" > < / div >
2023-04-02 01:26:04 +13:00
< span > < / span >
{% endmatch %}
2023-03-24 01:21:09 +13:00
< span > {{ option.text }}< / span >
< / div >
{% endfor %}
< / div >
{% when None %}
{% endmatch %}
{%- endmacro %}