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>