From bd7c937957e29b5f861dab17f1bb39e3a4a40da4 Mon Sep 17 00:00:00 2001 From: App Generator <51070104+app-generator@users.noreply.github.com> Date: Wed, 1 Feb 2023 14:35:46 +0200 Subject: [PATCH] Release v1.0.1 --- CHANGELOG.md | 6 ++++++ README.md | 13 ++++++------- 2 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dfdee4..f570744 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## [1.0.1] 2023-02-01 +### Changes + +- Templates, minor refactoring + - move content from `pages/pages` -> `pages` + ## [1.0.0] 2023-02-01 ### Changes diff --git a/README.md b/README.md index b2bbd9e..7c01551 100644 --- a/README.md +++ b/README.md @@ -139,8 +139,7 @@ The theme used to style this starter provides the following files: | | | |-- pages/ | |-- index.html # INDEX page - | |-- dashboard/index.html # Main dashboard page - | |-- widgets/data.html # Widgets page + | |-- landingpage.html # Sample LP | |-- *.html # All other pages | |-- ************************************************************************ @@ -148,17 +147,17 @@ The theme used to style this starter provides the following files: When the project requires customization, we need to copy the original file that needs an update (from the virtual environment) and place it in the template folder using the same path. -For instance, if we want to customize the `footer.html` these are the steps: +For instance, if we want to customize the `index.html` these are the steps: - `Step 1`: create the `templates` DIRECTORY inside your app - `Step 2`: configure the project to use this new template directory - Edit `settings.py` TEMPLATES section -- `Step 3`: copy the `footer.html` from the original location (inside your ENV) and save it to the `YOUR_APP/templates` DIR - - Source PATH: `/LIB/admin_datta_pro/includes/footer.html` - - Destination PATH: `YOUR_APP/templates/includes/footer.html` +- `Step 3`: copy the `index.html` from the original location (inside your ENV) and save it to the `YOUR_APP/templates` DIR + - Source PATH: `/LIB/admin_datta_pro/templates/pages/index.html` + - Destination PATH: `YOUR_APP/templates/pages/index.html` - Edit the footer (Destination PATH) -At this point, the default version of the `footer.html` shipped in the library is ignored by Django. +At this point, the default version of the `index.html` shipped in the library is ignored by Django. In a similar way, all other files and components can be customized easily.