diff --git a/layouts/partials/title.html b/layouts/partials/title.html
index f4147ff..a792c04 100644
--- a/layouts/partials/title.html
+++ b/layouts/partials/title.html
@@ -1,12 +1,11 @@
{{ $title := "" }}
{{ if .Title }}
- {{ $title = .Title }}
+ {{ $title = .Title }}
{{ else if and .IsSection .File }}
- {{ $sections := split (trim .File.Dir "/") "/" }}
- {{ $title = index ($sections | last 1) 0 | humanize }}
+ {{ $title = path.Base .File.Dir | humanize | title }}
{{ else if and .IsPage .File }}
- {{ $title = .File.BaseFileName | humanize | title }}
+ {{ $title = .File.BaseFileName | humanize | title }}
{{ end }}
{{ return $title }}