my_blog/templates/tech_demos/demos/svg_pong.html

24 lines
612 B
HTML

{% extends "base.html" %}
{% block page_content %}
<main id="page-content">
<asside id="about-pong">
{% include "tech_demos/demos/about_pong.html" %}
</asside>
<div id="main-content">
{% include "tech_demos/demos/about_svg_pong.html" %}
<p>fps: <span id="fps"></span></p>
{% include "tech_demos/demos/pong.svg" %}
{% include "tech_demos/demos/pong_controlls.html" %}
{% include "tech_demos/demos/pong_settings.html" %}
{% include "tech_demos/demos/pong_game_summary_table.html" %}
{% include "tech_demos/demos/pong_latest_games_table.html" %}
</div>
</main>
{% endblock page_content %}