当前位置: 首页 > 工具软件 > Mezzanine > 使用案例 >

Django笔记 CMS框架Mezzanine 2

胡夕
2023-12-01

pip install mezzanine-pagedown Pygments

3 加入语法高亮和背景定制

自定义网站界面风格的标准做法是创建一个新的application。因为application的template是先加载的,所以自定义的界面风格可以体现到网站。

a. 建立一个新的application

python manage.py startapp theme 

b. 产生新的css

安装了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

c. 继续修改setting.py

将新建的theme应用添加进去:

INSTALLED_APPS = (
“theme”,
“mezzanine_pagedown”,
“django.contrib.admin”,

d. 修改模板文件

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/ #移动到新建项目的目录中去。

参照: http://qiita.com/itkr/items/c6c26f55a292f3e39241

 类似资料: