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

show.tera 276B

1234567891011121314151617
  1. <html>
  2. <head>
  3. <title>{{ gist.title }}</title>
  4. </head>
  5. <body>
  6. {% if gist %}
  7. <h3>{{ gist.title }}</h3>
  8. <div>
  9. <p>
  10. {{ gist.body }}
  11. </p>
  12. </div>
  13. {% else %}
  14. <h3>Gist not found</h3>
  15. {% endif %}
  16. </body>
  17. </html>