baseof.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!DOCTYPE html>
  2. {{- partial "docs/shared" -}}
  3. <html>
  4. <head>
  5. {{ partial "docs/html-head" . }}
  6. </head>
  7. <body>
  8. <input type="checkbox" style="display: none" id="menu-control" />
  9. <main class="flex container">
  10. <aside class="book-menu fixed">
  11. <nav role="navigation">
  12. {{ if .Site.Params.BookMenuBundle }}
  13. {{ partial "docs/menu-bundle" . }}
  14. {{ else }}
  15. {{ partial "docs/menu-filetree" . }}
  16. {{ end }}
  17. <div class="version">
  18. <a href="https://github.com/vendure-ecommerce/vendure/releases/tag/v{{ $.Site.Data.build.version }}">
  19. v{{ $.Site.Data.build.version }}</a>#<a href="https://github.com/vendure-ecommerce/vendure/commit/{{ $.Site.Data.build.commit }}">{{ $.Site.Data.build.commit }}
  20. </a>
  21. </div>
  22. </nav>
  23. </aside>
  24. <div class="book-page">
  25. {{ partial "docs/mobile-header" . }}
  26. {{ template "main" . }}
  27. <div class="book-footer">
  28. {{ if gt (dateFormat "2006" $.Page.Lastmod) 2018 }}
  29. Generated on {{ dateFormat "Jan 2 2006 at 15:04" $.Page.Lastmod }}
  30. {{ end }}
  31. </div>
  32. </div>
  33. {{ template "toc" . }}
  34. </main>
  35. {{ partial "top-bar" (dict "isDocsPage" true) }}
  36. {{ template "_internal/google_analytics_async.html" . }}
  37. </body>
  38. </html>