ananke/layouts/_default
Den McHenry d5b87cb15e Don't duplicate site title in home page TITLE tag (#78)
Let's say your `.Site.Title` is "My Website". The code grabs `.Site.Title`, and then then checks to see if there's a `.Title`. When you're on the homepage, `.Title` is equivalent to `.Site.Title`, so that the browser bar will read:

> My Website | My Website

If we qualify `.Title` by confining to the `.Params` namespace, then the site title isn't duplicated:

```<title>{{ block "title" . }}{{ .Site.Title }} {{ with .Params.Title }} | {{ . }}{{ end }}{{ end }}</title>```

> My Website

But it still picks up `.Title` from posts and pages, where a content title exists in front matter:

> My Website | About Me
2018-01-15 20:26:37 -05:00
..
baseof.html Don't duplicate site title in home page TITLE tag (#78) 2018-01-15 20:26:37 -05:00
list.html Fix pagination (#76) 2018-01-08 23:03:52 -05:00
single.html use better class names 2017-05-02 08:16:53 -04:00
taxonomy.html use better class names 2017-05-02 08:16:53 -04:00
terms.html improve terms template 2017-04-19 20:00:11 -04:00