Created
January 23, 2021 16:49
-
-
Save ManotLuijiu/50bb4ac0a5b90d88f777800394fb4fb3 to your computer and use it in GitHub Desktop.
Django templates/base.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
<title>Means-CRM</title> | |
{% load static %} | |
<link rel="icon"href="{% static 'favicon.ico' %}"> | |
<link | |
href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" | |
rel="stylesheet" | |
/> | |
</head> | |
<body> | |
<div class="max-w-7xl mx-auto"> | |
{% include "navbar.html" %} {% block content %}{% endblock content %} | |
</div> | |
{% include "scripts.html" %} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment