Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
moved from .rst to .mdown
Browse files Browse the repository at this point in the history
  • Loading branch information
Anders Hofstee committed Nov 20, 2011
1 parent 2bb905e commit af93a16
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions README.mdown
Original file line number Original file line Diff line number Diff line change
@@ -0,0 +1,47 @@

Overview
========

This is a mixture of a few existing themes, namely the html5boilerplate
Wordpress theme and Breakfast, a theme from http://www.opensourcedesign.com/.
The idea is not that you would use this theme as-is, but as with
html5boilerplate, as a jumping off point for your own theme.

Installation
============
(Largely a copied from Brent Hoover's [post](https://groups.google.com/group/mezzanine-users/browse_thread/thread/3345bdbef198d3c5) to GoogleGroups)

For this packages it's even easier since you actually don't need to install
anything. Just drop the contents of the directory you checked out into the
root of your project, and add the name of the directory to your
INSTALLED_APPS settings.

Clone out **mezzanine-html5boilerplate**

git clone git://github.com/tvon/mezzanine-html5boilerplate.git

Then just copy the directory out into your project like this:

(Notice the the dash has changed to an underscore, probably a name like
"mytheme" might work better)

myprojectroot/
/mezzanine_html5boilerplate/
/templates
/templatetags
/etc...

Then in settings.py change your INSTALLED_APPS so it looks like so:

.....<other_apps_snipped>
"mezzanine.generic",
"mezzanine.blog",
"mezzanine.forms",
"mezzanine.pages",
"mezzanine_html5boilerplate",

Then while you are working on modifying the theme, you will want to add:

THEME="mezzanine_html5boilerplate"

Which allow mezzanine to use the theme without installing it.

0 comments on commit af93a16

Please sign in to comment.