-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy path8-star-rating-control-demo.html
1171 lines (981 loc) · 47.9 KB
/
8-star-rating-control-demo.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<title>Star Rating Control Demo | jPList - jQuery Data Grid Controls</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- font libs -->
<link href="http://fonts.googleapis.com/css?family=Lato" rel="stylesheet" type="text/css" />
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" rel="stylesheet" />
<!-- demo page styles -->
<link href="../dist/css/jplist.demo-pages.min.css" rel="stylesheet" type="text/css" />
<!-- jQuery lib -->
<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<!-- jPList core js and css -->
<link href="../dist/css/jplist.core.min.css" rel="stylesheet" type="text/css" />
<script src="../dist/js/jplist.core.min.js"></script>
<!-- Handlebars Templates Library: http://handlebarsjs.com -->
<script src="http://cdnjs.cloudflare.com/ajax/libs/handlebars.js/2.0.0-alpha.4/handlebars.min.js"></script>
<!-- sort bundle -->
<script src="../dist/js/jplist.sort-bundle.min.js"></script>
<!-- jplist pagination bundle -->
<script src="../dist/js/jplist.pagination-bundle.min.js"></script>
<link href="../dist/css/jplist.pagination-bundle.min.css" rel="stylesheet" type="text/css" />
<!-- textbox filter control -->
<script src="../dist/js/jplist.textbox-filter.min.js"></script>
<link href="../dist/css/jplist.textbox-filter.min.css" rel="stylesheet" type="text/css" />
<!-- jplist history bundle -->
<script src="../dist/js/jplist.history-bundle.min.js"></script>
<link href="../dist/css/jplist.history-bundle.min.css" rel="stylesheet" type="text/css" />
<!-- jplist star rating control -->
<script src="../dist/js/jplist.start-rating-control.min.js"></script>
<link href="../dist/css/jplist.start-rating-control.min.css" rel="stylesheet" type="text/css" />
<script>
$('document').ready(function(){
$('#demo').jplist({
itemsBox: '.list'
,itemPath: '.list-item'
,panelPath: '.jplist-panel'
});
});
</script>
<!-- star rating handlebars template -->
<script id="star-rating-template" type="text/x-handlebars-template">
<!-- star rating -->
<div class="jplist-star-rating-outer" data-content="">
<div class="jplist-star-rating-inner" data-content="" style="width: {{percent}}%"></div>
<div class="jplist-hidden jplist-star-rating-percent">{{percent}}</div>
</div>
<!-- reviews number -->
<div class="jplist-reviews">
<span class="jplist-reviews-number">{{total}}</span>
{{#if one}}
review
{{else}}
reviews
{{/if}}
</div>
</script>
</head>
<body>
<!-- top bar -->
<div id="black-top-bar" class="box">
<div class="center">
<div class="box">
<!-- left menu -->
<ul id="black-top-bar-left-menu" class="hmenu left iphone-hidden">
<li class="glow">
<a title="" href="https://github.com/no81no/jplist/issues?state=open">
<i class="fa fa-asterisk"></i> Request a feature / <i class="fa fa-bug"></i> Report a bug
</a>
</li>
</ul>
<!-- social menu -->
<ul id="social-menu" class="hmenu right">
<li class="glow"><a title="" href="https://www.facebook.com/jplist"><i class="fa fa-facebook"></i> </a></li>
<li class="glow"><a rel="publisher" title="" href="https://plus.google.com/+Jplistjs"><i class="fa fa-google-plus"></i></a></li>
<li class="glow"><a title="" href="https://twitter.com/jquery_jplist"><i class="fa fa-twitter"></i></a></li>
<li class="glow"><a title="" href="https://github.com/no81no/jplist"><i class="fa fa-github"></i></a></li>
</ul>
</div>
</div>
</div>
<!-- header -->
<header id="header" class="box">
<div id="header-box" class="box">
<div class="center">
<div class="box">
<!-- logo -->
<div class="align-center text-shadow" id="logo">
<p>
<img title="jPList - jQuery Data Grid Controls" alt="jPList - jQuery Data Grid Controls" src="http://jplist.com/content/img/common/rocket.png" />
<a title="" href="http://jplist.com">jPList - jQuery Data Grid Controls</a>
</p>
<h1 class="h1-30-normal">Star Rating Control Demo</h1>
</div>
</div>
</div>
</div>
</header>
<!-- main content -->
<div class="box">
<div class="center">
<!--<><><><><><><><><><><><><><><><><><><><><><><><><><> DEMO START <><><><><><><><><><><><><><><><><><><><><><><><><><>-->
<div id="demo" class="box jplist" style="margin: 20px 0 50px 0">
<!-- ios button: show/hide panel -->
<div class="jplist-ios-button">
<i class="fa fa-sort"></i>
jPList Actions
</div>
<!-- panel -->
<div class="jplist-panel box panel-top">
<!-- back button button -->
<button
type="button"
data-control-type="back-button"
data-control-name="back-button"
data-control-action="back-button">
<i class="fa fa-arrow-left"></i> Go Back
</button>
<!-- reset button -->
<button
type="button"
class="jplist-reset-btn"
data-control-type="reset"
data-control-name="reset"
data-control-action="reset">
Reset <i class="fa fa-share"></i>
</button>
<!-- items per page dropdown -->
<div
class="jplist-drop-down"
data-control-type="items-per-page-drop-down"
data-control-name="paging"
data-control-action="paging">
<ul>
<li><span data-number="3"> 3 per page </span></li>
<li><span data-number="5"> 5 per page </span></li>
<li><span data-number="10" data-default="true"> 10 per page </span></li>
<li><span data-number="all"> View All </span></li>
</ul>
</div>
<!-- sort dropdown -->
<div
class="jplist-drop-down"
data-control-type="sort-drop-down"
data-control-name="sort"
data-control-action="sort"
data-datetime-format="{month}/{day}/{year}"> <!-- {year}, {month}, {day}, {hour}, {min}, {sec} -->
<ul>
<li><span data-path="default">Sort by</span></li>
<li><span data-type="number" data-order="desc" data-path=".jplist-reviews-number" data-default="true">Most Reviewed</span></li>
<li><span data-type="number" data-order="desc" data-path=".jplist-star-rating-percent">Top Rated</span></li>
<li><span data-path=".title" data-order="asc" data-type="text">Title A-Z</span></li>
<li><span data-path=".title" data-order="desc" data-type="text">Title Z-A</span></li>
<li><span data-path=".desc" data-order="asc" data-type="text">Description A-Z</span></li>
<li><span data-path=".desc" data-order="desc" data-type="text">Description Z-A</span></li>
<li><span data-path=".like" data-order="asc" data-type="number">Likes asc</span></li>
<li><span data-path=".like" data-order="desc" data-type="number">Likes desc</span></li>
<li><span data-path=".date" data-order="asc" data-type="datetime">Date asc</span></li>
<li><span data-path=".date" data-order="desc" data-type="datetime">Date desc</span></li>
</ul>
</div>
<!-- filter by title -->
<div class="text-filter-box">
<i class="fa fa-search jplist-icon"></i>
<!--[if lt IE 10]>
<div class="jplist-label">Filter by Title:</div>
<![endif]-->
<input
data-path=".title"
type="text"
value=""
placeholder="Filter by Title"
data-control-type="textbox"
data-control-name="title-filter"
data-control-action="filter"
/>
</div>
<!-- filter by description -->
<div class="text-filter-box">
<i class="fa fa-search jplist-icon"></i>
<!--[if lt IE 10]>
<div class="jplist-label">Filter by Description:</div>
<![endif]-->
<input
data-path=".desc"
type="text"
value=""
placeholder="Filter by Description"
data-control-type="textbox"
data-control-name="desc-filter"
data-control-action="filter"
/>
</div>
<!-- pagination results -->
<div
class="jplist-label"
data-type="Page {current} of {pages}"
data-control-type="pagination-info"
data-control-name="paging"
data-control-action="paging">
</div>
<!-- pagination control -->
<div
class="jplist-pagination"
data-control-type="pagination"
data-control-name="paging"
data-control-action="paging">
</div>
</div>
<!-- data -->
<div class="list box text-shadow">
<!-- item 1 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/arch-2.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">01/16/2015</p>
<p class="title">Architecture</p>
<p class="desc">Architecture is both the process and product of planning, designing and construction. Architectural works, in the material form of buildings, are often perceived as cultural symbols and as works of art. Historical civilizations are often identified with their surviving architectural achievements.</p>
<p class="like">25 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="4"
data-total="1">
</div>
</div>
</div>
<!-- item 2 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/autumn-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">01/31/2011</p>
<p class="title">Autumn</p>
<p class="desc">Autumn or Fall is one of the four temperate seasons. Autumn marks the transition from summer into winter, in September (Northern Hemisphere) or March (Southern Hemisphere) when the arrival of night becomes noticeably earlier. The equinoxes might be expected to be in the middle of their respective seasons, but temperature lag (caused by the thermal latency of the ground and sea) means that seasons appear later than dates calculated from a purely astronomical perspective.</p>
<p class="like">12 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="3"
data-total="10">
</div>
</div>
</div>
<!-- item 3 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/boats-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">02/24/2000</p>
<p class="title">Boats</p>
<p class="desc">A boat is a watercraft of any size designed to float or plane, to provide passage across water. Usually this water will be inland (lakes) or in protected coastal areas. However, boats such as the whaleboat were designed to be operated from a ship in an offshore environment. In naval terms, a boat is a vessel small enough to be carried aboard another vessel (a ship).</p>
<p class="like">11 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="5"
data-total="5">
</div>
</div>
</div>
<!-- item 4 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/arch-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">03/15/2014</p>
<p class="title">Arch</p>
<p class="desc">An arch is a structure that spans a space and supports a load. Arches appeared as early as the 2nd millennium BC in Mesopotamian brick architecture and their systematic use started with the Ancient Romans who were the first to apply the technique to a wide range of structures.</p>
<p class="like">5 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="4.7"
data-total="4">
</div>
</div>
</div>
<!-- item 5 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/book-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">11/22/2001</p>
<p class="title">Books</p>
<p class="desc">A book is a set of written, printed, illustrated, or blank sheets, made of ink, paper, parchment, or other materials, usually fastened together to hinge at one side. A single sheet within a book is called a leaf, and each side of a leaf is called a page. A book produced in electronic format is known as an electronic book (e-book).</p>
<p class="like">100 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="1.4"
data-total="2">
</div>
</div>
</div>
<!-- item 6 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/business-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">02/05/2004</p>
<p class="title">Business</p>
<p class="desc">A business (also known as enterprise or firm) is an organization engaged in the trade of goods, services, or both to consumers. Businesses are predominant in capitalist economies, where most of them are privately owned and administered to earn profit to increase the wealth of their owners. Businesses may also be not-for-profit or state-owned. A business owned by multiple individuals may be referred to as a company, although that term also has a more precise meaning.</p>
<p class="like">15 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="4.8"
data-total="4">
</div>
</div>
</div>
<!-- item 7 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/calendar-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">05/08/2013</p>
<p class="title">Calendar</p>
<p class="desc">A calendar is a system of organizing days for social, religious, commercial, or administrative purposes. This is done by giving names to periods of time, typically days, weeks, months, and years. The name given to each day is known as a date. Periods in a calendar (such as years and months) are usually, though not necessarily, synchronized with the cycle of the sun or the moon.</p>
<p class="like">18 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="3.8"
data-total="154">
</div>
</div>
</div>
<!-- item 8 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/car-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">09/01/2017</p>
<p class="title">Car</p>
<p class="desc">An automobile, autocar, motor car or car is a wheeled motor vehicle used for transporting passengers, which also carries its own engine or motor. Most definitions of the term specify that automobiles are designed to run primarily on roads, to have seating for one to eight people, to typically have four wheels, and to be constructed principally for the transport of people rather than goods.</p>
<p class="like">7 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="5"
data-total="15">
</div>
</div>
</div>
<!-- item 9 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/christmas-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">11/12/1998</p>
<p class="title">Christmas</p>
<p class="desc">Christmas or Christmas Day is an annual commemoration of the birth of Jesus Christ, celebrated generally on December as a religious and cultural holiday by billions of people around the world. A feast central to the Christian liturgical year, it closes the Advent season and initiates the twelve days of Christmastide. Christmas is a civil holiday in many of the world"s nations, is celebrated by an increasing number of non-Christians, and is an integral part of the Christmas and holiday season.</p>
<p class="like">29 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="3"
data-total="12">
</div>
</div>
</div>
<!-- item 10 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/christmas-2.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">06/10/1995</p>
<p class="title">The Christmas Toy</p>
<p class="desc">The Christmas Toy is a 1986 made-for-TV movie by The Jim Henson Company. It originally aired on ABC on December 6, 1986, and was originally sponsored by Kraft Foods. Originally introduced by Kermit The Frog, it was released on VHS format in 1993. In 2008, HIT Entertainment (distributed by Lionsgate) released the special on DVD, but edited out Kermit"s appearance due to legal issues.</p>
<p class="like">35 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="4.1"
data-total="3">
</div>
</div>
</div>
<!-- item 11 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/christmas-3.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">04/04/2016</p>
<p class="title">Christmas Tree</p>
<p class="desc">A Christmas tree is a decorated tree, usually an evergreen conifer such as pine or fir, traditionally associated with the celebration of Christmas. An artificial Christmas tree is an object made to resemble such a tree, usually made from polyvinyl chloride.</p>
<p class="like">86 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="3.5"
data-total="100">
</div>
</div>
</div>
<!-- item 12 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/city-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">06/19/1981</p>
<p class="title">City</p>
<p class="desc">A city is a relatively large and permanent settlement. Although there is no agreement on how a city is distinguished from a town within general English language meanings, many cities have a particular administrative, legal, or historical status based on local law.</p>
<p class="like">125 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="3.8"
data-total="2">
</div>
</div>
</div>
<!-- item 13 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/city-2.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">08/25/1991</p>
<p class="title">Capital City</p>
<p class="desc">A capital city (or just, capital) is the area of a country, province, region, or state considered to enjoy primary status; although there are exceptions, a capital is typically a city that physically encompasses the offices and meeting places of the seat of government and is usually fixed by law or by the constitution. An alternative term is political capital, but this phrase has a second meaning based on an alternate sense of the word capital. The capital is often, but not necessarily, the largest city of its constituent area.</p>
<p class="like">191 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="4.8"
data-total="50">
</div>
</div>
</div>
<!-- item 14 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/coffee-grass.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">02/02/2002</p>
<p class="title">Coffee</p>
<p class="desc">Coffee is a brewed beverage with a bitter, acidic flavor prepared from the roasted seeds of the coffee plant. The beans are found in coffee cherries, which grow on trees cultivated in over 70 countries, primarily in equatorial Latin America, Southeast Asia, South Asia and Africa. Green (unroasted) coffee is one of the most traded agricultural commodities in the world. Coffee can have a stimulating effect on humans due to its caffeine content. It is one of the most-consumed beverages in the world.</p>
<p class="like">18 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="3.7"
data-total="1">
</div>
</div>
</div>
<!-- item 15 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/coins.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">03/17/1999</p>
<p class="title">Coins</p>
<p class="desc">A coin is a piece of hard material that is standardized in weight, is produced in large quantities in order to facilitate trade, and primarily can be used as a legal tender. Coins are usually metal or a metallic material and sometimes made of synthetic materials, usually in the shape of a disc, and most often issued by a government. Coins are used as a form of money in transactions of various kinds, from the everyday circulation coins to the storage of large numbers of bullion coins. In the present day, coins and banknotes make up currency, the cash forms of all modern money systems.</p>
<p class="like">39 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="4.5"
data-total="5">
</div>
</div>
</div>
<!-- item 16 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/crayons.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">03/08/1990</p>
<p class="title">Crayons</p>
<p class="desc">A crayon is a stick of colored wax, charcoal, chalk, or other materials used for writing, coloring, drawing, and other methods of illustration. A crayon made of oiled chalk is called an oil pastel; when made of pigment with a dry binder, it is simply a pastel; both are popular media for color artwork. A grease pencil or china marker (UK chinagraph pencil) is made of colored hardened grease and is useful for marking on hard, glossy surfaces such as porcelain or glass. Some fine arts companies such as Swiss Caran d"Ache manufacture water-soluble crayons, whose colors are easily mixed once applied to media.</p>
<p class="like">14 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="4.5"
data-total="7">
</div>
</div>
</div>
<!-- item 17 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/cupcakes.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">05/25/1965</p>
<p class="title">Cupcakes</p>
<p class="desc">A cupcake (also British English: fairy cake; Australian English: patty cake or cup cake) is a small cake designed to serve one person, frequently baked in a small, thin paper or aluminum cup. As with larger cakes, frosting and other cake decorations, such as sprinkles, are common on cupcakes. Although their origin is unknown, recipes for cupcakes have been printed since at least the late 12th century.</p>
<p class="like">128 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="4.6"
data-total="5">
</div>
</div>
</div>
<!-- item 18 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/eggs-nest.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">12/31/1918</p>
<p class="title">Nests</p>
<p class="desc">A nest is a place of refuge to hold an animal"s eggs or provide a place to live or raise offspring. They are usually made of some organic material such as twigs, grass, and leaves; or may simply be a depression in the ground, or a hole in a tree, rock or building. Human-made materials, such as string, plastic, cloth, hair or paper, may be used.</p>
<p class="like">66 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="2"
data-total="1">
</div>
</div>
</div>
<!-- item 19 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/flower-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">03/19/2014</p>
<p class="title">Flower</p>
<p class="desc">A flower, sometimes known as a bloom or blossom, is the reproductive structure found in flowering plants (plants of the division Magnoliophyta, also called angiosperms). The biological function of a flower is to effect reproduction, usually by providing a mechanism for the union of sperm with eggs. Flowers may facilitate outcrossing (fusion of sperm and eggs from different individuals in a population) or allow selfing (fusion of sperm and egg from the same flower).</p>
<p class="like">85 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="1"
data-total="1">
</div>
</div>
</div>
<!-- item 20 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/flower-2.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">01/11/2011</p>
<p class="title">Pseudanthium</p>
<p class="desc">A pseudanthium (Greek for "false flower") or flower head is a special type of inflorescence, in which several flowers are grouped together to form a flower-like structure. The real flowers are generally small and greatly reduced, but can sometimes be quite large (as in the sunflower flower head). Pseudanthia take various forms. The individual flowers of a pseudanthium can be called florets.</p>
<p class="like">22 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="3.8"
data-total="8">
</div>
</div>
</div>
<!-- item 21 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/flower-3.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">06/06/1993</p>
<p class="title">Flowering Plant</p>
<p class="desc">The flowering plants (angiosperms), also known as Angiospermae or Magnoliophyta, are the most diverse group of land plants. Angiosperms are seed-producing plants like the gymnosperms and can be distinguished from the gymnosperms by a series of synapomorphies (derived characteristics). These characteristics include flowers, endosperm within the seeds, and the production of fruits that contain the seeds.</p>
<p class="like">90 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="3.9"
data-total="25">
</div>
</div>
</div>
<!-- item 22 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/fountain.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">06/10/1995</p>
<p class="title">Fountains</p>
<p class="desc">A fountain (from the Latin "fons" or "fontis", a source or spring) is a piece of architecture which pours water into a basin or jets it into the air either to supply drinking water or for decorative or dramatic effect. Fountains were originally purely functional, connected to springs or aqueducts and used to provide drinking water and water for bathing and washing to the residents of cities, towns and villages. Until the late 19th century most fountains operated by gravity, and needed a source of water higher than the fountain, such as a reservoir or aqueduct, to make the water flow or jet into the air.</p>
<p class="like">40 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="4.4"
data-total="20">
</div>
</div>
</div>
<!-- item 23 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/leaves.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">04/12/1990</p>
<p class="title">Leaves</p>
<p class="desc">A leaf is an organ of a vascular plant, as defined in botanical terms, and in particular in plant morphology. Foliage is a mass noun that refers to leaves as a feature of plants. Typically a leaf is a thin, flattened organ borne above ground and specialized or photosynthesis, but many types of leaves are adapted in ways almost unrecognisable in those terms: some are not flat (for example many succulent leaves and conifers), some are not above ground (such as bulb scales), and some are without major photosynthetic function (consider for example cataphylls, spines, and cotyledons).</p>
<p class="like">42 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="5"
data-total="47">
</div>
</div>
</div>
<!-- item 24 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/lichterman.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">11/04/2010</p>
<p class="title">Landscapes</p>
<p class="desc">Landscape comprises the visible features of an area of land, including the physical elements of landforms such as (ice-capped) mountains, hills, water bodies such as rivers, lakes, ponds and the sea, living elements of land cover including indigenous vegetation, human elements including different forms of land use, buildings and structures, and transitory elements such as lighting and weather conditions.</p>
<p class="like">14 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="2.5"
data-total="22">
</div>
</div>
</div>
<!-- item 25 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/pinecone.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">08/19/2014</p>
<p class="title">Conifer Cone</p>
<p class="desc">A cone (in formal botanical usage: strobilus, plural strobili) is an organ on plants in the division Pinophyta (conifers) that contains the reproductive structures. The familiar woody cone is the female cone, which produces seeds. The male cones, which produce pollen, are usually herbaceous and much less conspicuous even at full maturity. The name "cone" derives from the fact that the shape in some species resembles a geometric cone. The individual plates of a cone are known as scales.</p>
<p class="like">321 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="2.8"
data-total="11">
</div>
</div>
</div>
<!-- item 26 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/river-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">07/24/1995</p>
<p class="title">Rivers</p>
<p class="desc">A river is a natural watercourse, usually freshwater, flowing towards an ocean, a lake, a sea, or another river. In a few cases, a river simply flows into the ground or dries up completely before reaching another body of water. Small rivers may also be called by several other names, including stream, creek, brook, rivulet, tributary and rill. There are no official definitions for generic terms, such as river, as applied to geographic features, although in some countries or communities a stream may be defined by its size. Many names for small rivers are specific to geographic location; one example is "burn" in Scotland and northeast England. Sometimes a river is said to be larger than a creek, but this is not always the case, because of vagueness in the language.</p>
<p class="like">88 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="4.9"
data-total="16">
</div>
</div>
</div>
<!-- item 27 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/river-2.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">03/03/1953</p>
<p class="title">River Source</p>
<p class="desc">The source or headwaters of a river or stream is the furthest place in that river or stream from its estuary or confluence with another river, as measured along the course of the river.</p>
<p class="like">62 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="2.58"
data-total="3">
</div>
</div>
</div>
<!-- item 28 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/sunset-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">07/17/2014</p>
<p class="title">Sunset</p>
<p class="desc">Sunset or sundown is the daily disappearance of the Sun below the horizon in the west as a result of Earth"s rotation. The time of sunset is defined in astronomy as the moment when the trailing edge of the Sun"s disk disappears below the horizon in the west. The ray path of light from the setting Sun is highly distorted near the horizon because of atmospheric refraction, making the sunset appear to occur when the Sun"s disk is already about one diameter below the horizon. Sunset is distinct from dusk, which is the moment at which darkness falls, which occurs when the Sun is approximately eighteen degrees below the horizon. The period between sunset and dusk is called twilight.</p>
<p class="like">25 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="3.67"
data-total="16">
</div>
</div>
</div>
<!-- item 29 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/tree.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">02/20/2008</p>
<p class="title">Tree</p>
<p class="desc">A tree is a perennial woody plant. It is most often defined as a woody plant that has many secondary branches supported clear of the ground on a single main stem or trunk with clear apical dominance. A minimum height specification at maturity is cited by some authors, varying from 3 m to 6 m; some authors set a minimum of 10 cm trunk diameter (30 cm girth). Woody plants that do not meet these definitions by having multiple stems and/or small size are usually called shrubs, although many trees such as Mallee do not meet such definitions. Compared with most other plants, trees are long-lived, some reaching several thousand years old and growing to up to 115 m (379 ft) high.</p>
<p class="like">57 Likes</p>
<!-- star rating control -->
<div
data-control-type="star-rating"
class="jplist-star-rating"
data-rating="5"
data-total="2">
</div>
</div>
</div>
<!-- item 30 -->
<div class="list-item box">
<!-- img -->
<div class="img left">
<img src="img/thumbs/winter-1.jpg" alt="" title=""/>
</div>
<!-- data -->
<div class="block right">
<p class="date">07/26/2013</p>
<p class="title">Winter</p>
<p class="desc">Winter is the coldest season of the year in temperate climates, between autumn and spring. At the winter solstice, the days are shortest and the nights are longest, with days lengthening as the season progresses after the solstice.</p>
<p class="like">79 Likes</p>