Add Flask webapp draft
This commit is contained in:
14
code/app/templates/base.html
Normal file
14
code/app/templates/base.html
Normal file
@@ -0,0 +1,14 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user