Typo Themes
Installing a theme
Installation is as easy as unpacking your theme into the themes directory at the root of your typo application.
We’ll use the scribbish theme for an example:
This should leave you with a directory named ‘Scribbish’ on the same level as the default ‘Azure’ theme.
$ cd themes
$ curl -O http://quotedprintable.com/files/scribbish-0.1.tar.gz
$ tar xzf scribbish-0.1.tar.gz
That’s all there is to it. The Scribbish theme will now show up in the typo back-end under the ‘Themes’ tab. All you have to do is activate it, through your typo configuration.
Resetting Theme
Reseting your theme can be done through the console via ssh.
~]$ cd typo/
typo]$ ./script/console
Loading development environment.
>> a = Blog.find 1
>> a.settings["theme"]
=> "scribbish"
>> a.settings["theme"] = "azure"
=> "azure"
>> a.save => true