djbase

A base template to bootstrap common Django projects.
git clone https://s.sonu.ch/~srfsh/nelci.git
Log | Files | Refs | README | LICENSE

layout.html (501B)


      1 <!doctype html>
      2 <html lang="tr-tr">
      3 <head>
      4 	<meta charset="utf-8"/>
      5 	<title>Djang Base</title>
      6 	<meta name="viewport" content="width=device-width, initial-scale=1"/>
      7 	<link rel="icon" href="{% static 'base/img/icon.ico' %}"/>
      8 	<link rel="stylesheet" href="{% static 'base/css/style.css' %}"/>
      9 	<script defer src="{% static 'base/js/script.js' %}"></script>
     10 </head>
     11 <body>
     12 	{% include "base/navbar.html" %}
     13 	<main>{% block main %}{% endblock %}</main>
     14 	{% include "base/footer.html" %}
     15 </body>
     16 </html>