index.html 822 B

1234567891011121314151617181920212223242526
  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" class="social-icons">
  7. {{ range . -}}
  8. <a href="{{ .url }}" target="_blank" rel="noopener"><span class="screen-reader-text">{{ .name }}</span>{{ partial "social-svg.html" . }}</a>
  9. {{- end }}
  10. </div>
  11. {{- end }}
  12. <nav id="home-nav" class="site-nav">
  13. {{- range .Site.Menus.main }}
  14. <a href="{{ .URL }}">{{ .Name }}</a>
  15. {{- end }}
  16. </nav>
  17. </div>
  18. <div id="home-footer">
  19. <p>&copy; 2018 <a href="https://www.xxxlbox.com">{{ .Site.Author.name }}</a>. Some Rights Reserved.</p>
  20. </div>
  21. </div>
  22. {{ end }}
  23. {{ define "footer" }}
  24. <script>let haveHeader = false, haveComments = false;</script>
  25. {{ end }}