A tumblelog theme for Hugo
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

22 wiersze
779 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. <link rel="alternate" type="application/rss+xml" title="{{ partial "data/title" . }}"
  10. href="{{ .RSSLink }}">
  11. </head>
  12. <body>
  13. <h1 id="site-title"><a href="{{ relURL "/" }}">{{ .Site.Title }}</a></h1>
  14. {{ with .RSSLink }}
  15. <p><a href="{{ . }}" title="{{ partial "data/title" }}">RSS</a></p>
  16. {{ end }}
  17. <ul>
  18. {{ range .Site.Sections }}
  19. <li><a href="{{ .URL }}">{{ .Title }}</a></li>
  20. {{ end }}
  21. </ul>