I recently started moving from Jekyll (rails-based framework) to Django and I am just starting.
I am trying to figure out what the equivalent to _config.yml (if there is any) would be in django. For those with no background in Jekyll, _config.yml looks somewhat like this:
# ----------------------- #
# 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:
The function of this is not to have to write over and over the page title, urls, etc...
Thank you!