pip install mezzanine-pagedown Pygments
自定义网站界面风格的标准做法是创建一个新的application。因为application的template是先加载的,所以自定义的界面风格可以体现到网站。
python manage.py startapp theme
安装了pygments之后,manage.py中多了一个命令:
python manage.py pygments_styles # 在命令行输出一个css文件内容。
意外得到一个:warn(“You haven’t defined the ALLOWED_HOSTS settings… )。修改setting.py,ALLOWED_HOSTS = (‘localhost’, ‘.local’)就可以。
mkdir -p theme/static/css
touch theme/init.py
python manage.py pygments_styles colorful >theme/static/css/codehilite.css
将新建的theme应用添加进去:
INSTALLED_APPS = (
“theme”,
“mezzanine_pagedown”,
“django.contrib.admin”,
Django is finding those templates via settings.TEMPLATE_DIRS.
一般我们很难搞清楚到底是如何收集template文件的。
Mezzanine提供了一个命令来收集所有的template文件,非常有帮助:
在setting文件中加入下面设置。
TEMPLATE_DIRS = [TEMPLATES[0]['DIRS'][0]]
python manage.py collecttemplates # 将所有template文件收集到templates目录下 (不用执行这个)
python manage.py collecttemplates -t base.html #其实我们并不需要所有的文件,其实只需一个base.html就可以了。
mv templates/ theme/ #移动到新建项目的目录中去。