ソースを参照

Change title and site name separator in <title> tag

Close #27
Talha Mansoor 10 年 前
コミット
b6fc5c9404
共有7 個のファイルを変更した7 個の追加7 個の削除を含む
  1. 1 1
      templates/404.html
  2. 1 1
      templates/archives.html
  3. 1 1
      templates/article.html
  4. 1 1
      templates/categories.html
  5. 1 1
      templates/page.html
  6. 1 1
      templates/search.html
  7. 1 1
      templates/tags.html

+ 1 - 1
templates/404.html

@@ -1,7 +1,7 @@
 {% extends "base.html" %}
 
 {% block title %}
-Page not found - {{ super() }}
+Page not found · {{ super() }}
 {% endblock title %}
 
 {% block head_description %}

+ 1 - 1
templates/archives.html

@@ -1,6 +1,6 @@
 {% extends "base.html" %}                                                                                                                                                                                  
 {% block title %}
-All Posts - {{ super() }}
+All Posts · {{ super() }}
 {% endblock title %}
 
 {% block head_description %}

+ 1 - 1
templates/article.html

@@ -1,7 +1,7 @@
 {% extends "base.html" %}
 
 {% block title %}
-{{ article.title }} - {{ super() }}
+{{ article.title }} · {{ super() }}
 {% endblock title %}
 
 {% block head_description %}

+ 1 - 1
templates/categories.html

@@ -1,7 +1,7 @@
 {% extends "base.html" %}
 
 {% block title %}
-All Categories - {{ super() }}
+All Categories · {{ super() }}
 {% endblock title %}
 
 {% block head_description %}

+ 1 - 1
templates/page.html

@@ -1,7 +1,7 @@
 {% extends "base.html" %}
 
 {% block title %}
-{{ page.title }} - {{ super() }}
+{{ page.title }} · {{ super() }}
 {% endblock title %}
 
 {% block head_description %}

+ 1 - 1
templates/search.html

@@ -1,7 +1,7 @@
 {% extends "base.html" %}
 
 {% block title %}
-Search - {{ super() }}
+Search · {{ super() }}
 {% endblock title %}
 
 {% block head_links %}

+ 1 - 1
templates/tags.html

@@ -1,7 +1,7 @@
 {% extends "base.html" %}
 
 {% block title %}
-All Tags - {{ super() }}
+All Tags · {{ super() }}
 {% endblock title %}
 
 {% block head_description %}