Method: Web::Wiki::Page#template
- Defined in:
- lib/web/wiki/page.rb
#template ⇒ Object
103 104 105 106 107 108 109 110 111 112 113 |
# File 'lib/web/wiki/page.rb', line 103 def template if (self.name == Web::Wiki::pref(:home_page)) Web::Wiki::pref( :home_template ) elsif(self.illustration == nil) "basic.html" elsif (self.illustration.empty?) "basic.html" else "illustration.html" end end |