diff --git a/progit/templates/commit.html b/progit/templates/commit.html
index 7801e1d..9a4f5af 100644
--- a/progit/templates/commit.html
+++ b/progit/templates/commit.html
@@ -1,6 +1,6 @@
{% extends "repo_master.html" %}
-{% block title %}{{ repo.name }} - {{ commitid }}{% endblock %}
+{% block title %}Commit - {{ repo.name }} - {{ commitid }}{% endblock %}
{%block tag %}home{% endblock %}
{% block repo %}
diff --git a/progit/templates/file.html b/progit/templates/file.html
index 70b8803..b9804a6 100644
--- a/progit/templates/file.html
+++ b/progit/templates/file.html
@@ -1,6 +1,6 @@
{% extends "repo_master.html" %}
-{% block title %}Home{% endblock %}
+{% block title %}Tree - {{ repo.name }}{% endblock %}
{%block tag %}home{% endblock %}
diff --git a/progit/templates/forks.html b/progit/templates/forks.html
index f6be9c6..7b97ba5 100644
--- a/progit/templates/forks.html
+++ b/progit/templates/forks.html
@@ -1,6 +1,6 @@
{% extends "repo_master.html" %}
-{% block title %}Home{% endblock %}
+{% block title %}Forks - {{ repo.name }}{% endblock %}
{%block tag %}home{% endblock %}
diff --git a/progit/templates/issue.html b/progit/templates/issue.html
index d79a36b..606a7c7 100644
--- a/progit/templates/issue.html
+++ b/progit/templates/issue.html
@@ -1,7 +1,7 @@
{% extends "repo_master.html" %}
{% from "_formhelper.html" import render_field_in_list %}
-{% block title %}Home{% endblock %}
+{% block title %}Issue #{{ issue.id}} - {{ repo.name }}{% endblock %}
{%block tag %}home{% endblock %}
diff --git a/progit/templates/issues.html b/progit/templates/issues.html
index ddb7510..9209238 100644
--- a/progit/templates/issues.html
+++ b/progit/templates/issues.html
@@ -1,6 +1,6 @@
{% extends "repo_master.html" %}
-{% block title %}Home{% endblock %}
+{% block title %}Issues - {{ repo.name }}{% endblock %}
{%block tag %}home{% endblock %}
diff --git a/progit/templates/new_issue.html b/progit/templates/new_issue.html
index ad5ecf4..2476e03 100644
--- a/progit/templates/new_issue.html
+++ b/progit/templates/new_issue.html
@@ -1,7 +1,7 @@
{% extends "repo_master.html" %}
{% from "_formhelper.html" import render_field_in_row %}
-{% block title %}Home{% endblock %}
+{% block title %}New issue - {{ repo.name }}{% endblock %}
{%block tag %}new_project{% endblock %}
diff --git a/progit/templates/new_project.html b/progit/templates/new_project.html
index af13224..562955e 100644
--- a/progit/templates/new_project.html
+++ b/progit/templates/new_project.html
@@ -1,7 +1,7 @@
{% extends "master.html" %}
{% from "_formhelper.html" import render_field_in_row %}
-{% block title %}Home{% endblock %}
+{% block title %}New project{% endblock %}
{%block tag %}new_project{% endblock %}
diff --git a/progit/templates/pull_request.html b/progit/templates/pull_request.html
index a4bc08c..28251b5 100644
--- a/progit/templates/pull_request.html
+++ b/progit/templates/pull_request.html
@@ -1,7 +1,7 @@
{% extends "repo_master.html" %}
{% from "_formhelper.html" import render_field_in_row %}
-{% block title %}Home{% endblock %}
+{% block title %}Pull request #{{ request.id }} - {{ repo.name }}{% endblock %}
{%block tag %}home{% endblock %}
diff --git a/progit/templates/repo_info.html b/progit/templates/repo_info.html
index c238e1f..342576f 100644
--- a/progit/templates/repo_info.html
+++ b/progit/templates/repo_info.html
@@ -1,6 +1,6 @@
{% extends "repo_master.html" %}
-{% block title %}{{ repo.name }}{% endblock %}
+{% block title %}{{ select.capitalize() }} - {{ repo.name }}{% endblock %}
{%block tag %}home{% endblock %}
diff --git a/progit/templates/requests.html b/progit/templates/requests.html
index a95cd48..147b305 100644
--- a/progit/templates/requests.html
+++ b/progit/templates/requests.html
@@ -1,6 +1,6 @@
{% extends "repo_master.html" %}
-{% block title %}Home{% endblock %}
+{% block title %}Pull requests - {{ repo.name }}{% endblock %}
{%block tag %}home{% endblock %}