[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Zinnia-theme-foundation is a python package providing a theme built on Zurb Foundation for django-blog-zinnia.

License

Notifications You must be signed in to change notification settings

gustavi/zinnia-theme-foundation

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Zinnia-theme-foundation

Zinnia-theme-foundation is a python package providing a theme builded on Zurb Foundation 5 for django-blog-zinnia. Inspired by the zinnia-theme-boostrap.

Getting Start

Download the package

The Zinnia-theme-foundation package required django and django-blog-zinnia.

You can install zinnia-theme-foundation with pip :

pip install zinnia-theme-foundation

If you want the dev version :

pip install git+git://github.com/gustavi/zinnia-theme-foundation.git

Add the theme in django

Edit you settings.py and add zinnia_foundation in your INSTALLED_APP BEFORE the zinnia app to bypass the loading of the Zinnia's templates :

INSTALLED_APPS = (
    ...
    'zinnia_foundation', # BEFORE the "zinnia" app
    ...
    'zinnia',
)

You need to use the django.template.loaders.eggs.Loader template loader if you have installed the package as an egg.

At the end of your settings.py :

TEMPLATE_LOADERS = (
    'django.template.loaders.filesystem.Loader',
    'django.template.loaders.app_directories.Loader',
    'django.template.loaders.eggs.Loader',
)

or

TEMPLATE_LOADERS += (
    'django.template.loaders.eggs.Loader',
)

Your theme is ready to use !

Customize the design

You can Customize Zinnia’s look and feel or change the Zurb Foundation design with Sass.

Icons are Foundation Icon Fonts 3.

Licence

Zinnia-theme-foundation is licensed under the GNU GENERAL PUBLIC LICENSE version 3.

About

Zinnia-theme-foundation is a python package providing a theme built on Zurb Foundation for django-blog-zinnia.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 94.6%
  • CSS 5.1%
  • Python 0.3%