main.html 1018 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. code {
  29. background-color: #ffe4c478;
  30. padding: 2px 6px;
  31. border-radius: 4px;
  32. }
  33. .origin {
  34. font-family: times;
  35. }
  36. .col p{
  37. display:inline;
  38. }
  39. </style>
  40. </head>
  41. <body>
  42. <h1>[[book_title]]</h1>
  43. <h2>目录</h2>
  44. <ul>
  45. [[#sections]]
  46. <li><a href="#[[filename]]">[[filename]]</a></li>
  47. [[/sections]]
  48. </ul>