1
0
mirror of https://gitlab.com/animath/si/plateforme-corres2math.git synced 2024-12-26 16:22:21 +00:00
plateforme-corres2math/apps/eastereggs/templates/eastereggs/xp.html
2020-09-22 21:20:20 +02:00

20 lines
503 B
HTML

{% extends "index.html" %}
{% block content %}
<div id="index-content"></div>
{% include "eastereggs/xp_modal.html" %}
{% endblock %}
{% block extrajavascript %}
<script>
$(document).ready(function() {
$("#index-content").load("{% url "index" %} #content");
function displayModal() {
$("#xpModal").modal('toggle');
setTimeout(displayModal, 400);
}
displayModal();
});
</script>
{% endblock %}