Skip to content

Instantly share code, notes, and snippets.

@bulv1ne
Created October 1, 2018 12:14
Show Gist options
  • Save bulv1ne/eb46624adf2baeafcefb97d3a2d5ca61 to your computer and use it in GitHub Desktop.
Save bulv1ne/eb46624adf2baeafcefb97d3a2d5ca61 to your computer and use it in GitHub Desktop.
{% load i18n static %}
{% get_current_language as LANGUAGE_CODE %}
<!doctype html>
<html lang="{{ LANGUAGE_CODE }}">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="stylesheet" href="{% static 'main.css' %}">
<title>{% block title %}{% endblock %}</title>
{% block head %}{% endblock %}
</head>
<body>
{% block body %}{% endblock %}
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment