stasis

Static sites made powerful

  • 所有者: winton/stasis
  • 平台:
  • 许可证: MIT License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Stasis

Stasis is a dynamic framework for static sites.

Build Status

Install

Install via RubyGems:

$ gem install stasis

Example

At its most essential, Stasis takes a directory tree with supported template files and renders them.

Example directory structure:

project/
    index.html.haml
    images/
        image.png

Run stasis:

$ cd project
$ stasis

Stasis creates a public directory:

project/
    index.html.haml
    images/
        image.png
    public/
        index.html
        images/
            image.png

index.html.haml becomes public/index.html.

Unrecognized extensions are copied as-is (image.png).

Controllers

Controllers contain Ruby code that executes once before all templates render.

Example directory structure:

project/
    controller.rb
    index.html.haml
    styles/
        controller.rb
        style.css.sass

You may have a controller at any directory level.

Before

Use before blocks within controller.rb to execute code before a template renders.

controller.rb:

before 'index.html.haml' do
  @something = true
end

@something is now available to the index.html.haml template.

The before method can take any number of paths and/or regular expressions:

before 'index.html.haml', /.*html\.erb/ do
  @something = true
end

Layouts

layout.html.haml:

%html
  %body= yield

In controller.rb, set the default layout:

layout 'layout.html.haml'

Set the layout for a particular template:

layout 'index.html.haml' => 'layout.html.haml'

Use a regular expression:

layout /.*html.haml/ => 'layout.html.haml'

Set the layout from a before block:

before 'index.html.haml' do
  layout 'layout.html.haml'
end

Render

Within a template:

%html
  %body= render '_partial.html.haml'

Within a before block:

before 'index.html.haml' do
  @partial = render '_partial.html.haml'
end

Text:

render :text => 'Hello'

Local variables:

render 'index.html.haml', :locals => { :x => true }

Include a block for the template to yield to:

render 'index.html.haml' { 'Hello' }

Instead

The instead method changes the output of the template being rendered:

before 'index.html.haml' do
  instead render('subdirectory/index.html.haml')
end

Helpers

controller.rb:

helpers do
  def say_hello
    'Hello'
  end
end

The say_hello method is now available to all before blocks and templates.

Ignore

Use the ignore method in controller.rb to ignore certain paths.

Ignore filenames with an underscore at the beginning:

ignore /\/_.*/

Priority

Use the priority method in controller.rb to change the file process order.

Copy .txt files before rendering the index.html.erb template:

priority /.*txt/ => 2, 'index.html.erb' => 1

The default priority is 0 for all files.

Usage

Command Line

Always execute the stasis command in the root directory of your project.

Development mode (auto-regenerate on save):

$ stasis -d

Specify a port to start an HTTP server:

$ stasis -d 3000

Only render specific files or directories:

$ stasis -o index.html.haml,subdirectory

Change the public (destination) directory:

$ stasis -p ../public

Ruby Library

Instantiate a Stasis object:

stasis = Stasis.new('/path/to/project/root')

Optionally specify a destination directory:

stasis = Stasis.new('/project', '/html')

Render all templates:

stasis.render

Render a specific template or directory:

stasis.render('index.html.haml', 'subdirectory')

More

Supported Markup Languages

Stasis uses Tilt to support the following template engines:

ENGINE                     FILE EXTENSIONS
-------------------------- -----------------------
ERB                        .erb, .rhtml
Interpolated String        .str
Erubis                     .erb, .rhtml, .erubis
Haml                       .haml
Sass                       .sass
Scss                       .scss
Less CSS                   .less
Builder                    .builder
Liquid                     .liquid
RDiscount                  .markdown, .mkd, .md
Redcarpet                  .markdown, .mkd, .md
BlueCloth                  .markdown, .mkd, .md
Kramdown                   .markdown, .mkd, .md
Maruku                     .markdown, .mkd, .md
RedCloth                   .textile
RDoc                       .rdoc
Radius                     .radius
Markaby                    .mab
Nokogiri                   .nokogiri
CoffeeScript               .coffee
Creole (Wiki markup)       .wiki, .creole
WikiCloth (Wiki markup)    .wiki, .mediawiki, .mw
Yajl                       .yajl

This Web Site

Take a look at the Stasis project that automatically generated this web site from the project README.

主要指标

概览
名称与所有者winton/stasis
主编程语言Ruby
编程语言Ruby (语言数: 4)
平台
许可证MIT License
所有者活动
创建于2011-03-08 08:15:16
推送于2018-01-29 01:59:36
最后一次提交2018-01-28 20:59:35
发布数15
最新版本名称v0.2.0 (发布于 2013-01-27 14:53:04)
第一版名称v0.1.11 (发布于 2011-10-10 00:43:14)
用户参与
星数672
关注者数12
派生数55
提交数263
已启用问题?
问题数63
打开的问题数15
拉请求数19
打开的拉请求数3
关闭的拉请求数9
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?