├── root ├── themes │ └── default │ │ ├── page.html │ │ ├── 404.html │ │ ├── author.html │ │ ├── blog.html │ │ ├── posts.html │ │ └── base.html ├── admin │ ├── wrapper.html │ ├── index.html │ ├── 404.html │ ├── appearance │ │ ├── index.html │ │ ├── menus.html │ │ ├── create.html │ │ └── menus_new.html │ ├── media │ │ └── index.html │ ├── settings │ │ ├── code_injection.html │ │ ├── user_new.html │ │ ├── database.html │ │ ├── users.html │ │ ├── user.html │ │ └── general.html │ ├── setup.html │ ├── posts │ │ ├── index.html │ │ └── create.html │ ├── login.html │ └── base.html └── static │ ├── dist │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ └── config.json │ ├── admin │ ├── dashboard.js │ └── dashboard.css │ └── themes │ ├── default │ └── blog.css │ └── default-dark │ └── blog.css ├── TODO ├── src ├── cmengine.cpp ├── cmengine.h ├── sqluserstore.h ├── cmdispatcher.h ├── main.cpp ├── libCMS │ ├── engine_p.h │ ├── menu_p.h │ ├── page_p.h │ ├── fileengine_p.h │ ├── menu.h │ ├── menu.cpp │ ├── fileengine.h │ ├── sqlengine.h │ ├── page.h │ ├── engine.cpp │ ├── page.cpp │ ├── engine.h │ └── fileengine.cpp ├── CMakeLists.txt ├── cmlyst.h ├── adminposts.h ├── adminsetup.h ├── adminmedia.h ├── adminposts.cpp ├── admin.h ├── root.h ├── adminappearance.h ├── adminpages.h ├── adminsettings.h ├── cmdispatcher.cpp ├── rsswriter.h ├── sqluserstore.cpp ├── adminsetup.cpp ├── admin.cpp ├── adminappearance.cpp ├── cmlyst.cpp ├── adminmedia.cpp ├── adminpages.cpp ├── rsswriter.cpp └── root.cpp ├── config.h.in ├── README.md └── CMakeLists.txt /root/themes/default/page.html: -------------------------------------------------------------------------------- 1 | {{page.content}} 2 | -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- 1 | *** Timeframe: Everytime *** 2 | 3 | * Fix all bugs, implement new features :-) 4 | -------------------------------------------------------------------------------- /root/admin/wrapper.html: -------------------------------------------------------------------------------- 1 | {% if no_wrapper %}{{ content }}{% else %}{% include "base.html" %}{% endif %} 2 | -------------------------------------------------------------------------------- /root/admin/index.html: -------------------------------------------------------------------------------- 1 | {% if admin %} 2 | Admin 3 | {% endif %} 4 | -------------------------------------------------------------------------------- /src/cmengine.cpp: -------------------------------------------------------------------------------- 1 | #include "cmengine.h" 2 | 3 | CMEngine::CMEngine() 4 | { 5 | 6 | } 7 | 8 | CMEngine::~CMEngine() 9 | { 10 | } 11 | 12 | -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- 1 | #ifndef CONFIG_H 2 | #define CONFIG_H 3 | 4 | /* Version number of the software */ 5 | #define VERSION "@VERSION@" 6 | 7 | #endif /*CONFIG_H*/ 8 | -------------------------------------------------------------------------------- /root/static/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutelyst/CMlyst/HEAD/root/static/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /root/static/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutelyst/CMlyst/HEAD/root/static/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /root/static/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cutelyst/CMlyst/HEAD/root/static/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /root/admin/404.html: -------------------------------------------------------------------------------- 1 |
{{ author.bio }}
4 | 5 | {% if author.location %} {{author.location}} {% endif %} 6 | {% if author.website %} {{author.website}}{% endif %} 7 | {% if posts_count %} {{ posts_count }} Posts{% endif %} 8 |{{ cms.settings.tagline }}
5 |{{page.content}}
17 || Title | 10 |Author | 11 |Date | 12 |
|---|---|---|
| 18 | {{ post.name }} 19 | /{{ post.path }} 20 | | 21 |{{ post.author }} | 22 |{{ post.modified }} | 23 |
| File | 15 |Date | 16 |Actions | 17 |
|---|---|---|
|
23 |
24 | |
28 | {{ file.modified|date:"hh:mm dd/MM/yyyy" }} | 29 |30 | Delete 31 | | 32 |
{{ cms.settings.tagline }}
5 |{{page.content}}
18 |