diff --git a/content/_index.md b/content/_index.md index bdf384fde..efa6d7c49 100644 --- a/content/_index.md +++ b/content/_index.md @@ -1,5 +1,6 @@ --- id: home +title: Home --- # Notes that extend your brain Fleeting Notes provides a quick platform to use a unique note organization method that functions in a similar vein to a brain—through the [[notes/connecting ideas is powerful|connection of ideas]]. This organization technique is [[notes/connecting ideas improves learning|proven to promote learning]] and isn’t restricted by any hierarchical structure. As a result, note discovery is as simple as “[[notes/following a train of thought|following a train of thought]]”. diff --git a/content/download.md b/content/download.md index 77278524f..3324d8bce 100644 --- a/content/download.md +++ b/content/download.md @@ -1,5 +1,4 @@ --- -layout: page title: Download permalink: /download --- diff --git a/content/privacy-policy.md b/content/privacy-policy.md index 32322272a..259a4f77d 100644 --- a/content/privacy-policy.md +++ b/content/privacy-policy.md @@ -1,5 +1,4 @@ --- -layout: page title: Privacy Policy id: privacy-policy permalink: /privacy-policy diff --git a/content/terms-and-conditions.md b/content/terms-and-conditions.md index 925b604ec..7c6d67040 100644 --- a/content/terms-and-conditions.md +++ b/content/terms-and-conditions.md @@ -1,5 +1,4 @@ --- -layout: page title: Terms And Condition id: terms-and-conditions permalink: /terms-and-conditions diff --git a/layouts/partials/head.html b/layouts/partials/head.html index 65c409439..2031c2ca8 100644 --- a/layouts/partials/head.html +++ b/layouts/partials/head.html @@ -1,6 +1,6 @@ - {{ if .Title }}{{ .Title }} | {{ $.Site.Data.config.page_title }}{{ else }}{{ $.Site.Data.config.page_title }} | {{ $.Site.Data.config.tagline }}{{ end }} + {{ if and (.Title) (not .IsHome) }}{{ .Title }} | {{ $.Site.Data.config.page_title }}{{ else }}{{ $.Site.Data.config.page_title }} | {{ $.Site.Data.config.tagline }}{{ end }}