A tumblelog theme for Hugo
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- <!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">
- <meta charset="utf-8">
- <link rel="stylesheet" href="{{ relURL "/css/main.css" }}">
-
- <!-- https://www.bootstrapcdn.com/fontawesome/ -->
- <link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
-
- {{- 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>
|