43 lines
1.6 KiB
HTML
43 lines
1.6 KiB
HTML
{% macro options(current, values, default) -%}
|
|
{% for value in values %}
|
|
<option value="{{ value }}" {% if current == value || (current == "" && value == default) %}selected{% endif %}>
|
|
{{ format!("{}{}", value.get(0..1).unwrap().to_uppercase(), value.get(1..).unwrap()) }}
|
|
</option>
|
|
{% endfor %}
|
|
{%- endmacro %}
|
|
|
|
{% macro sort(root, methods, selected) -%}
|
|
{% for method in methods %}
|
|
<a {% if method == selected %}class="selected"{% endif %} href="{{ root }}/{{ method }}">
|
|
{{ format!("{}{}", method.get(0..1).unwrap().to_uppercase(), method.get(1..).unwrap()) }}
|
|
</a>
|
|
{% endfor %}
|
|
{%- endmacro %}
|
|
|
|
{% macro search(root, search) -%}
|
|
<form action="{% if root != "/r/" && !root.is_empty() %}{{ root }}{% endif %}/search/" id="searchbox">
|
|
<input id="search" type="text" name="q" placeholder="Search" value="{{ search }}">
|
|
{% if root != "/r/" && !root.is_empty() %}
|
|
<div id="inside">
|
|
<input type="checkbox" name="restrict_sr" id="restrict_sr">
|
|
<label for="restrict_sr" class="search_label">in {{ root }}</label>
|
|
</div>
|
|
{% endif %}
|
|
<input type="submit" value="→">
|
|
</form>
|
|
{%- endmacro %}
|
|
|
|
{% macro render_flair(flair) -%}
|
|
{% if flair.flair_parts.len() > 0 %}
|
|
<small class="post_flair" style="color:{{ flair.foreground_color }}; background:{{ flair.background_color }}">
|
|
{% for flair_part in flair.flair_parts %}
|
|
{% 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" %}
|
|
<span>{{ flair_part.value }}</span>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</small>
|
|
{% endif %}
|
|
{%- endmacro %}
|