22 lines
509 B
Cheetah
22 lines
509 B
Cheetah
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Coders Squad</title>
|
|
|
|
<link rel="stylesheet" href="/static/style/main.css">
|
|
<link rel="icon" type="image/webp" href="/static/icon/codrs.webp" />
|
|
<script src="/static/script/copy-mono.js"> </script>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
</head>
|
|
<body>
|
|
{% include 'header.tmpl' %}
|
|
|
|
<h1>{% block title %}{% endblock %}</h1>
|
|
|
|
<main>
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
|
|
{% include 'footer.tmpl' %}
|
|
</body>
|
|
</html> |