├── .gitignore
├── app-live-demo
├── _archive-body.php
├── footer.php
├── functions.php
├── header.php
├── index.php
├── js
│ ├── app.js
│ ├── collections
│ │ └── archive.js
│ ├── models
│ │ └── post.js
│ ├── routers
│ │ └── router.js
│ └── views
│ │ ├── core.js
│ │ └── post.js
├── json-posts.php
├── json.php
└── style.css
├── app
├── _archive-body.php
├── footer.php
├── functions.php
├── header.php
├── index.php
├── js
│ ├── app.js
│ ├── collections
│ │ └── archive.js
│ ├── models
│ │ └── post.js
│ ├── routers
│ │ └── router.js
│ └── views
│ │ ├── core.js
│ │ └── post.js
├── json-posts.php
├── json.php
└── style.css
├── live-demo.md
└── readme.md
/.gitignore:
--------------------------------------------------------------------------------
1 | .idea
2 |
--------------------------------------------------------------------------------
/app-live-demo/_archive-body.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 | {{{ data.title }}}
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | {{{ data.content }}}
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/app-live-demo/footer.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
8 |
9 |
10 |