ananke/layouts
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
..
_default Don't duplicate site title in home page TITLE tag (#78) 2018-01-15 20:26:37 -05:00
partials Fix linkedin icon to match the other social icons 2017-11-06 17:44:30 -05:00
post Fix typo in single.html (#67) 2017-10-31 08:30:32 -04:00
section change article to post 2017-04-14 22:23:18 -04:00
shortcodes use better class names 2017-05-02 08:16:53 -04:00
404.html remove unused variable in 404 2017-04-15 09:06:30 -04:00
index.html #68|Parmeterize number of recent posts in index.html (#69) 2017-11-01 11:08:19 -04:00
robots.txt improve robots to use site param 2017-04-15 12:31:22 -04:00