main.html 776 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <html lang="en-us">
  2. <head>
  3. <meta charset="utf-8" />
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  5. <title>[[book_title]]</title>
  6. <style>
  7. p {
  8. text-indent: 2em;
  9. line-height: 1.7em;
  10. }
  11. a {
  12. text-decoration: none;
  13. }
  14. .paragraph {
  15. margin-bottom: 1em;
  16. }
  17. .row {
  18. display: flex;
  19. }
  20. @media screen and (max-width: 960px){
  21. .row {
  22. flex-direction: column;
  23. }
  24. }
  25. .col {
  26. flex: 5;
  27. }
  28. </style>
  29. </head>
  30. <body>
  31. <h1>[[book_title]]</h1>
  32. <h2>目录</h2>
  33. <ul>
  34. [[#sections]]
  35. <li><a href="#[[filename]]">[[filename]]</a></li>
  36. [[/sections]]
  37. </ul>