Skip to content

Instantly share code, notes, and snippets.

@ManotLuijiu
Created January 23, 2021 16:49
Show Gist options
  • Save ManotLuijiu/50bb4ac0a5b90d88f777800394fb4fb3 to your computer and use it in GitHub Desktop.
Save ManotLuijiu/50bb4ac0a5b90d88f777800394fb4fb3 to your computer and use it in GitHub Desktop.
Django templates/base.html
<!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