We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bacb7d1 commit 81db80eCopy full SHA for 81db80e
_layouts/default.html
@@ -3,7 +3,13 @@
3
<head>
4
<meta http-equiv="X-UA-Compatible" content="IE=edge">
5
<meta charset="utf-8">
6
- <title>{{ page.title }}</title>
+ <title>
7
+ {% if page.title == null %}
8
+ {{ site.name }}
9
+ {% else %}
10
+ {{ page.title }} - {{ site.name }}
11
+ {% endif %}
12
+ </title>
13
<meta name="viewport" content="width=device-width">
14
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/normalize.css">
15
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/main.css">
index.html
@@ -1,6 +1,5 @@
1
---
2
layout: default
-title: DOCter
{% capture index %}{% include index.md %}{% endcapture %}
0 commit comments