diff --git a/templates/blog-page.html b/templates/blog-page.html
index 9d99cd6..3aa95f4 100644
--- a/templates/blog-page.html
+++ b/templates/blog-page.html
@@ -1,6 +1,6 @@
{% extends "base.html" %}
-{% block title %}{{ page.title }} — {{ config.title }}{% endblock %}
+{% block title %}ily blog/{{ page.slug }}{% endblock %}
{% block content %}
{{ page.title }}
diff --git a/templates/blog.html b/templates/blog.html
index 8e2419f..bd88ae2 100644
--- a/templates/blog.html
+++ b/templates/blog.html
@@ -1,6 +1,6 @@
{% extends "base.html" %}
-{% block title %}{{ section.title }} — {{ config.title }}{% endblock %}
+{% block title %}ily blog{% endblock %}
{% block content %}
{{ section.title }}
diff --git a/templates/page.html b/templates/page.html
index ea45ad0..6d3f695 100644
--- a/templates/page.html
+++ b/templates/page.html
@@ -1,6 +1,6 @@
{% extends "base.html" %}
-{% block title %}{{ page.title }} — {{ config.title }}{% endblock %}
+{% block title %}ily {{ page.slug }}{% endblock %}
{% block content %}
{{ page.title }}