├── article.html
├── datalist.html
├── details.html
├── dialog.html
├── figure.html
└── picture.html
/article.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
Article
4 |
5 |
6 | This blog post is the worst.
7 |
8 |
--------------------------------------------------------------------------------
/datalist.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Datalist
4 |
5 |
15 |
16 |
--------------------------------------------------------------------------------
/details.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Details
4 |
5 |
6 | FAQ
7 |
8 |
9 | How long are you open?
10 |
11 | We are open 24 hours a day!
12 |
13 |
14 |
15 | Why didn't Marty grab the gas from Doc's time machine in Back to the Future 3?
16 |
17 | Because it's a movie..
18 |
19 |
20 |
21 |
--------------------------------------------------------------------------------
/dialog.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Dialog
4 |
5 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
24 |
--------------------------------------------------------------------------------
/figure.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Figure
4 |
5 |
6 |
7 |
8 | Some random photo that I can't describe.
9 |
10 |
11 |
12 |
13 |
14 | example.php
15 |
16 |
17 | $name = 'jeff';
18 |
19 | echo $name;
20 |
21 |
22 |
23 |
24 |
25 |
26 | Hamlet
27 | To be or not to be...
28 |
29 |
--------------------------------------------------------------------------------
/picture.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | Picture
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
--------------------------------------------------------------------------------