diff --git a/layouts/partials/head.html b/layouts/partials/head.html
index c3e4775..21bf1bb 100644
--- a/layouts/partials/head.html
+++ b/layouts/partials/head.html
@@ -1,20 +1,45 @@
+
+ {{ if eq .Title .Site.Title }}
+ {{ .Site.Title }}
+ {{ else }}
+ {{ .Title }} - {{ .Site.Title }}
+ {{ end }}
+
+
+
+
+
{{ range .Site.Params.custom_css }}
{{ end }}
-
- {{ if eq .Title .Site.Title }}
- {{ .Site.Title }}
- {{ else }}
- {{ .Title }} - {{ .Site.Title }}
- {{ end }}
-
+
+ {{/* NOTE: These Hugo Internal Templates can be found starting at https://github.com/gohugoio/hugo/tree/master/tpl/tplimpl/embedded/templates */}}
+ {{- template "_internal/opengraph.html" . -}}
+ {{- template "_internal/google_news.html" . -}}
+ {{- template "_internal/schema.html" . -}}
+ {{- template "_internal/twitter_cards.html" . -}}
+
+
+ {{ `` | safeHTML }}
+
+ {{ `` | safeHTML }}
+
+
+ {{- if and (not .Site.IsServer) .Site.GoogleAnalytics -}}
+ {{ template "_internal/google_analytics_async.html" . }}
+ {{- end -}}