72 lines
3.0 KiB
HTML
72 lines
3.0 KiB
HTML
{% extends "default.html" %}
|
|
{% block pagetitle %}Emojis{% endblock %}
|
|
{% block pagetype %}emojis{% endblock %}
|
|
{% block content %}
|
|
<a class="btn btn-primary btn-block mt-3" href="/assets/emojis.zip?x={{emojis_hash}}"><i class="fas fa-down mr-2"></i>Download All Emojis</a>
|
|
|
|
<a class="btn btn-primary btn-block mt-3" href="/assets/emojis_original.zip?x={{emojis_hash}}"><i class="fas fa-down mr-2"></i>Download All Original Files</a>
|
|
|
|
<div class="d-flex align-items-center my-4">
|
|
<div class="dropdown dropdown-actions mx-auto">
|
|
<button type="button" class="btn btn-secondary dropdown-toggle" id="dropdownMenuButton" data-bs-toggle="dropdown" data-bs-display="static" style="width:min(95vw, 900px)">
|
|
<img loading="lazy" src="{{SITE_FULL_IMAGES}}/e/{{kind.lower()}}.webp" alt=":{{kind.lower()}}:" class="mr-2">{{kind}}
|
|
</button>
|
|
<div class="dropdown-menu" x-placement="bottom-start" style="position: absolute; will-change: transform; top: 0px; left: 0px; transform: translate3d(0px, 31px, 0px); max-height: 50vh;overflow: auto;width:min(95vw, 900px)">
|
|
{% for kind in EMOJI_KINDS %}
|
|
<a class="dropdown-item" href="/emojis/{{kind.lower()}}"><img loading="lazy" src="{{SITE_FULL_IMAGES}}/e/{{kind.lower()}}.webp" alt=":{{kind.lower()}}:" class="mr-2">{{kind}}</a>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="overflow-x-auto mt-3">
|
|
<table class="datatable d-none">
|
|
<thead>
|
|
<tr>
|
|
<th class="disable-sort-click">#</th>
|
|
<th class="disable-sort-click">Name</th>
|
|
<th class="disable-sort-click">Emoji</th>
|
|
<th class="disable-sort-click">Usage</th>
|
|
<th class="disable-sort-click">Author</th>
|
|
<th class="disable-sort-click">Added on</th>
|
|
{% if FEATURES['EMOJI_SUBMISSIONS'] %}
|
|
<th class="disable-sort-click">Original File</th>
|
|
{% endif %}
|
|
<th class="disable-sort-click">Tags</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for emoji in emojis %}
|
|
<tr>
|
|
<td>{{loop.index}}</td>
|
|
<td>{{emoji.name}}</td>
|
|
<td><img class="emoji" loading="lazy" data-bs-toggle="tooltip" alt=":#{{emoji.name}}:" title=":{{emoji.name}}:" src="{{SITE_FULL_IMAGES}}/e/{{emoji.name}}.webp"></td>
|
|
<td>{{emoji.count}}</td>
|
|
<td>
|
|
{% if emoji.author_id == 2 %}
|
|
a{% if OTHER_SITE_NAME == 'rDrama' %}n{% endif %} {{OTHER_SITE_NAME}} user
|
|
{% else %}
|
|
{% set user = emoji.user %}
|
|
{% include "user_in_table.html" %}
|
|
{% endif %}
|
|
</td>
|
|
<td data-sort="{{emoji.created_utc}}" {% if emoji.created_utc %}data-time="{{emoji.created_utc}}"{% endif %}></td>
|
|
{% if FEATURES['EMOJI_SUBMISSIONS'] %}
|
|
<td>
|
|
{% if emoji.og %}
|
|
<a href="{{SITE_FULL_IMAGES}}/asset_submissions/emojis/original/{{emoji.og}}">{{emoji.og}}</a>
|
|
{% endif %}
|
|
</td>
|
|
{% endif %}
|
|
<td>{{emoji.tags}}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<link rel="stylesheet" href="{{('css/datatables.css') | asset}}">
|
|
<script defer src="{{'js/vendor/jquery.js' | asset}}"></script>
|
|
<script defer src="{{'js/vendor/datatables.js' | asset}}"></script>
|
|
{% endblock %}
|