images_gallery 1.0.0.rc

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +7 -0
  2. data/Gemfile +3 -0
  3. data/LICENSE +674 -0
  4. data/README.md +84 -0
  5. data/Rakefile +53 -0
  6. data/bin/images_gallery +6 -0
  7. data/config.ru +8 -0
  8. data/lib/images_gallery/cli.rb +27 -0
  9. data/lib/images_gallery/collection.rb +15 -0
  10. data/lib/images_gallery/errors.rb +6 -0
  11. data/lib/images_gallery/generator.rb +66 -0
  12. data/lib/images_gallery/image.rb +19 -0
  13. data/lib/images_gallery/source.rb +104 -0
  14. data/lib/images_gallery/templates/_navigation.html.erb +5 -0
  15. data/lib/images_gallery/templates/_thumbnails.html.erb +13 -0
  16. data/lib/images_gallery/templates/layout.html.erb +61 -0
  17. data/lib/images_gallery/test_application.rb +14 -0
  18. data/lib/images_gallery/version.rb +3 -0
  19. data/lib/images_gallery/view.rb +55 -0
  20. data/lib/images_gallery/views/index.rb +26 -0
  21. data/lib/images_gallery/views/make.rb +28 -0
  22. data/lib/images_gallery/views/model.rb +29 -0
  23. data/lib/images_gallery.rb +10 -0
  24. data/spec/features/index_page_spec.rb +36 -0
  25. data/spec/features/makes_pages/canon_page_spec.rb +30 -0
  26. data/spec/features/makes_pages/leica_page_spec.rb +25 -0
  27. data/spec/features/models_pages/canon_eos_20d_page_spec.rb +14 -0
  28. data/spec/features/models_pages/lux_d_3_page_spec.rb +14 -0
  29. data/spec/fixtures/output-template.html +22 -0
  30. data/spec/fixtures/works.xml +596 -0
  31. data/spec/fixtures/works_large.xml +52780 -0
  32. data/spec/lib/images_gallery/cli_spec.rb +64 -0
  33. data/spec/lib/images_gallery/collection_spec.rb +14 -0
  34. data/spec/lib/images_gallery/generator_spec.rb +11 -0
  35. data/spec/lib/images_gallery/image_spec.rb +11 -0
  36. data/spec/lib/images_gallery/source_spec.rb +43 -0
  37. data/spec/lib/images_gallery/view_spec.rb +13 -0
  38. data/spec/lib/images_gallery/views/index_spec.rb +16 -0
  39. data/spec/lib/images_gallery/views/make_spec.rb +16 -0
  40. data/spec/lib/images_gallery/views/model_spec.rb +16 -0
  41. data/spec/spec_helper.rb +32 -0
  42. data/spec/support/capybara.rb +12 -0
  43. data/spec/support/helpers.rb +18 -0
  44. data/spec/support/spec_for_collection_interface.rb +7 -0
  45. data/spec/support/spec_for_generator_interface.rb +29 -0
  46. data/spec/support/spec_for_image_interface.rb +18 -0
  47. data/spec/support/spec_for_images_gallery.rb +28 -0
  48. data/spec/support/spec_for_make_page.rb +9 -0
  49. data/spec/support/spec_for_model_page.rb +13 -0
  50. data/spec/support/spec_for_parser_interface.rb +6 -0
  51. data/spec/support/spec_for_view_inerface.rb +19 -0
  52. data/spec/tmp/canon/canon_eos_20d.html +76 -0
  53. data/spec/tmp/canon/canon_eos_400d_digital.html +76 -0
  54. data/spec/tmp/canon.html +93 -0
  55. data/spec/tmp/fuji_photo_film_co_ltd/slp1000se.html +76 -0
  56. data/spec/tmp/fuji_photo_film_co_ltd.html +81 -0
  57. data/spec/tmp/fujifilm/finepix_s6500fd.html +76 -0
  58. data/spec/tmp/fujifilm.html +81 -0
  59. data/spec/tmp/index.html +181 -0
  60. data/spec/tmp/leica/d_lux_3.html +96 -0
  61. data/spec/tmp/leica.html +121 -0
  62. data/spec/tmp/nikon_corporation/nikon_d80.html +76 -0
  63. data/spec/tmp/nikon_corporation.html +81 -0
  64. data/spec/tmp/panasonic/dmc_fz30.html +81 -0
  65. data/spec/tmp/panasonic.html +91 -0
  66. data/spec/tmp/unknown_make/unknown_model.html +81 -0
  67. data/spec/tmp/unknown_make.html +91 -0
  68. metadata +283 -0
@@ -0,0 +1,76 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Images by (FUJI PHOTO FILM CO., LTD.) SLP1000SE</title>
5
+ <style type="text/css">
6
+ html, body {
7
+ font-family: "adelle", "Helvetica Neue", Helvetica, Arial, sans-serif;
8
+ font-size: 1rem;
9
+ }
10
+ nav {
11
+ border: 1px solid #ccc;
12
+ border-width: 1px 0;
13
+ margin: 2rem 0;
14
+ }
15
+ .nav-link {
16
+ display: inline-block;
17
+ line-height: 3rem;
18
+ padding: 0 1rem;
19
+ text-decoration: none;
20
+ text-transform: uppercase;
21
+ }
22
+ .grid {
23
+ max-width: 960px;
24
+ }
25
+ .grid-item {
26
+ border: 1px solid #ccc;
27
+ display: inline-block;
28
+ padding: 10px 10px 5px;
29
+ position: relative;
30
+ margin: 5px;
31
+ }
32
+ .grid-item-details {
33
+ background-color: rgba(255, 255, 255, 0.9);
34
+ color: #333;
35
+ font-size: .8rem;
36
+ font-variant: small-caps;
37
+ height: 3rem;
38
+ left: 0;
39
+ line-height: 1.2rem;
40
+ opacity: 0;
41
+ padding: .2rem 0 10px;
42
+ position: absolute;
43
+ width: 100%;
44
+ bottom: 0;
45
+ text-align: center;
46
+ text-decoration: none;
47
+ }
48
+ .grid-item:hover .grid-item-details {
49
+ opacity: 1;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body>
54
+ <header>
55
+ <h1>Images by (FUJI PHOTO FILM CO., LTD.) SLP1000SE</h1>
56
+ <nav>
57
+
58
+ <a class="nav-link" href="../index.html">Browse all the images</a>
59
+
60
+ <a class="nav-link" href="../fuji_photo_film_co_ltd.html">Browse all the FUJI PHOTO FILM CO., LTD. images</a>
61
+
62
+ </nav>
63
+
64
+ </header>
65
+
66
+ <div class="grid">
67
+
68
+ <div class="grid-item">
69
+ <img alt="Image 2828069" src="http://ih1.redbubble.net/work.2828069.1.flat,135x135,075,f.jpg"/>
70
+
71
+ </div>
72
+
73
+ </div>
74
+
75
+ </body>
76
+ </html>
@@ -0,0 +1,81 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Images by FUJI PHOTO FILM CO., LTD.</title>
5
+ <style type="text/css">
6
+ html, body {
7
+ font-family: "adelle", "Helvetica Neue", Helvetica, Arial, sans-serif;
8
+ font-size: 1rem;
9
+ }
10
+ nav {
11
+ border: 1px solid #ccc;
12
+ border-width: 1px 0;
13
+ margin: 2rem 0;
14
+ }
15
+ .nav-link {
16
+ display: inline-block;
17
+ line-height: 3rem;
18
+ padding: 0 1rem;
19
+ text-decoration: none;
20
+ text-transform: uppercase;
21
+ }
22
+ .grid {
23
+ max-width: 960px;
24
+ }
25
+ .grid-item {
26
+ border: 1px solid #ccc;
27
+ display: inline-block;
28
+ padding: 10px 10px 5px;
29
+ position: relative;
30
+ margin: 5px;
31
+ }
32
+ .grid-item-details {
33
+ background-color: rgba(255, 255, 255, 0.9);
34
+ color: #333;
35
+ font-size: .8rem;
36
+ font-variant: small-caps;
37
+ height: 3rem;
38
+ left: 0;
39
+ line-height: 1.2rem;
40
+ opacity: 0;
41
+ padding: .2rem 0 10px;
42
+ position: absolute;
43
+ width: 100%;
44
+ bottom: 0;
45
+ text-align: center;
46
+ text-decoration: none;
47
+ }
48
+ .grid-item:hover .grid-item-details {
49
+ opacity: 1;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body>
54
+ <header>
55
+ <h1>Images by FUJI PHOTO FILM CO., LTD.</h1>
56
+ <nav>
57
+
58
+ <a class="nav-link" href="index.html">Browse all the images</a>
59
+
60
+ <a class="nav-link" href="fuji_photo_film_co_ltd/slp1000se.html">SLP1000SE</a>
61
+
62
+ </nav>
63
+
64
+ </header>
65
+
66
+ <div class="grid">
67
+
68
+ <div class="grid-item">
69
+ <img alt="Image 2828069" src="http://ih1.redbubble.net/work.2828069.1.flat,135x135,075,f.jpg"/>
70
+
71
+ <a class="grid-item-details" href="fuji_photo_film_co_ltd/slp1000se.html" title="Browse all the SLP1000SE images.">
72
+ <div>FUJI PHOTO FILM CO., LTD.</div>
73
+ <div>SLP1000SE</div>
74
+ </a>
75
+
76
+ </div>
77
+
78
+ </div>
79
+
80
+ </body>
81
+ </html>
@@ -0,0 +1,76 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Images by (FUJIFILM) FinePix S6500fd</title>
5
+ <style type="text/css">
6
+ html, body {
7
+ font-family: "adelle", "Helvetica Neue", Helvetica, Arial, sans-serif;
8
+ font-size: 1rem;
9
+ }
10
+ nav {
11
+ border: 1px solid #ccc;
12
+ border-width: 1px 0;
13
+ margin: 2rem 0;
14
+ }
15
+ .nav-link {
16
+ display: inline-block;
17
+ line-height: 3rem;
18
+ padding: 0 1rem;
19
+ text-decoration: none;
20
+ text-transform: uppercase;
21
+ }
22
+ .grid {
23
+ max-width: 960px;
24
+ }
25
+ .grid-item {
26
+ border: 1px solid #ccc;
27
+ display: inline-block;
28
+ padding: 10px 10px 5px;
29
+ position: relative;
30
+ margin: 5px;
31
+ }
32
+ .grid-item-details {
33
+ background-color: rgba(255, 255, 255, 0.9);
34
+ color: #333;
35
+ font-size: .8rem;
36
+ font-variant: small-caps;
37
+ height: 3rem;
38
+ left: 0;
39
+ line-height: 1.2rem;
40
+ opacity: 0;
41
+ padding: .2rem 0 10px;
42
+ position: absolute;
43
+ width: 100%;
44
+ bottom: 0;
45
+ text-align: center;
46
+ text-decoration: none;
47
+ }
48
+ .grid-item:hover .grid-item-details {
49
+ opacity: 1;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body>
54
+ <header>
55
+ <h1>Images by (FUJIFILM) FinePix S6500fd</h1>
56
+ <nav>
57
+
58
+ <a class="nav-link" href="../index.html">Browse all the images</a>
59
+
60
+ <a class="nav-link" href="../fujifilm.html">Browse all the FUJIFILM images</a>
61
+
62
+ </nav>
63
+
64
+ </header>
65
+
66
+ <div class="grid">
67
+
68
+ <div class="grid-item">
69
+ <img alt="Image 240509" src="http://ih1.redbubble.net/work.240509.1.flat,135x135,075,f.jpg"/>
70
+
71
+ </div>
72
+
73
+ </div>
74
+
75
+ </body>
76
+ </html>
@@ -0,0 +1,81 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Images by FUJIFILM</title>
5
+ <style type="text/css">
6
+ html, body {
7
+ font-family: "adelle", "Helvetica Neue", Helvetica, Arial, sans-serif;
8
+ font-size: 1rem;
9
+ }
10
+ nav {
11
+ border: 1px solid #ccc;
12
+ border-width: 1px 0;
13
+ margin: 2rem 0;
14
+ }
15
+ .nav-link {
16
+ display: inline-block;
17
+ line-height: 3rem;
18
+ padding: 0 1rem;
19
+ text-decoration: none;
20
+ text-transform: uppercase;
21
+ }
22
+ .grid {
23
+ max-width: 960px;
24
+ }
25
+ .grid-item {
26
+ border: 1px solid #ccc;
27
+ display: inline-block;
28
+ padding: 10px 10px 5px;
29
+ position: relative;
30
+ margin: 5px;
31
+ }
32
+ .grid-item-details {
33
+ background-color: rgba(255, 255, 255, 0.9);
34
+ color: #333;
35
+ font-size: .8rem;
36
+ font-variant: small-caps;
37
+ height: 3rem;
38
+ left: 0;
39
+ line-height: 1.2rem;
40
+ opacity: 0;
41
+ padding: .2rem 0 10px;
42
+ position: absolute;
43
+ width: 100%;
44
+ bottom: 0;
45
+ text-align: center;
46
+ text-decoration: none;
47
+ }
48
+ .grid-item:hover .grid-item-details {
49
+ opacity: 1;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body>
54
+ <header>
55
+ <h1>Images by FUJIFILM</h1>
56
+ <nav>
57
+
58
+ <a class="nav-link" href="index.html">Browse all the images</a>
59
+
60
+ <a class="nav-link" href="fujifilm/finepix_s6500fd.html">FinePix S6500fd</a>
61
+
62
+ </nav>
63
+
64
+ </header>
65
+
66
+ <div class="grid">
67
+
68
+ <div class="grid-item">
69
+ <img alt="Image 240509" src="http://ih1.redbubble.net/work.240509.1.flat,135x135,075,f.jpg"/>
70
+
71
+ <a class="grid-item-details" href="fujifilm/finepix_s6500fd.html" title="Browse all the FinePix S6500fd images.">
72
+ <div>FUJIFILM</div>
73
+ <div>FinePix S6500fd</div>
74
+ </a>
75
+
76
+ </div>
77
+
78
+ </div>
79
+
80
+ </body>
81
+ </html>
@@ -0,0 +1,181 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Index</title>
5
+ <style type="text/css">
6
+ html, body {
7
+ font-family: "adelle", "Helvetica Neue", Helvetica, Arial, sans-serif;
8
+ font-size: 1rem;
9
+ }
10
+ nav {
11
+ border: 1px solid #ccc;
12
+ border-width: 1px 0;
13
+ margin: 2rem 0;
14
+ }
15
+ .nav-link {
16
+ display: inline-block;
17
+ line-height: 3rem;
18
+ padding: 0 1rem;
19
+ text-decoration: none;
20
+ text-transform: uppercase;
21
+ }
22
+ .grid {
23
+ max-width: 960px;
24
+ }
25
+ .grid-item {
26
+ border: 1px solid #ccc;
27
+ display: inline-block;
28
+ padding: 10px 10px 5px;
29
+ position: relative;
30
+ margin: 5px;
31
+ }
32
+ .grid-item-details {
33
+ background-color: rgba(255, 255, 255, 0.9);
34
+ color: #333;
35
+ font-size: .8rem;
36
+ font-variant: small-caps;
37
+ height: 3rem;
38
+ left: 0;
39
+ line-height: 1.2rem;
40
+ opacity: 0;
41
+ padding: .2rem 0 10px;
42
+ position: absolute;
43
+ width: 100%;
44
+ bottom: 0;
45
+ text-align: center;
46
+ text-decoration: none;
47
+ }
48
+ .grid-item:hover .grid-item-details {
49
+ opacity: 1;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body>
54
+ <header>
55
+ <h1>Index</h1>
56
+ <nav>
57
+
58
+ <a class="nav-link" href="canon.html">Canon</a>
59
+
60
+ <a class="nav-link" href="fuji_photo_film_co_ltd.html">FUJI PHOTO FILM CO., LTD.</a>
61
+
62
+ <a class="nav-link" href="fujifilm.html">FUJIFILM</a>
63
+
64
+ <a class="nav-link" href="leica.html">LEICA</a>
65
+
66
+ <a class="nav-link" href="nikon_corporation.html">NIKON CORPORATION</a>
67
+
68
+ <a class="nav-link" href="panasonic.html">Panasonic</a>
69
+
70
+ <a class="nav-link" href="unknown_make.html">Unknown Make</a>
71
+
72
+ </nav>
73
+
74
+ </header>
75
+
76
+ <div class="grid">
77
+
78
+ <div class="grid-item">
79
+ <img alt="Image 31820" src="http://ih1.redbubble.net/work.31820.1.flat,135x135,075,f.jpg"/>
80
+
81
+ <a class="grid-item-details" href="nikon_corporation/nikon_d80.html" title="Browse all the NIKON D80 images.">
82
+ <div>NIKON CORPORATION</div>
83
+ <div>NIKON D80</div>
84
+ </a>
85
+
86
+ </div>
87
+
88
+ <div class="grid-item">
89
+ <img alt="Image 2041" src="http://ih1.redbubble.net/work.2041.1.flat,135x135,075,f.jpg"/>
90
+
91
+ <a class="grid-item-details" href="canon/canon_eos_20d.html" title="Browse all the Canon EOS 20D images.">
92
+ <div>Canon</div>
93
+ <div>Canon EOS 20D</div>
94
+ </a>
95
+
96
+ </div>
97
+
98
+ <div class="grid-item">
99
+ <img alt="Image 240509" src="http://ih1.redbubble.net/work.240509.1.flat,135x135,075,f.jpg"/>
100
+
101
+ <a class="grid-item-details" href="fujifilm/finepix_s6500fd.html" title="Browse all the FinePix S6500fd images.">
102
+ <div>FUJIFILM</div>
103
+ <div>FinePix S6500fd</div>
104
+ </a>
105
+
106
+ </div>
107
+
108
+ <div class="grid-item">
109
+ <img alt="Image 26583" src="http://ih1.redbubble.net/work.26583.1.flat,135x135,075,f.jpg"/>
110
+
111
+ <a class="grid-item-details" href="unknown_make/unknown_model.html" title="Browse all the Unknown Model images.">
112
+ <div>Unknown Make</div>
113
+ <div>Unknown Model</div>
114
+ </a>
115
+
116
+ </div>
117
+
118
+ <div class="grid-item">
119
+ <img alt="Image 2729606" src="http://ih1.redbubble.net/work.2729606.1.flat,135x135,075,f.jpg"/>
120
+
121
+ <a class="grid-item-details" href="leica/d_lux_3.html" title="Browse all the D-LUX 3 images.">
122
+ <div>LEICA</div>
123
+ <div>D-LUX 3</div>
124
+ </a>
125
+
126
+ </div>
127
+
128
+ <div class="grid-item">
129
+ <img alt="Image 2828069" src="http://ih1.redbubble.net/work.2828069.1.flat,135x135,075,f.jpg"/>
130
+
131
+ <a class="grid-item-details" href="fuji_photo_film_co_ltd/slp1000se.html" title="Browse all the SLP1000SE images.">
132
+ <div>FUJI PHOTO FILM CO., LTD.</div>
133
+ <div>SLP1000SE</div>
134
+ </a>
135
+
136
+ </div>
137
+
138
+ <div class="grid-item">
139
+ <img alt="Image 3201430" src="http://ih1.redbubble.net/work.3201430.1.flat,135x135,075,f.jpg"/>
140
+
141
+ <a class="grid-item-details" href="leica/d_lux_3.html" title="Browse all the D-LUX 3 images.">
142
+ <div>LEICA</div>
143
+ <div>D-LUX 3</div>
144
+ </a>
145
+
146
+ </div>
147
+
148
+ <div class="grid-item">
149
+ <img alt="Image 3502552" src="http://ih1.redbubble.net/work.3502552.1.flat,135x135,075,f.jpg"/>
150
+
151
+ <a class="grid-item-details" href="leica/d_lux_3.html" title="Browse all the D-LUX 3 images.">
152
+ <div>LEICA</div>
153
+ <div>D-LUX 3</div>
154
+ </a>
155
+
156
+ </div>
157
+
158
+ <div class="grid-item">
159
+ <img alt="Image 3745978" src="http://ih1.redbubble.net/work.3745978.1.flat,135x135,075,f.jpg"/>
160
+
161
+ <a class="grid-item-details" href="panasonic/dmc_fz30.html" title="Browse all the DMC-FZ30 images.">
162
+ <div>Panasonic</div>
163
+ <div>DMC-FZ30</div>
164
+ </a>
165
+
166
+ </div>
167
+
168
+ <div class="grid-item">
169
+ <img alt="Image 3775226" src="http://ih1.redbubble.net/work.3775226.1.flat,135x135,075,f.jpg"/>
170
+
171
+ <a class="grid-item-details" href="panasonic/dmc_fz30.html" title="Browse all the DMC-FZ30 images.">
172
+ <div>Panasonic</div>
173
+ <div>DMC-FZ30</div>
174
+ </a>
175
+
176
+ </div>
177
+
178
+ </div>
179
+
180
+ </body>
181
+ </html>
@@ -0,0 +1,96 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Images by (LEICA) D-LUX 3</title>
5
+ <style type="text/css">
6
+ html, body {
7
+ font-family: "adelle", "Helvetica Neue", Helvetica, Arial, sans-serif;
8
+ font-size: 1rem;
9
+ }
10
+ nav {
11
+ border: 1px solid #ccc;
12
+ border-width: 1px 0;
13
+ margin: 2rem 0;
14
+ }
15
+ .nav-link {
16
+ display: inline-block;
17
+ line-height: 3rem;
18
+ padding: 0 1rem;
19
+ text-decoration: none;
20
+ text-transform: uppercase;
21
+ }
22
+ .grid {
23
+ max-width: 960px;
24
+ }
25
+ .grid-item {
26
+ border: 1px solid #ccc;
27
+ display: inline-block;
28
+ padding: 10px 10px 5px;
29
+ position: relative;
30
+ margin: 5px;
31
+ }
32
+ .grid-item-details {
33
+ background-color: rgba(255, 255, 255, 0.9);
34
+ color: #333;
35
+ font-size: .8rem;
36
+ font-variant: small-caps;
37
+ height: 3rem;
38
+ left: 0;
39
+ line-height: 1.2rem;
40
+ opacity: 0;
41
+ padding: .2rem 0 10px;
42
+ position: absolute;
43
+ width: 100%;
44
+ bottom: 0;
45
+ text-align: center;
46
+ text-decoration: none;
47
+ }
48
+ .grid-item:hover .grid-item-details {
49
+ opacity: 1;
50
+ }
51
+ </style>
52
+ </head>
53
+ <body>
54
+ <header>
55
+ <h1>Images by (LEICA) D-LUX 3</h1>
56
+ <nav>
57
+
58
+ <a class="nav-link" href="../index.html">Browse all the images</a>
59
+
60
+ <a class="nav-link" href="../leica.html">Browse all the LEICA images</a>
61
+
62
+ </nav>
63
+
64
+ </header>
65
+
66
+ <div class="grid">
67
+
68
+ <div class="grid-item">
69
+ <img alt="Image 2729606" src="http://ih1.redbubble.net/work.2729606.1.flat,135x135,075,f.jpg"/>
70
+
71
+ </div>
72
+
73
+ <div class="grid-item">
74
+ <img alt="Image 3201430" src="http://ih1.redbubble.net/work.3201430.1.flat,135x135,075,f.jpg"/>
75
+
76
+ </div>
77
+
78
+ <div class="grid-item">
79
+ <img alt="Image 3502552" src="http://ih1.redbubble.net/work.3502552.1.flat,135x135,075,f.jpg"/>
80
+
81
+ </div>
82
+
83
+ <div class="grid-item">
84
+ <img alt="Image 512919" src="http://ih1.redbubble.net/work.512919.1.flat,135x135,075,f.jpg"/>
85
+
86
+ </div>
87
+
88
+ <div class="grid-item">
89
+ <img alt="Image 4250369" src="http://ih1.redbubble.net/work.4250369.1.flat,135x135,075,f.jpg"/>
90
+
91
+ </div>
92
+
93
+ </div>
94
+
95
+ </body>
96
+ </html>