alagu/pagoda

View on GitHub
lib/pagoda/views/layout.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'cgi'

module Shwedagon
  module Views
    class Layout < Mustache
      include Rack::Utils
      alias_method :h, :escape_html

      attr_reader :name, :path

      def title
        "Home"
      end

      def base_url
        @base_url
      end

    end
  end
end