A tumblelog theme for Hugo
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- <!DOCTYPE html>
- <html>
- <head>
- <title>{{- partial "data/title" . -}}</title>
- {{ .Hugo.Generator }}
- {{ "<!-- Tumble theme for Hugo: https://github.com/adrianshort/tumble -->" | safeHTML }}
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <link rel="stylesheet" href="{{ relURL "/css/main.css" }}">
- <script src="https://use.fontawesome.com/8ef49d4a0a.js"></script>
-
- {{- with .Type -}}
- <link rel="stylesheet" href="{{ relURL "/css/" }}{{ . }}.css">
- {{ end }}
-
- <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 }}
- {{- template "_internal/twitter_cards.html" -}}
- </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>
|