Files
Resume/templates/base.html
2025-11-08 19:15:39 +01:00

19 lines
274 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
{% include "includes/head.html" %}
<title>
{% block title %}
{% endblock %}
</title>
</head>
<body>
{% include "includes/navbar.html" %}
{% block content %}
{% endblock %}
{% include "includes/footer.html"%}
</body>
</html>