19 lines
469 B
HTML
19 lines
469 B
HTML
{% extends 'layouts/layout_tcg.html' %}
|
|
|
|
{% block page_head %}
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='dist/css/tcg_home.bundle.css') }}">
|
|
{% endblock %}
|
|
|
|
{% block page_body %}
|
|
<header class="game-header">
|
|
<div class="header-left"></div>
|
|
<div class="header-center">
|
|
<div class="game-meta">Home</div>
|
|
</div>
|
|
<div class="header-right"></div>
|
|
</header>
|
|
|
|
<script>
|
|
</script>
|
|
{% endblock %}
|