Sha256: 7036b4bce7408fa973805ca2ced1cada04097972a4fddc1a0c000a855449a53d

Contents?: true

Size: 766 Bytes

Versions: 4

Compression:

Stored size: 766 Bytes

Contents

# Registers a new theme to use for this project. See
# http://zen-cms.com/documentation/Zen/Theme.html for more information on all
# the available options and working with themes in general.
Zen::Theme.add do |theme|
  # The unique name of the theme specified as a symbol (required).
  theme.name = :default

  # The name of the author of the theme (required).
  theme.author = 'Zen'

  # A URL that points to a website/web page related to the theme.
  theme.url = 'http://zen-cms.com/'

  # A short description of the theme (required).
  theme.about = 'The default theme for Zen.'

  # The directory containing all the templates (required).
  theme.templates = __DIR__

  # The directory containing all template partials.
  theme.partials = __DIR__('partials')
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
zen-0.4.3 proto/app/theme/theme.rb
zen-0.4.2 proto/app/theme/theme.rb
zen-0.4.1 proto/app/theme/theme.rb
zen-0.4 proto/app/theme/theme.rb