您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

home.html 590B

1234567891011121314151617181920212223242526272829
  1. <!DOCTYPE html>
  2. {{- partial "docs/shared" -}}
  3. <html>
  4. <head>
  5. {{ partial "docs/html-head" . }}
  6. {{ partial "docs/inject/head" . }}
  7. </head>
  8. {{- $content := `
  9. # Hugo Book Theme
  10. This is a placeholder for home page.
  11. You can override this page in:
  12. - &#96;/content/_index.md&#96;
  13. - &#96;/layouts/home.html&#96;
  14. ` -}}
  15. <body>
  16. <main class="flex justify-center">
  17. <div class="book-page markdown">
  18. {{ replace $content "&#96;" "`" | markdownify }}
  19. </div>
  20. </main>
  21. {{ partial "docs/inject/body" . }}
  22. {{ template "_internal/google_analytics_async.html" . }}
  23. </body>
  24. </html>