You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 31, 2021. It is now read-only.
Although most of the site is dynamic there are some important aspects that are still static in nature.
Layout
Widgets
A CMS like framework provides a dynamic layout which comes handy when we suddenly want to change something - This requires no changes in code
Widgets based framework makes all apps decoupled and hence gives greater flexibility. Also, it gives lot of scope to do things from database without touching codebase.
Simple examples:
If we want to make a small announcement on the site for couple of days: The current framework requires to manually create HTML for it -- We can use "widgets" here
If we want to move "side bar" from right to left or change header image -- The current framework requires us to manually edit HTMl -- We might create "widgets" that does this from database itself.
Possible stack for inspiration:
django-cms.org
The text was updated successfully, but these errors were encountered:
Although most of the site is dynamic there are some important aspects that are still static in nature.
A CMS like framework provides a dynamic layout which comes handy when we suddenly want to change something - This requires no changes in code
Widgets based framework makes all apps decoupled and hence gives greater flexibility. Also, it gives lot of scope to do things from database without touching codebase.
Simple examples:
Possible stack for inspiration:
django-cms.org
The text was updated successfully, but these errors were encountered: