The backend of a gist server written in Rust
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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>