Skip to content

Commit ae41f10

Browse files
authored
Merge pull request #1457 from exoego/sub-title-in-html-title
Add subtitle in <title> so user/crawler know the group the page belongs to.
2 parents 5ba8f46 + ad9ccd0 commit ae41f10

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

_includes/headertop.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,11 @@
11
<!DOCTYPE html>
22
<html>
33
<head>
4-
<title>{% if page.title %}{{ page.title }} | {% endif %}{{ site.title }}</title>
4+
<title>
5+
{% if page.title %}{{ page.title }} | {% endif %}
6+
{% if page.overview-name %}{{ page.overview-name }} | {% endif %}
7+
{{ site.title }}
8+
</title>
59
{% if page.description %}
610
<meta name="description" content="{{ page.description }}" />
711
{% endif %}

0 commit comments

Comments
 (0)