Django中的_config.yml等效

时间:2013-08-30 09:56:09

标签: python django web-applications jekyll code-reuse

我最近开始从Jekyll(基于rails的框架)迁移到Django,我刚刚开始。

我正在试图弄清楚等同于_config.yml(如果有的话)将在django中。对于那些没有Jekyll背景的人来说,_config.yml看起来有点像这样:

# ----------------------- #
#      Main Configs       #
# ----------------------- #
markdown: rdiscount
pygments: true
permalink: /posts/:title
rdiscount:
  extensions: [smart]

url: http://foo.bar
title: ./derp
subtitle: My code
author: Foo Bar
simple_search: http://google.com/search
description:

这个功能不是必须遍历页面标题,网址等......

谢谢!

1 个答案:

答案 0 :(得分:0)

配置文件最相关的等价物是settings.py。 对于网址模式,您有专用模块 - urls.py。

页面标题之类的东西可以在任何地方定义,只要你将它拉入模板上下文,但我认为最好的做法是使用内置的网站应用程序或直接将它放在主模板中。