27 lines
617 B
HTML
27 lines
617 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>NacaTaquillas | {% block title %}{% endblock %}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<link rel="stylesheet" href="/static/index.css">
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<a class="title" href="{{ url_for('index') }}">NacaTaquillas</a>
|
|
</nav>
|
|
|
|
{% if info %}
|
|
<div class="info">
|
|
{{ info }}
|
|
</div>
|
|
{% endif %}
|
|
|
|
{% block content %}
|
|
{% endblock %}
|
|
|
|
</body>
|
|
{% block script %}
|
|
|
|
{% endblock %}
|
|
</html>
|