index.html 668 B

123456789101112131415161718192021222324
  1. {{ define "main" }}
  2. <div id="spotlight" class="animated fadeIn">
  3. <div id="home-center">
  4. <h1 id="home-title">Track3's Blog</h1>
  5. {{- with .Site.Params.social }}
  6. <div id="home-social">
  7. {{ partialCached "social-icons.html" . }}
  8. </div>
  9. {{- end }}
  10. <nav id="home-nav" class="site-nav">
  11. {{- range .Site.Menus.main }}
  12. <a href="{{ .URL }}">{{ .Name }}</a>
  13. {{- end }}
  14. </nav>
  15. </div>
  16. <div id="home-footer">
  17. <p>&copy; 2018 <a href="https://www.xxxlbox.com">{{ .Site.Author.name }}</a>. Some Rights Reserved.</p>
  18. </div>
  19. </div>
  20. {{ end }}
  21. {{ define "footer" }}
  22. <script>let haveHeader = false, haveComments = false;</script>
  23. {{ end }}