igdb/code/app/templates/base.html

15 lines
300 B
HTML
Raw Normal View History

2020-01-08 05:51:10 +01:00
<html>
<head>
{% if title %}
<title>{{ title }} - IGDB</title>
{% else %}
<title>Welcome to IGDB</title>
{% endif %}
</head>
<body>
<div>IGDB: <a href="/index">Home</a></div>
<hr>
{% block content %}{% endblock %}
</body>
</html>