index.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  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. <!-- ------------------------------------------------------------------------- -->
  22. <!-- Google Ads -->
  23. <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
  24. <!-- Laradock Horizontal -->
  25. <ins class="adsbygoogle"
  26. style="display:inline-block;width:890px;height:100px"
  27. data-ad-client="ca-pub-9826129398689742"
  28. data-ad-slot="2340256024"></ins>
  29. <script>
  30. (adsbygoogle = window.adsbygoogle || []).push({});
  31. </script>
  32. <!-- ------------------------------------------------------------------------- -->
  33. <br><br><br>
  34. <img src="images/laradock-full-logo.jpg" alt="laradock logo">
  35. {{ range where .Site.Pages "Type" "index" }}
  36. <br><br><br><br><br><br>
  37. <hr>
  38. <br>
  39. <h1>{{ .Title }} {{ if .IsDraft }} (Draft){{ end }}</h1>
  40. {{ .Content }}
  41. {{ end }}
  42. <aside class="copyright" role="note">
  43. {{ with .Site.Params.copyright }}
  44. &copy; {{ $.Now.Format "2006" }} {{ . }} &ndash;
  45. {{ end }}
  46. <br><br>
  47. Documentation built with
  48. <a href="https://www.gohugo.io" target="_blank">Hugo</a>
  49. using the
  50. <a href="http://github.com/digitalcraftsman/hugo-material-docs" target="_blank">Material</a> theme,
  51. by
  52. <a href="https://zalt.me">Mahmoud Zalt</a>.
  53. </aside>
  54. <footer class="footer">
  55. {{ partial "footer" . }}
  56. </footer>
  57. </div>
  58. </article>
  59. <div class="results" role="status" aria-live="polite">
  60. <div class="scrollable">
  61. <div class="wrapper">
  62. <div class="meta"></div>
  63. <div class="list"></div>
  64. </div>
  65. </div>
  66. </div>
  67. </main>
  68. {{ partial "footer_js" . }}