mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-27 12:16:21 -04:00
49 lines
3.3 KiB
HTML
49 lines
3.3 KiB
HTML
<!DOCTYPE html>
|
||
{{"<!--\n ,,, ,,,\n ;\" ^; ;\" \",\n ; s$$$$$s ;\n , ss$$$$$$$ss ,\"\n ;$$$$$$$$$$$$$$$$\n $$$$$$$$$$$$$$$$$$ Hello, human. :)\n $$$$$\"\"\"$$$\"\"\"$$$$$$\n $$$$$ p\"$$$\"q $$$$$ https://jarv.is/humans.txt\n $$$$ .$$$$$. $$$$\n $$$$$$$$$$$$$$$$$\n \"$$$$\"*\"$$$$\"\n \"$$.$$\"\n-->" | safeHTML}}
|
||
<html lang="en">
|
||
<head>
|
||
<meta charset="utf-8">
|
||
{{ hugo.Generator }}
|
||
<title>{{ .Title }}{{ if not .IsHome }} – {{ .Site.Title }}{{ end }} 👨‍💻</title>
|
||
<meta name="description" content="{{ if .Description }}{{ .Description }}{{ else }}{{ .Site.Params.description }}{{ end }}">
|
||
<meta name="author" content="{{ .Site.Author.name }}">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||
<meta property="og:title" content="{{ .Title }}">
|
||
<meta property="og:site_name" content="{{ .Site.Title }}">
|
||
<meta property="og:type" content="{{ if .IsHome }}website{{ else }}article{{ end }}">
|
||
<meta property="og:locale" content="en_US">
|
||
<meta property="og:url" content="{{ .Permalink }}">
|
||
<meta property="og:description" content="{{ if .Description }}{{ .Description }}{{ else }}{{ .Site.Params.description }}{{ end }}">
|
||
<meta property="og:image" content="{{ if .Params.image }}{{ .Permalink }}images/{{ .Params.image }}{{ else }}{{ "me.jpg" | absURL }}{{ end }}">
|
||
{{- if .IsPage }}
|
||
{{- if not .PublishDate.IsZero }}
|
||
<meta property="article:published_time" content="{{ .PublishDate.Format "2006-01-02T15:04:05-07:00" | safeHTMLAttr }}">
|
||
{{- else if not .Date.IsZero }}
|
||
<meta property="article:published_time" content="{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTMLAttr }}">
|
||
{{- end }}
|
||
{{- with .Site.Author.facebook }}
|
||
<meta property="article:author" content="https://www.facebook.com/{{ . }}">{{ end }}
|
||
{{- with .Params.tags }}{{ range . }}
|
||
<meta property="article:tag" content="{{ . }}">{{ end }}{{ end }}
|
||
{{- end }}
|
||
<meta property="fb:admins" content="{{ .Site.Author.facebook_id }}">
|
||
<meta property="fb:app_id" content="{{ .Site.Params.facebook_app_id }}">
|
||
<meta name="twitter:card" content="summary">
|
||
<meta name="twitter:domain" content="{{ .Site.Params.domain }}">
|
||
<meta name="twitter:site" content="{{ .Site.Author.twitter }}">
|
||
<meta name="twitter:creator" content="{{ .Site.Author.twitter }}">
|
||
<meta name="twitter:dnt" content="on">
|
||
<meta name="twitter:widgets:csp" content="on">
|
||
<link rel="canonical" href="{{ .Permalink }}">
|
||
<link rel="alternate" type="application/rss+xml" href="{{ "index.xml" | absURL }}" title="{{ .Site.Title }} (RSS)">
|
||
{{- $style := resources.Get "sass/main.scss" | resources.ToCSS (dict "targetPath" "style.css" "outputStyle" "compact") }}
|
||
<link rel="stylesheet" href="{{ $style.Permalink }}">
|
||
<link rel="apple-touch-icon" href="{{ "apple-touch-icon.png" | absURL }}">
|
||
<link rel="icon" href="{{ "favicon-192.png" | absURL }}" sizes="192x192">
|
||
<link rel="icon" href="{{ "favicon-48.png" | absURL }}" sizes="48x48">
|
||
<link rel="icon" href="{{ "favicon-32.png" | absURL }}" sizes="32x32">
|
||
<link rel="icon" href="{{ "favicon-16.png" | absURL }}" sizes="16x16">
|
||
<link rel="shortcut icon" href="{{ "favicon.ico" | absURL }}">
|
||
<link rel="author" href="{{ "humans.txt" | absURL }}">
|
||
</head>
|
||
<body id="{{ .Type }}"> |