Search
🔍
More options
{% macro option(name, value, key) -%}
{{ name }}
{%- endmacro %}
Sort type
{{ option("Rating", "average_rating", "sort") }} {{ option("Upload date", "created_at", "sort") }} {{ option("Difficulty", "average_difficulty", "sort") }} {{ option("Plays", "play_count", "sort") }}
{{ option("Descending", "desc", "dir") }} {{ option("Ascending", "asc", "dir") }}
Upload date
{{ option("All time", -1, "date") }} {{ option("Past 30 days", 720, "date") }} {{ option("Past 7 days", 168, "date") }} {{ option("Past day", 24, "date") }} {{ option("Past hour", 1, "date") }}
{% if searchResults %}
{% for map in searchResults %}
{{ map['Name'] }}
Difficulty: {{ '▲' * map['AverageUserDifficulty']|int }}
by
{{ map['CreatorName'] }}
{{ map['NumThumbsUp'] }} 👍 {{ map['NumThumbsDown'] }} 👎
{% if map['Description'] != ''%}
{{ map['Description'] }}
{% endif %}
Code:
First Clear:
{{ map['FirstClearUsername'] }}
{% set BestTime = convert_times(map['BestTimePlaytime']) %}
Best Time:
{{ map['BestTimeUsername'] }}
[{{ BestTime[0] }}:{{ BestTime[1] }}:{{ BestTime[2] }}]
{% endfor %}
{% set searchPage = QueryValues['p'] %}
Page {{ searchPage+1 }}
{% if not searchPage <= 0 %}
Prev
{% endif %} {% if not entryNumber < entryLimit %}
Next
{% endif %}
{% endif %}