baseof.html 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. <!DOCTYPE html>
  2. <html lang="{{ .Site.Language }}">
  3. <head>
  4. <title>{{ if not .IsHome }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
  5. <link rel="canonical" href="{{ .Site.BaseURL }}">
  6. <link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='/index.xml'>
  7. <link rel='stylesheet' type='text/css' href='/style.css'>
  8. {{ with .Site.Params.favicon }}<link rel="icon" href="{{ . }}">
  9. {{ end -}}
  10. <meta name="description" content="{{ with .Params.description }}{{ . }}{{ else }}{{ .Summary }}{{ end }}">
  11. {{ if isset .Params "tags" }}<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}">
  12. {{ end -}}
  13. <meta name="viewport" content="width=device-width, initial-scale=1">
  14. <meta name="robots" content="index, follow">
  15. <meta charset="utf-8">
  16. </head>
  17. <body>
  18. {{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
  19. <main>
  20. <a href="{{ .Site.Home.RelPermalink }}"><header>
  21. <h1 id="tag_{{ .Title }}">{{ block "title" . }}{{ end }}</h1>
  22. {{- with .Param "subtitle" }}
  23. <h2>{{ . }}</h2>
  24. {{- end }}
  25. </header></a>
  26. <article>
  27. {{ block "main" . -}}
  28. {{- .Content -}}
  29. {{ end -}}
  30. {{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}}
  31. {{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}}
  32. </article>
  33. </main>
  34. {{ block "footer" . -}}
  35. <footer>
  36. <hr>
  37. <a href="{{ .Site.BaseURL }}"><img src="/pix/larbs.gif" title="LARBS: Because n00buntu is bloated." ></a>
  38. <br>
  39. <em>official larbs donation fund:</em>
  40. <ul>
  41. <li>xmr: <code style="font-size:x-small;overflow-wrap:break-word">8A2cBbmN9p9Ruz8e1526Nscz28gfPS1GveitMY3V7RnpLwdExmQNddY4a49Hi7wNbM2yV8vrBZF8zcKCTHMqRUb82CUMEJj</code></li>
  42. <li>btc: <code class="">bc1qhx0elzzpyxy5fvz0x662zh9efghcxgt4knc7w4</code></li>
  43. </ul>
  44. {{- if .Param "showrss" }}<br><br><a href="/index.xml"><img src="/rss.svg" style="max-height:1.5em" alt="RSS Feed" title="Subscribe via RSS for updates."></a>{{ end }}
  45. </footer>
  46. {{ end -}}
  47. </body>
  48. </html>