From d6c508bb46d660947718083e3fa214049253c42b Mon Sep 17 00:00:00 2001
From: Yaroslsav-95 <contact@yaroslavps.com>
Date: Thu, 29 Mar 2018 16:45:02 +0300
Subject: Fixed bugs, and compatibility issues with Django 2.0

---
 weblog/templates/weblog_base_old.html | 35 -----------------------------------
 1 file changed, 35 deletions(-)
 delete mode 100644 weblog/templates/weblog_base_old.html

(limited to 'weblog/templates/weblog_base_old.html')

diff --git a/weblog/templates/weblog_base_old.html b/weblog/templates/weblog_base_old.html
deleted file mode 100644
index a4dbd30..0000000
--- a/weblog/templates/weblog_base_old.html
+++ /dev/null
@@ -1,35 +0,0 @@
-<!DOCTYPE html>
-{% load static %}
-<html>
-    <head>
-        <meta charset="utf-8">
-        <title>Simple blog - {% block title_block %} Home {% endblock %}</title>
-        <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
-        <link rel="stylesheet" href="{% static '/weblog/css/weblog.css' %}">
-        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js" defer></script>
-        <script src="{% static '/weblog/js/weblog.js' %}" defer></script>
-        <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" defer></script>
-    </head>
-    <body>
-        <nav class="navbar navbar-inverse">
-            <div class="container nav-container">
-                <div class="navbar-header">
-                    <a class="navbar-brand" href="{% url 'weblog:Index' %}">{{ blog_title }}</a>
-                </div>
-                <div class="collapse navbar-collapse">
-                    <ul class="nav navbar-nav navbar-right">
-                        <li><a href="{% url 'weblog:ChangeLanguage' language='en' %}?next={{ request.path }}">EN</a></li>
-                        <li><a href="{% url 'weblog:ChangeLanguage' language='es' %}?next={{ request.path }}">ES</a></li>
-                        <li><a href="{% url 'weblog:ChangeLanguage' language='ru' %}?next={{ request.path }}">RU</a></li>
-                    </ul>
-                </div>
-            </div>
-        </nav>
-        <div class="container">
-            {% block content_block %}
-            {% block blog_block %}
-            {% endblock %}
-            {% endblock %}
-        </div>
-    </body>
-</html>
\ No newline at end of file
-- 
cgit v1.2.3