Search
More options
{% 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 %}