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

show.tera 421B

12345678910111213141516171819202122232425262728
  1. <html>
  2. <head>
  3. <title>{{ title }}</title>
  4. <style>
  5. pre {
  6. font-size: 16px;
  7. padding: 15px;
  8. }
  9. pre.plaintext {
  10. padding: 0;
  11. }
  12. .container {
  13. margin: auto;
  14. max-width: 800px;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div class="container">
  20. <h1>{{ title }}</h3>
  21. <div>
  22. {{ body | safe }}
  23. </div>
  24. </div>
  25. </body>
  26. </html>