Skip to content

ryantm/rswg

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

RSWG

RSWG is a fully functional static website generator delivered to you in a single Rakefile. At around 200 lines of Ruby, it's easy to read and modify for your own purposes.

Features

  • Haml templating
  • Layouts
  • Partials
  • Template Pages (.hatl files)
  • YAML based models

Install

    gem install rake haml sass
	git clone git://github.com/ryantm/rswg.git sitename
    cd sitename
    rake

Tutorial

First we will make a webpage, edit ./src/pages/index.haml and write:

    %h1 Hello World

Then type rake to build your website.

    $ rake
    (in /home/ryan/rswgtest)
    Source last changed: Tue Nov 04 12:55:06 -0600 2008
    Deleting ./site
    Copying ./assets/. to ./site
    ./src/pages/index.haml to ./site/index.html
    Build took 0.00149 seconds.
    $ cat ./site/index.html 
    <h1>Hello World</h1>

Well that's pretty bland, and it doesn't have the fancy HTML markup it needs to survive validation. Let's add a layout to wrap around this. Edit ./src/layouts/default.haml and write:

    !!! STRICT
    %html{:xmlns=>"http://www.w3.org/1999/xhtml", :lang=>"en"}
      %head
         %title My Title
      %body
        =yield

Then type rake to build your website:

    $ rake
    (in /home/ryan/rswgtest)
    Source last changed: Tue Nov 04 13:11:27 -0600 2008
    Deleting ./site
    Copying ./assets/. to ./site
    ./src/pages/index.haml to ./site/index.html
    Build took 0.002527 seconds.
    $ cat ./site/index.html
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
    <html lang='en' xmlns='http://www.w3.org/1999/xhtml'>
      <head>
        <title>My Title</title>
      </head>
      <body>
        <h1>Hello World</h1>
      </body>

License

Copyright (c) 2008 Ryan Mulligan http://www.ryantm.com

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

A static website generator in a single Rakefile

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages