Hacking Django’s Views and URLS to support your blog

Introduction

When we initially created our blog app, we had segregated our blog app to any path that started with blog/. In the case of our blog, however, its reach expands beyond a traditional blog post. In fact, we want our website to render any blog post that exists in its file tree.

Fixing our URL mapping

External Resources