You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <!DOCTYPE html>
- <html>
- <head>
- <title>{{- partial "data/title" . -}}</title>
- {{ .Hugo.Generator }}
- {{ "<!-- Author theme for Hugo: https://github.com/adrianshort/author -->" | safeHTML }}
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <meta charset="utf-8">
- <link rel="stylesheet" href="{{ relURL "/css/main.css?4" }}">
- <link rel="alternate" type="application/rss+xml" title="{{ partial "data/title" . }}"
- href="{{ .RSSLink }}">
- {{- template "_internal/opengraph.html" . -}}
- {{ with .Params.image }}
- <meta name="og:image" content="{{ "/images/" | absURL }}{{ .}}">
- {{ end }}
- {{- with .Site.Params.twitter -}}
- <meta name="twitter:site" content="@{{ . }}">
- {{- end -}}
- {{ if not .Page.Params.via }}
- <meta name="twitter:creator" content="@{{ .Site.Params.twitter }}">
- {{ end }}
- {{- partial "twitter_cards" . -}}
- </head>
- <body>
- <header>
- <!-- <h1 id="site-title"><a href="{{ relURL "/" }}">{{ .Site.Title }}</a></h1> -->
-
- <div id="site-social">
- {{ range .Site.Params.social}}
- <a href="{{ .url }}" title="{{ .title }}">
- <i class="fa {{ .fa_icon }}"></i>
- </a>
- {{ end }}
- </div>
- </header>
|