Sha256: 5e3efb49747b92ab8fb186960e4fb1bc0f0d9cc8b9805ff659b7c020703bd204

Contents?: true

Size: 879 Bytes

Versions: 6

Compression:

Stored size: 879 Bytes

Contents

# HTML5 Boilerplate template
class Middleman::Templates::Html5 < Middleman::Templates::Base
  class_option 'css_dir',
               default: 'css',
               desc: 'The path to the css files'
  class_option 'js_dir',
               default: 'js',
               desc: 'The path to the javascript files'
  class_option 'images_dir',
               default: 'img',
               desc: 'The path to the image files'

  # Templates are relative to this file
  # @return [String]
  def self.source_root
    File.dirname(__FILE__)
  end

  # Output the files
  # @return [void]
  def build_scaffold!
    template 'shared/config.tt', File.join(location, 'config.rb')
    directory 'html5/source', File.join(location, 'source')
    empty_directory File.join(location, 'source')
  end
end

# Register the template
Middleman::Templates.register(:html5, Middleman::Templates::Html5)

Version data entries

6 entries across 6 versions & 2 rubygems

Version Path
middleman-core-3.3.5 lib/middleman-core/templates/html5.rb
middleman-core-cj-3.3.6 lib/middleman-core/templates/html5.rb
middleman-core-cj-3.3.5 lib/middleman-core/templates/html5.rb
middleman-core-cj-3.3.4 lib/middleman-core/templates/html5.rb
middleman-core-3.3.4 lib/middleman-core/templates/html5.rb
middleman-core-3.3.3 lib/middleman-core/templates/html5.rb