2018-04-01 20:23:21 -07:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% block title %}Mastodon instance custom emoji list{% endblock title %}
|
|
|
|
{% block body %}
|
|
|
|
<p>get the emojos for:</p>
|
|
|
|
<form method="POST" action="">
|
2019-07-15 03:50:57 -07:00
|
|
|
<div>
|
|
|
|
<input type="text" name="instance" placeholder="instance.domain">
|
|
|
|
</div>
|
|
|
|
<div>
|
2023-05-20 08:25:12 -07:00
|
|
|
<input type="checkbox" id="show_all" name="show_all">
|
2019-07-15 18:06:48 -07:00
|
|
|
<label for="show_all">See unlisted emojos</label>
|
2019-07-15 03:50:57 -07:00
|
|
|
</div>
|
|
|
|
<div>
|
2023-05-20 08:25:12 -07:00
|
|
|
<input type="checkbox" id="show_animated" name="show_animated">
|
2019-07-15 18:06:48 -07:00
|
|
|
<label for="show_animated">See animated emojos</label>
|
2019-07-15 03:50:57 -07:00
|
|
|
</div>
|
2018-04-01 20:23:21 -07:00
|
|
|
<input type="submit" value="go">
|
|
|
|
</form>
|
|
|
|
<p>(“emojo” is the semi-jokey term for custom emoji on <a href="https://joinmastodon.org">Mastodon</a>.)</p>
|
|
|
|
{% endblock body %}
|