A tumblelog theme for Hugo
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

24 linhas
876 B

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{{- partial "data/title" . -}}</title>
  5. {{ .Hugo.Generator }}
  6. {{ "<!-- Tumble theme for Hugo: https://github.com/adrianshort/tumble -->" | safeHTML }}
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <link rel="stylesheet" href="{{ relURL "/css/main.css" }}">
  9. {{- with .Type -}}
  10. <link rel="stylesheet" href="{{ relURL "/css/" }}{{ . }}.css">
  11. {{ end }}
  12. <link rel="alternate" type="application/rss+xml" title="{{ partial "data/title" . }}"
  13. href="{{ .RSSLink }}">
  14. {{- template "_internal/opengraph.html" . -}}
  15. {{ with .Params.image }}
  16. <meta name="og:image" content="{{ "/images/" | absURL }}{{ .}}">
  17. {{ end }}
  18. {{- template "_internal/twitter_cards.html" -}}
  19. </head>
  20. <body>
  21. <h1 id="site-title"><a href="{{ relURL "/" }}">{{ .Site.Title }}</a></h1>