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

123456789101112131415
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" href="/_style.css">
  6. <title>{{title}}</title>
  7. </head>
  8. <body>
  9. {{menu}}
  10. <div id="articles">
  11. {{articles}}
  12. </div>
  13. </body>
  14. </html>