0.0
No commit activity in last 3 years
No release in over 3 years
Create themes and release them as static site
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 10.0
~> 0.31.0
~> 0.10.0
~> 3.1.2

Runtime

>= 0
>= 1.7.0, ~> 1.0
 Project Readme

RogerThemes

Create themes and release them as static site.

Themes setup

Your themes live in the themes dir, it will release all pages for your themes into the theme dir.

Installation

Add this line to your application's Gemfile:

gem 'roger_themes'

And then execute:

$ bundle

Todo

  • Add tests
  • Complete documentation (especially on how themes work by default)
  • Add theme selector views for usage in table of content

Usage

Include the middleware and processor in the serve and release block:

mockup.serve do |s|
    s.use RogerThemes::Middleware
    # ...
end
mockup.release do |r|
    # ..
    r.use :themes

    # Finalise your zips for XC
    r.finalize RogerThemes::XcFinalizer

Changelog

v0.8.0

  • Make XC zip finalizer contents configurable

v0.7.0

  • Allow config of shard folders in manifest files
  • Allow disabling of shared templates in manifest files
  • Make sure all templates in a theme folder are processed with the theme env variables set.

v0.6.0

  • Attention! env["SITE_THEME"] has been renamed to env["MAIN_THEME"]. Also it will now return a RogerThemes::Theme object instead of a string. The old behaviour can be restored by replacing env["SITE_THEME"] with env["MAIN_THEME"].name
  • Add compatibility for subthemes
  • Add support for manifest files
  • Add datastructures for themes and assets

v0.5.0

  • Make compatible with Roger 1.7

v0.4.0

  • Resolve issue around shared paths (#1)

v0.1.2

  • Fix dir merging when a local folder exists

v0.1.1

  • Update processor

v0.1.0

  • :shared_folders now also takes a hash to enable nested theme folders
      {
          shared_folders: {"images" => "rel/images"}
      }
    
  • Remove rel from shared_folders

v0.0.1 (never released)

  • Initial release

Contributing

  1. Fork it ( https://github.com/digitpaint/roger_themes/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request