Skip to content

Instantly share code, notes, and snippets.

@yuya-matsushima
Last active December 19, 2015 19:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuya-matsushima/6005792 to your computer and use it in GitHub Desktop.
Save yuya-matsushima/6005792 to your computer and use it in GitHub Desktop.
[ Middleman で超速プロトタイピング ] #00 Haml 再入門 | Developers.IO : http://dev.classmethod.jp/ria/html5/middleman-supersonic-00-haml-relearning/ の slim 版
!!!
%html
%head
%title hello, Haml
%body
%h1 hello, Haml!
%p Lorem ipsum dolor sit amet
%ul#myList
- 3.times do |i|
%li= "item_#{i}"
doctype html
html
head
title hello, Slim
body
h1 hello, Slim!
p Lorem ipsum dolor sit amet
ul#myList
- 3.times do |i|
li = "item_#{i}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment