mirror of
https://github.com/gurnec/removeddit.git
synced 2026-03-11 08:54:27 +00:00
16 lines
625 B
HTML
16 lines
625 B
HTML
{% extends "main.html" %}
|
|
{% block body %}
|
|
<div id="loading-comments" class="loading-comments"></div>
|
|
<!-- https://rawgit.com/ -->
|
|
<script src="{{ url_for('static', filename='snuownd.js') }}"></script>
|
|
<script src="https://cdn.rawgit.com/showdownjs/showdown/1.7.2/dist/showdown.min.js"></script>
|
|
<script src="{{ url_for('static', filename='functions.js') }}"></script>
|
|
<script>
|
|
const thread_id = "{{ thread_id }}";
|
|
const token = "{{ token }}";
|
|
const subreddit = "{{ subreddit }}";
|
|
const all_ids = new Set({{ comment_ids|safe }});
|
|
</script>
|
|
<script src="{{ url_for('static', filename='script.js')}}"></script>
|
|
{% endblock %}
|
|
|