mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-06-30 03:05:58 -04:00
shift asset processing to webpack (#424)
also migrated SASS to latest syntax (via dart-sass) and vastly simplified light/dark theme logic
This commit is contained in:
@@ -3,18 +3,18 @@
|
||||
{
|
||||
"@context": "http://schema.org",
|
||||
"@type": "Person",
|
||||
"@id": {{ print (absURL "/") "#author" }},
|
||||
"@id": {{ print $.Site.Params.baseURL $.Site.BaseURL "#author" }},
|
||||
"name": {{ .name }},
|
||||
"url": {{ $.Site.BaseURL }},
|
||||
"url": {{ print $.Site.Params.baseURL $.Site.BaseURL }},
|
||||
"description": {{ $.Site.Params.description }},{{ with $.Scratch.Get "authorImage" }}
|
||||
"image": {
|
||||
"@type": "ImageObject",
|
||||
"url": {{ .Permalink }},
|
||||
"url": {{ print $.Site.Params.baseURL .Permalink }},
|
||||
"width": "{{ .Width }}",
|
||||
"height": "{{ .Height }}"
|
||||
},{{ end }}
|
||||
"sameAs": [
|
||||
{{ $.Site.BaseURL }},{{ with .social }}
|
||||
{{ print $.Site.Params.baseURL $.Site.BaseURL }},{{ with .social }}
|
||||
{{ with .github }}{{ print "https://github.com/" . }},{{ end }}
|
||||
{{ with .keybase }}{{ print "https://keybase.io/" . }},{{ end }}
|
||||
{{ with .twitter }}{{ print "https://twitter.com/" . }},{{ end }}
|
||||
|
||||
Reference in New Issue
Block a user