Ruby on Rails and Haml
I've never been a serious Web developer. Some PHP 6 or 7 years later, very little ASP.NET time to time - that's all. Some 2 or 3 weeks ago, just for fun, I started learning Ruby. It's turned to be a rather beautiful language, almost free of any punctuation noise. I wrote some scripts automating the most annoying routines at work and started thinking - "what's next?".
Yesterday, I started reading a book and I'm getting more and more impressed by Ruby on Rails. But the things got really exciting when I tried Haml. I've never seen such a succinct and clear template language! I feel I'm falling into love with it right now :) Just take a look:
Yesterday, I started reading a book and I'm getting more and more impressed by Ruby on Rails. But the things got really exciting when I tried Haml. I've never seen such a succinct and clear template language! I feel I'm falling into love with it right now :) Just take a look:
This file contains 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
%body | |
%ul | |
%li First | |
%li Second | |
=link_to "Second", simple_second_path |
Comments