您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
- $LOAD_PATH.unshift File.dirname(__FILE__) + '/../lib'
- require 'mustache'
-
- class TemplatePartial < Mustache
- self.path = File.dirname(__FILE__)
-
- def title
- "Welcome"
- end
- end
-
- if $0 == __FILE__
- puts TemplatePartial.to_html
- end
|