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 and less) :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



737
738
739
# File 'lib/sinatra/base.rb', line 737

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

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



715
716
717
718
# File 'lib/sinatra/base.rb', line 715

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

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



749
750
751
752
# File 'lib/sinatra/base.rb', line 749

def coffee(template, options = {}, locals = {})
  options.merge! :layout => false, :default_content_type => :js
  render :coffee, template, options, locals
end

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



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

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

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



681
682
683
# File 'lib/sinatra/base.rb', line 681

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

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



685
686
687
688
689
# File 'lib/sinatra/base.rb', line 685

def erubis(template, options = {}, locals = {})
  warn "Sinatra::Templates#erubis is deprecated and will be removed, use #erb instead.\n" \
    "If you have Erubis installed, it will be used automatically."
  render :erubis, template, options, locals
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}"))


787
788
789
790
791
792
793
# File 'lib/sinatra/base.rb', line 787

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



691
692
693
# File 'lib/sinatra/base.rb', line 691

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

#initializeObject



675
676
677
678
679
# File 'lib/sinatra/base.rb', line 675

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

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



705
706
707
708
# File 'lib/sinatra/base.rb', line 705

def less(template, options = {}, locals = {})
  options.merge! :layout => false, :default_content_type => :css
  render :less, template, options, locals
end

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



720
721
722
# File 'lib/sinatra/base.rb', line 720

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

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



745
746
747
# File 'lib/sinatra/base.rb', line 745

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

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



724
725
726
727
# File 'lib/sinatra/base.rb', line 724

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

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



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

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

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



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

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



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

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

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



741
742
743
# File 'lib/sinatra/base.rb', line 741

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

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



733
734
735
# File 'lib/sinatra/base.rb', line 733

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

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



695
696
697
698
# File 'lib/sinatra/base.rb', line 695

def sass(template, options = {}, locals = {})
  options.merge! :layout => false, :default_content_type => :css
  render :sass, template, options, locals
end

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



700
701
702
703
# File 'lib/sinatra/base.rb', line 700

def scss(template, options = {}, locals = {})
  options.merge! :layout => false, :default_content_type => :css
  render :scss, template, options, locals
end

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



759
760
761
# File 'lib/sinatra/base.rb', line 759

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

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



710
711
712
713
# File 'lib/sinatra/base.rb', line 710

def stylus(template, options = {}, locals = {})
  options.merge! :layout => false, :default_content_type => :css
  render :styl, template, options, locals
end

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



729
730
731
# File 'lib/sinatra/base.rb', line 729

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

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



771
772
773
# File 'lib/sinatra/base.rb', line 771

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

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



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

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