123456789101112131415161718 |
- <!DOCTYPE html>
- <html>
- <head>
- <title>Templates Test</title>
- </head>
- <body>
- <h1 align="center">Now the value is @myvariable</h1>
- if not @can_place
- {
- <h1 align="center">Can't place</h1>
- }
- if @can_place
- {
- <h1 align="center">Can place is "true"</h1>
- }
- </body>
- </html>
|