diff --git a/CHANGELOG.md b/CHANGELOG.md index b41727f..0eaab03 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 0.25.0 + +- If a markdown file with a slug cannot be found, look for a template with the same slug. Special case for `*.html` which can be a fall-back option to render for any slug. +- Add `raise_404` template tag. +- Add `last_path` template tag. + # 0.24.0 - Support Django template tags with the `mistune` markdown renderer. diff --git a/README.md b/README.md index 1280e7d..c6f33b9 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@
-A content site framework that harnesses the power of Django without the hassle 🎵
+A Dynamic Site Generator that harnesses the power of Django without the hassle 🎵
  diff --git a/docs/source/index.md b/docs/source/index.md index 6b57fcd..2f9b3e8 100644 --- a/docs/source/index.md +++ b/docs/source/index.md @@ -14,7 +14,7 @@ - Include any third-party [`Django` app](https://djangopackages.org) for additional functionality - Optional building of static HTML files -## 🤓 What is a Dynamic Site Generator? +## What is a Dynamic Site Generator? `coltrane` is similar to a static site generator -- it takes `markdown` content and renders it as HTML. However, it also provides an opinionated framework for building dynamic websites. diff --git a/pyproject.toml b/pyproject.toml index 3c54a23..30044d1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,8 +5,8 @@ dynamic = ["version", "description"] [tool.poetry] name = "coltrane" -version = "0.24.0" -description = "A simple content site framework that harnesses the power of Django without the hassle." +version = "0.25.0" +description = "A Dynamic Site Generator that harnesses the power of Django without the hassle 🎵." authors = ["adamghill