Created
April 27, 2012 02:47
-
-
Save ytkhs/2505275 to your computer and use it in GitHub Desktop.
Haml sample with latest jquery
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!!! XML UTF-8 | |
!!! | |
%html{html_attrs('ja')} | |
%head | |
%meta{ 'http-equiv' => 'content', :content => 'text/html; charset=utf-8'} | |
%title test | |
%script{:src => 'http://code.jquery.com/jquery-latest.js'} | |
:javascript | |
$(function(){ | |
alert('hello world!') | |
}); | |
%body | |
/ comment | |
%div#container welcome | |
%div.footer=Time.now.to_s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment