Module: Sinatra::Templates

Included in:
Base
Defined in:
lib/sinatra/base.rb

Overview

Template rendering methods. Each method takes the name of a template to render as a Symbol and returns a String with the rendered output, as well as an optional hash with additional options.

template is either the name or path of the template as symbol (Use :'subdir/myview' for views in subdirectories), or a string that will be rendered.

Possible options are: :content_type The content type to use, same arguments as content_type. :layout If set to something falsy, no layout is rendered, otherwise the specified layout is used (Ignored for sass) :layout_engine Engine to use for rendering the layout. :locals A hash with local variables that should be available in the template :scope If set, template is evaluate with the binding of the given object rather than the application instance. :views Views directory to use.

Defined Under Namespace

Modules: ContentTyped

Instance Method Summary collapse

Instance Method Details

#asciidoc(template, options = {}, locals = {}) ⇒ Object



792
793
794
# File 'lib/sinatra/base.rb', line 792

def asciidoc(template, options = {}, locals = {})
  render :asciidoc, template, options, locals
end

#builder(template = nil, options = {}, locals = {}, &block) ⇒ Object



774
775
776
777
# File 'lib/sinatra/base.rb', line 774

def builder(template = nil, options = {}, locals = {}, &block)
  options[:default_content_type] = :xml
  render_ruby(:builder, template, options, locals, &block)
end

#erb(template, options = {}, locals = {}, &block) ⇒ Object



752
753
754
# File 'lib/sinatra/base.rb', line 752

def erb(template, options = {}, locals = {}, &block)
  render(:erb, template, options, locals, &block)
end

#find_template(views, name, engine) {|::File.join(views, "#{name}.#{@preferred_extension}")| ... } ⇒ Object

Calls the given block for every possible template file in views, named name.ext, where ext is registered on engine.

Yields:

  • (::File.join(views, "#{name}.#{@preferred_extension}"))


821
822
823
824
825
826
827
# File 'lib/sinatra/base.rb', line 821

def find_template(views, name, engine)
  yield ::File.join(views, "#{name}.#{@preferred_extension}")

  Tilt.default_mapping.extensions_for(engine).each do |ext|
    yield ::File.join(views, "#{name}.#{ext}") unless ext == @preferred_extension
  end
end

#haml(template, options = {}, locals = {}, &block) ⇒ Object



756
757
758
# File 'lib/sinatra/base.rb', line 756

def haml(template, options = {}, locals = {}, &block)
  render(:haml, template, options, locals, &block)
end

#initializeObject



746
747
748
749
750
# File 'lib/sinatra/base.rb', line 746

def initialize
  super
  @default_layout = :layout
  @preferred_extension = nil
end

#liquid(template, options = {}, locals = {}, &block) ⇒ Object



779
780
781
# File 'lib/sinatra/base.rb', line 779

def liquid(template, options = {}, locals = {}, &block)
  render(:liquid, template, options, locals, &block)
end

#markaby(template = nil, options = {}, locals = {}, &block) ⇒ Object



796
797
798
# File 'lib/sinatra/base.rb', line 796

def markaby(template = nil, options = {}, locals = {}, &block)
  render_ruby(:mab, template, options, locals, &block)
end

#markdown(template, options = {}, locals = {}) ⇒ Object



783
784
785
786
# File 'lib/sinatra/base.rb', line 783

def markdown(template, options = {}, locals = {})
  options[:exclude_outvar] = true
  render :markdown, template, options, locals
end

#nokogiri(template = nil, options = {}, locals = {}, &block) ⇒ Object



800
801
802
803
# File 'lib/sinatra/base.rb', line 800

def nokogiri(template = nil, options = {}, locals = {}, &block)
  options[:default_content_type] = :xml
  render_ruby(:nokogiri, template, options, locals, &block)
end

#rabl(template, options = {}, locals = {}) ⇒ Object



814
815
816
817
# File 'lib/sinatra/base.rb', line 814

def rabl(template, options = {}, locals = {})
  Rabl.register!
  render :rabl, template, options, locals
end

#rdoc(template, options = {}, locals = {}) ⇒ Object



788
789
790
# File 'lib/sinatra/base.rb', line 788

def rdoc(template, options = {}, locals = {})
  render :rdoc, template, options, locals
end

#sass(template, options = {}, locals = {}) ⇒ Object



760
761
762
763
764
765
# File 'lib/sinatra/base.rb', line 760

def sass(template, options = {}, locals = {})
  options[:default_content_type] = :css
  options[:exclude_outvar] = true
  options[:layout] = nil
  render :sass, template, options, locals
end

#scss(template, options = {}, locals = {}) ⇒ Object



767
768
769
770
771
772
# File 'lib/sinatra/base.rb', line 767

def scss(template, options = {}, locals = {})
  options[:default_content_type] = :css
  options[:exclude_outvar] = true
  options[:layout] = nil
  render :scss, template, options, locals
end

#slim(template, options = {}, locals = {}, &block) ⇒ Object



805
806
807
# File 'lib/sinatra/base.rb', line 805

def slim(template, options = {}, locals = {}, &block)
  render(:slim, template, options, locals, &block)
end

#yajl(template, options = {}, locals = {}) ⇒ Object



809
810
811
812
# File 'lib/sinatra/base.rb', line 809

def yajl(template, options = {}, locals = {})
  options[:default_content_type] = :json
  render :yajl, template, options, locals
end