commit
051faf708e
|
@ -73,7 +73,7 @@
|
|||
Has paginated Categories and Tags. Markdown files will automatically convert images put into `/assets` folder to .webp images.
|
||||
|
||||
## Image shortcodes for webp as well.
|
||||
{{< imgh src="img-name.jpg" alt="Place alt text here." >}}
|
||||
{{< imgc src="img-name.jpg" alt="Place alt text here." >}}
|
||||
|
||||
<a href="https://www.buymeacoffee.com/nusserstudios" target="_blank"><img src="https://cdn.buymeacoffee.com/buttons/default-blue.png" alt="Buy Me A Coffee" height="41" width="174"></a>
|
||||
|
||||
|
|
|
@ -6,13 +6,11 @@
|
|||
<meta name="twitter:title" content="{{ .Title }} | {{ .Site.Title }}" />
|
||||
<meta itemprop="name" content="{{ .Title }} | {{ .Site.Title }}" />
|
||||
<meta name="application-name" content="{{ .Title }} | {{ .Site.Title }}" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:title" content="{{ .Site.Title }}" />
|
||||
<meta property="og:description"
|
||||
content="{{ if .Description }}{{ .Description }}{{ else }}{{ .Site.Params.description }}{{ end }}" />
|
||||
<meta property="og:site_name" content="{{ .Site.Title }}" />
|
||||
<meta property="og:url" content="{{ .Permalink }}" />
|
||||
<meta property="og:locale" content="en">
|
||||
<meta property="og:image" content="{{ .Params.Site.BaseURL }}{{ .Site.Params.og_image | relURL }}" />
|
||||
<meta property="og:image:secure_url" content="{{ .Site.Params.og_image | absURL }}" />
|
||||
<meta property="og:type" content="website" />
|
||||
<meta property="og:image" content="{{ if .Params.featured_image }}{{ .Params.featured_image | relURL }}{{ else }}{{ .Site.Params.og_image | relURL }}{{ end }}" />
|
||||
<meta property="og:image:secure_url" content="{{ if .Params.featured_image }}{{ .Params.featured_image | absURL }}{{ else }}{{ .Site.Params.og_image | absURL }}{{ end }}" />
|
||||
<meta property="og:type" content="{{if .IsHome}}website{{else}}article{{end}}" />
|
||||
|
|
Loading…
Reference in New Issue