Last active
May 15, 2019 23:37
-
-
Save wongjustin99/408717dda2ae7042d0e09e9dcdcc161e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta name="description" content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}"/> | |
<meta name="robots" content="noodp"/> | |
<link rel="canonical" href="{{ .Permalink }}" /> | |
<!-- Twitter Card --> | |
<meta name="twitter:card" content="summary" /> | |
<meta name="twitter:description" content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}" /> | |
<meta name="twitter:title" content="{{ .Title }}{{ if .IsHome }} - {{ .Site.Params.Tagline }}{{ else }} - {{ .Site.Title }}{{ end }}" /> | |
<meta name="twitter:site" content="{{ .Site.Params.twitter }}" /> | |
<meta name="twitter:creator" content="{{ .Site.Params.twitter }}" /> | |
<!-- OG data --> | |
<meta property="og:locale" content="en_US" /> | |
<meta property="og:type" content="{{ if .IsPage }}article{{ else }}website{{ end }}" /> | |
<meta content="{{ .Title }}{{ if .IsHome }} - {{ .Site.Params.Tagline }}{{ else }} - {{ .Site.Title }}{{ end }}" property="og:title"> | |
<meta content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Description }}{{ end }}" property="og:description"> | |
<meta property="og:url" content="{{ .Permalink }}" /> | |
<meta property="og:site_name" content="{{ .Site.Title }}" /> | |
{{ range .Params.categories }}<meta property="article:section" content="{{ . }}" />{{ end }} | |
{{ if isset .Params "date" }}<meta property="article:published_time" content="{{ time .Date }}" />{{ end }} | |
<!-- JSON-LD --> | |
{{ if .IsHome }} | |
<script type="application/ld+json"> | |
{ | |
"@context": "http://schema.org", | |
"@type": "WebSite", | |
"url": "{{ .Permalink }}", | |
"name": "{{ .Site.Title }}", | |
"author": { | |
"@type": "Person", | |
"name": "{{ .Site.Params.author }}" | |
}, | |
"description": "{{ .Site.Params.description }}", | |
} | |
</script> | |
{{ end }} | |
{{ if .IsPage }} | |
<script type="application/ld+json"> | |
{{if eq .Section "post"}} | |
{ | |
"@context": "http://schema.org", | |
"@type": "BlogPosting", | |
"headline": "{{ .Title }}", | |
"genre": "{{ range .Params.categories }}{{ . }}{{ end }}", | |
"url": "{{ .Permalink }}", | |
"datePublished": "{{ time .Date }}", | |
"description": "{{ .Description }}", | |
"author": { | |
"@type": "Person", | |
"name": "{{ .Site.Params.author }}" | |
} | |
} | |
{{ else }} | |
{ | |
"@context": "http://schema.org", | |
"@type": "WebSite", | |
"url": "{{ .Permalink }}", | |
"name": "{{ .Title }}", | |
"author": { | |
"@type": "Person", | |
"name": "{ .Site.Params.author }}" | |
}, | |
"description": "{ .Site.Params.description }}", | |
} | |
{{ end }} | |
</script> | |
{{ end }} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment