The backend of a gist server written in Rust
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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>