index.html 289 B

123456789101112131415161718
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>Templates Test</title>
  5. </head>
  6. <body>
  7. <h1 align="center">Now the value is @myvariable</h1>
  8. if not @can_place
  9. {
  10. <h1 align="center">Can't place</h1>
  11. }
  12. if @can_place
  13. {
  14. <h1 align="center">Can place is "true"</h1>
  15. }
  16. </body>
  17. </html>