mirror of
				https://gitlab.com/animath/si/plateforme.git
				synced 2025-11-04 03:02:14 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			503 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			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 %}
 |