Skip to content

josedonizetti/frog

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
bin
 
 
lib
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

#Frog

Template language which compiles to html. Support ruby code. Implemented with raac, and rexical.

##Syntax

html {
  head {
    title "My App"
  }

  body.css_class {
    h1.css_class "My App"

    section#id.class1.class2 {
      "This is cool"

      //Ruby code
      - for i in 0..2

        //Expressions
        p#css_id(style="color:blue") #{i}

      - end
    }
  }
}

Installation

Frog's installation is pretty standard:

$ gem install frog

If you'd rather install Frog using bundler:

gem 'frog'

Basic Usage

Running frog passing a template to compile it:

$ frog path/to/template.frog

Atom Support.

Contributing

Want to contribute? Great!

  1. Fork it.
  2. Create a branch (git checkout -b new_feature)
  3. Commit your changes (git commit -am "Add new feature")
  4. Push to the branch (git push origin new_feature)
  5. Open a [Pull Request][1]

##LICENSE

Frog is Copyright (c) 2014 Jose Donizetti and distributed under the MIT license. See the LICENSE file for more info.

##Credits

Frog was born inside the Great Club of Code.

About

simple html language template

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages