index.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. {{ partial "head" . }}
  2. {{ if (eq (trim .Site.Params.provider " " | lower) "github") | and (isset .Site.Params "repo_url") }}
  3. {{ $repo_id := replace .Site.Params.repo_url "https://github.com/" ""}}
  4. {{ .Scratch.Set "repo_id" $repo_id }}
  5. {{ end }}
  6. <div class="backdrop">
  7. <div class="backdrop-paper"></div>
  8. </div>
  9. <input class="toggle" type="checkbox" id="toggle-drawer">
  10. <input class="toggle" type="checkbox" id="toggle-search">
  11. <label class="toggle-button overlay" for="toggle-drawer"></label>
  12. <header class="header">
  13. {{ partial "header" . }}
  14. </header>
  15. <main class="main">
  16. <div class="drawer">
  17. {{ partial "drawer" . }}
  18. </div>
  19. <article class="article">
  20. <div class="wrapper">
  21. <!-- Wrapper arround google ads for seedanddew -->
  22. <div class='snd-ad'>
  23. <!-- ------------------------------------------------------------------------- -->
  24. <!-- Google Ads -->
  25. <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  26. <!-- Laradock Horizontal -->
  27. <ins class="adsbygoogle"
  28. style="display:inline-block;width:890px;height:100px"
  29. data-ad-client="ca-pub-9826129398689742"
  30. data-ad-slot="2340256024"></ins>
  31. <script>
  32. (adsbygoogle = window.adsbygoogle || []).push({});
  33. </script>
  34. <!-- ------------------------------------------------------------------------- -->
  35. </div>
  36. {{ range where .Site.Pages "Type" "index" }}
  37. <h1>{{ .Title }} {{ if .IsDraft }} (Draft){{ end }}</h1>
  38. {{ .Content }}
  39. {{ end }}
  40. <aside class="copyright" role="note">
  41. {{ with .Site.Params.copyright }}
  42. &copy; {{ $.Now.Format "2006" }} {{ . }} &ndash;
  43. {{ end }}
  44. Documentation built with
  45. <a href="https://www.gohugo.io" target="_blank">Hugo</a>
  46. using the
  47. <a href="http://github.com/digitalcraftsman/hugo-material-docs" target="_blank">Material</a> theme,
  48. by
  49. <a href="https://zalt.me">Mahmoud Zalt</a>.
  50. </aside>
  51. <footer class="footer">
  52. {{ partial "footer" . }}
  53. </footer>
  54. </div>
  55. </article>
  56. <div class="results" role="status" aria-live="polite">
  57. <div class="scrollable">
  58. <div class="wrapper">
  59. <div class="meta"></div>
  60. <div class="list"></div>
  61. </div>
  62. </div>
  63. </div>
  64. </main>
  65. {{ partial "footer_js" . }}