| 1 |
!!! 5 |
| 2 |
%html |
| 3 |
%head |
| 4 |
%title Example HAML |
| 5 |
/[if IE] |
| 6 |
%link{ :rel => "stylesheet", :href => "/css/ie.css" } |
| 7 |
%body |
| 8 |
#container |
| 9 |
%header |
| 10 |
%h1 Our Awesome HTML5 Template |
| 11 |
#main |
| 12 |
Did we mention this was awesome? |
| 13 |
|
| 14 |
/ Only this line will be wrapped in a comment |
| 15 |
%blockquote |
| 16 |
%p Roads? Where we're going we don't need roads |
| 17 |
|
| 18 |
/ |
| 19 |
Now the whole block will be commented out |
| 20 |
%blockquote |
| 21 |
%p Roads? Where we're going we don't need roads |
| 22 |
|
| 23 |
%p The line below won't appear in the HTML |
| 24 |
-# The rest of this line is a comment |
| 25 |
%p The line above won't appear in the HTML, nor will the lines underneath |
| 26 |
-# |
| 27 |
None of this text will appear in our |
| 28 |
rendered output |
| 29 |
|
| 30 |
%p= Time.now |
| 31 |
|
| 32 |
%footer |
| 33 |
%address |
| 34 |
.hcard |
| 35 |
.fn Ian Oxley |
| 36 |
.adr |
| 37 |
.locality Newcastle-upon-Tyne |
| 38 |
.country-name England |
| 39 |
|
| 40 |
/ From https://gist.github.com/ianoxley/1147666 |
| 41 |
|