diff options
author | Yaroslsav-95 <contact@yaroslavps.com> | 2018-03-29 16:45:02 +0300 |
---|---|---|
committer | Yaroslsav-95 <contact@yaroslavps.com> | 2018-03-29 16:45:02 +0300 |
commit | d6c508bb46d660947718083e3fa214049253c42b (patch) | |
tree | 3e4d8bac2247dbdcb3573e1ed00b23d80baf2c56 /weblog/templates/weblog_base.html | |
parent | be41310b3dc4aec12d3a950cf9fe737811436499 (diff) | |
download | w3blog-d6c508bb46d660947718083e3fa214049253c42b.tar.gz w3blog-d6c508bb46d660947718083e3fa214049253c42b.zip |
Fixed bugs, and compatibility issues with Django 2.0
Diffstat (limited to 'weblog/templates/weblog_base.html')
-rw-r--r-- | weblog/templates/weblog_base.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weblog/templates/weblog_base.html b/weblog/templates/weblog_base.html index 536e736..6a551ff 100644 --- a/weblog/templates/weblog_base.html +++ b/weblog/templates/weblog_base.html @@ -3,7 +3,7 @@ <html>
<head>
<meta charset="utf-8">
- <title>Simple blog - {% block title_block %} Home {% endblock %}</title>
+ <title>{% 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>
@@ -25,4 +25,4 @@ {% endblock %}
</div>
</body>
-</html>
\ No newline at end of file +</html>
|