restructured project to be easier to develop with
added base for flags and teams
This commit is contained in:
parent
8410cc33da
commit
2b8197d3c7
23 changed files with 59 additions and 11 deletions
14
apps/ctf/templates/ctf/base/base.html
Normal file
14
apps/ctf/templates/ctf/base/base.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>{% block title %}{% endblock %}</title>
|
||||
{% block head %}
|
||||
{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
{% block body %}
|
||||
{% endblock %}
|
||||
</body>
|
||||
</html>
|
Loading…
Add table
Add a link
Reference in a new issue