-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathviews-right.html
More file actions
1024 lines (1021 loc) · 34.6 KB
/
Copy pathviews-right.html
File metadata and controls
1024 lines (1021 loc) · 34.6 KB
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 lang="en">
<head>
<!-- Page title -->
<title>VSDocs - most advanced documentation template on ThemeForest</title>
<!-- Page description -->
<meta name="description" content="">
<!-- Meta -->
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="icon" type="image/png" href="img/favicons/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="img/favicons/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="img/favicons/favicon-96x96.png" sizes="96x96">
<link rel="apple-touch-icon" sizes="57x57" href="img/favicons/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="img/favicons/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="img/favicons/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="img/favicons/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="img/favicons/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="img/favicons/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="img/favicons/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="img/favicons/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="img/favicons/apple-touch-icon-180x180.png">
<!-- Include StyleSheets -->
<link rel="stylesheet" href="css/style.min.css">
<!-- <link rel="stylesheet" href="css/custom.css"> -->
<script src="js/modernizr.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="page js-page ">
<!-- Header -->
<div class="header header-over large">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-6">
<!-- Logo Image -->
<a href="index.html" class="logo-image logo-animated">
<img src="img/logos/logo.png" alt="logo">
</a>
<!-- End of Logo Image -->
</div>
<div class="col-md-9 col-sm-6 col-xs-6">
<!-- Menu -->
<nav class="right helper">
<ul class="menu sf-menu js-menu">
<li>
<a href="index.html">Home</a>
<ul>
<li>
<a href="#">Menu</a>
<ul>
<li>
<a href="index-2.html">Left - Off Canvas</a>
</li>
<li>
<a href="index-3.html">Right - Off Canvas</a>
</li>
</ul>
</li>
<li>
<a href="index-4.html">Text Rotator</a>
</li>
<li>
<a href="index-5.html">Video</a>
</li>
<li>
<a href="index-6.html">One Page Docs</a>
</li>
</ul>
</li>
<li>
<a href="#">Pages</a>
<ul>
<li>
<a href="panels.html">Panels</a>
</li>
<li>
<a href="#">Blog</a>
<ul>
<li>
<a href="blog-grid.html">Blog Grid</a>
</li>
<li>
<a href="article.html">Article</a>
</li>
</ul>
</li>
<li>
<a href="faq.html">Faq</a>
</li>
<li>
<a href="notification.html">Notification</a>
</li>
<li>
<a href="tutorial.html">Tutorial</a>
</li>
<li>
<a href="login.html">Login</a>
</li>
<li>
<a href="register.html">Register</a>
</li>
</ul>
</li>
<li>
<a href="#">Elements</a>
<ul>
<li>
<a href="buttons.html">Buttons</a>
</li>
<li>
<a href="boxes.html">Boxes</a>
</li>
<li>
<a href="code.html">Code</a>
</li>
<li>
<a href="notes.html">Notes</a>
</li>
<li>
<a href="files.html">File tree</a>
</li>
<li>
<a href="media.html">Media</a>
</li>
<li>
<a href="book.html">Book</a>
</li>
<li>
<a href="steps.html">Steps & Tabs</a>
</li>
<li>
<a href="misc.html">Misc</a>
</li>
</ul>
</li>
<li>
<a href="#">Layouts
<span class="menu-label">v1.2</span>
</a>
<ul>
<li>
<a href="views.html">Views without sidebar</a>
</li>
<li>
<a href="views-left.html">Views left sidebar</a>
</li>
<li>
<a href="views-right.html">Views right sidebar</a>
</li>
<li>
<a href="#">Full left sidebar</a>
<ul>
<li>
<a href="views-left-full.html">Regular</a>
</li>
<li>
<a href="views-left-full-compact.html">Compact</a>
</li>
</ul>
</li>
<li>
<a href="#">Full right sidebar</a>
<ul>
<li>
<a href="views-right-full.html">Regular</a>
</li>
<li>
<a href="views-right-full-compact.html">Compact</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="changelog.html">Changelog</a>
</li>
<li>
<a href="contacts.html">Contacts</a>
</li>
</ul>
</nav>
<!-- End of Menu -->
</div>
</div>
</div>
</div>
<!-- End of Header -->
<!-- Header Back -->
<div class="header-back header-back-simple header-back-small">
<div class="header-back-container">
<div class="container">
<div class="row">
<div class="col-md-12">
<!-- Page Info -->
<div class="page-info page-info-simple">
<h1 class="page-title">Views</h1>
<h2 class="page-description">Choose the layout that suits the type of content you’re displaying. A list style layout is for the seated because users' actions tend to be very singular in purpose. On the other hand, grid view is for the standing. It's for the restless
and curious.</h2>
</div>
<!-- End Page Info -->
</div>
</div>
</div>
</div>
</div>
<!-- End of Header Back -->
<div id="content">
<div class="container">
<div class="layout with-right-sidebar js-layout">
<div class="row">
<div class="col-md-9">
<div class="main-content">
<!-- Category Info -->
<div class="category-info helper pt0" id="list-view">
<h3 class="category-title"> List view
<!-- Fragment Identifier -->
<a class="fragment-identifier js-fragment-identifier fragment-identifier-scroll" href="#list-view">
<i class="fa fa-link"></i>
</a>
<!-- End of Fragment Identifier -->
</h3>
<h4 class="category-description">A list style layout is for the seated because users' actions tend to be very singular in purpose. They've come to your site to do one thing: browse or read. Present them with content in a standard way and let them just get lost in it.</h4>
</div>
<!-- End of Caregory Info -->
<!-- List View -->
<div class="list-view ">
<div class="list-item">
<div class="list-item-header">
<h3 class="list-item-title">
<a href="#">Getting Started with WordPress</a>
</h3>
<span class="list-item-meta">
<a href="#">how to</a>
</span>
</div>
<div class="list-item-content"> WordPress is a great product. It's easy-to-use, quite powerful, and flexible. Creating a website, and maintaining a website, is a science and art that has quickly evolved. </div>
</div>
<div class="list-item">
<div class="list-item-header">
<h3 class="list-item-title">
<a href="#">New To WordPress - Where to Start</a>
</h3>
<span class="list-item-meta">
<a href="#">working with</a>
</span>
</div>
<div class="list-item-content"> In order to fully appreciate this it is important to be well read on the subject. One major thing to keep in mind is your investment of time. </div>
</div>
<div class="list-item">
<div class="list-item-header">
<h3 class="list-item-title">
<a href="#">WordPress in Your Language</a>
</h3>
<span class="list-item-meta">
<a href="#">plugin</a>
</span>
</div>
<div class="list-item-content"> It is important to make a plan about how you want to use WordPress on your site. </div>
</div>
<div class="list-item">
<div class="list-item-header">
<h3 class="list-item-title">
<a href="#">WordPress Lessons</a>
</h3>
<span class="list-item-meta">
<a href="#">contribute</a>
</span>
</div>
<div class="list-item-content"> Have you made a list of your site categories to organize your content by groups? </div>
</div>
<div class="list-item">
<div class="list-item-header">
<h3 class="list-item-title">
<a href="#">Upgrading WordPress</a>
</h3>
<span class="list-item-meta">
<a href="#">give back</a>
</span>
</div>
<div class="list-item-content"> With your installation complete, it's time to set up WordPress so it will work the way you want it to work. </div>
</div>
<div class="list-item">
<div class="list-item-header">
<h3 class="list-item-title">
<a href="#">WordPress.tv</a>
</h3>
<span class="list-item-meta">
<a href="#">about</a>
</span>
</div>
<div class="list-item-content"> After you've published a few posts, you can experiment with the full edit or quick edit features in the Administration > Posts > Posts panel. </div>
</div>
<div class="list-item">
<div class="list-item-header">
<h3 class="list-item-title">
<a href="#">Frequently Asked Questions</a>
</h3>
<span class="list-item-meta">
<a href="#">faq</a>
</span>
</div>
<div class="list-item-content"> Now that you're a full fledged WordPress user, consider contributing to the WordPress Codex, Support Forum, Development, and other volunteer efforts that keep WordPress going. </div>
</div>
</div>
<!-- End of List View -->
<!-- Category Info -->
<div class="category-info " id="grid-view">
<h3 class="category-title"> Grid view
<!-- Fragment Identifier -->
<a class="fragment-identifier js-fragment-identifier fragment-identifier-scroll" href="#grid-view">
<i class="fa fa-link"></i>
</a>
<!-- End of Fragment Identifier -->
</h3>
<h4 class="category-description">On the other hand, grid view is for the standing. It's for the restless and curious. Your attention goes from one topic or image to the next and you never want to linger in one spot for too long.</h4>
</div>
<!-- End of Caregory Info -->
<!-- Grid view -->
<div class="grid-view js-grid-view">
<div class="row">
<div class="col-md-4">
<div class="grid-view-elem js-grid-view-elem">
<h3 class="grid-view-elem-title">
<a href="#">ADD</a>
<span class="grid-view-title-descr">traversing</span>
</h3>
<p class="grid-view-elem-description"> Create a new jQuery object with elements added to the set of matched elements. </p>
</div>
</div>
<div class="col-md-4">
<div class="grid-view-elem js-grid-view-elem">
<h3 class="grid-view-elem-title">
<a href="#">AFTER</a>
<span class="grid-view-title-descr">manipulation</span>
</h3>
<p class="grid-view-elem-description"> Insert content, specified by the parameter, after each element in the set of matched elements. </p>
</div>
</div>
<div class="col-md-4">
<div class="grid-view-elem js-grid-view-elem">
<h3 class="grid-view-elem-title">
<a href="#">AJAXCOMPLETE</a>
<span class="grid-view-title-descr">ajax</span>
</h3>
<p class="grid-view-elem-description"> Register a handler to be called when Ajax requests complete. This is an AjaxEvent. </p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="grid-view-elem js-grid-view-elem">
<h3 class="grid-view-elem-title">
<a href="#">APPEND</a>
<span class="grid-view-title-descr">manipulation</span>
</h3>
<p class="grid-view-elem-description"> Insert content, specified by the parameter, to the end of each element in the set of matched elements. </p>
</div>
</div>
<div class="col-md-4">
<div class="grid-view-elem js-grid-view-elem">
<h3 class="grid-view-elem-title">
<a href="#">ATTR</a>
<span class="grid-view-title-descr">attributes</span>
</h3>
<p class="grid-view-elem-description"> Get the value of an attribute for the first element in the set of matched elements or set one or more attributes for every matched element. </p>
</div>
</div>
<div class="col-md-4">
<div class="grid-view-elem js-grid-view-elem">
<h3 class="grid-view-elem-title">
<a href="#">BEFORE</a>
<span class="grid-view-title-descr">manipulation</span>
</h3>
<p class="grid-view-elem-description"> Insert content, specified by the parameter, before each element in the set of matched elements. </p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="grid-view-elem js-grid-view-elem">
<h3 class="grid-view-elem-title">
<a href="#">CHILDREN</a>
<span class="grid-view-title-descr">traversing</span>
</h3>
<p class="grid-view-elem-description"> Get the children of each element in the set of matched elements, optionally filtered by a selector. </p>
</div>
</div>
<div class="col-md-4">
<div class="grid-view-elem js-grid-view-elem">
<h3 class="grid-view-elem-title">
<a href="#">CLICK</a>
<span class="grid-view-title-descr">events</span>
</h3>
<p class="grid-view-elem-description"> Bind an event handler to the “click” JavaScript event, or trigger that event on an element. </p>
</div>
</div>
<div class="col-md-4">
<div class="grid-view-elem js-grid-view-elem">
<h3 class="grid-view-elem-title">
<a href="#">CLONE</a>
<span class="grid-view-title-descr">manipulation</span>
</h3>
<p class="grid-view-elem-description"> Create a deep copy of the set of matched elements. </p>
</div>
</div>
</div>
</div>
<!-- End of Grid view -->
<!-- Category Info -->
<div class="category-info " id="mixed-view">
<h3 class="category-title"> Mixed view
<!-- Fragment Identifier -->
<a class="fragment-identifier js-fragment-identifier fragment-identifier-scroll" href="#mixed-view">
<i class="fa fa-link"></i>
</a>
<!-- End of Fragment Identifier -->
</h3>
<h4 class="category-description">Choose the layout that suits the type of content you’re displaying. A list style layout is for the seated because users' actions tend to be very singular in purpose. On the other hand, grid view is for the standing. It's for the restless and
curious.</h4>
</div>
<!-- End of Caregory Info -->
<div class="row">
<div class="col-md-4">
<!-- Category List -->
<div class="category-list">
<h3 class="category-list-title">Learn how to use WordPress</h3>
<ul class="category-list-content">
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Getting Started with WordPress</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">New To WordPress - Where to Start</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">WordPress in Your Language</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">WordPress Lessons</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Upgrading WordPress</a>
</li>
</ul>
</div>
<!-- End of Category List -->
</div>
<div class="col-md-4">
<!-- Category List -->
<div class="category-list">
<h3 class="category-list-title">Working with themes</h3>
<ul class="category-list-content">
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Creating and Using Posts</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Creating and Using Pages</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Using Plugins</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Using Themes</a>
</li>
</ul>
</div>
<!-- End of Category List -->
</div>
<div class="col-md-4">
<!-- Category List -->
<div class="category-list">
<h3 class="category-list-title">Writing a plugin</h3>
<ul class="category-list-content">
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Contributing to WordPress</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Developer Documentation</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Reporting Bugs</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">WordPress Development Blog</a>
</li>
</ul>
</div>
<!-- End of Category List -->
</div>
</div>
<div class="row">
<div class="col-md-4">
<!-- Category List -->
<div class="category-list">
<h3 class="category-list-title">Contribute to Development</h3>
<ul class="category-list-content">
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Contributing to WordPress</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Developer Documentation</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Reporting Bugs</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">WordPress Development Blog</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">WordPress Security</a>
</li>
</ul>
</div>
<!-- End of Category List -->
</div>
<div class="col-md-4">
<!-- Category List -->
<div class="category-list">
<h3 class="category-list-title">Give Back</h3>
<ul class="category-list-content">
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Volunteers Needed for Codex Documentation</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">WordPress Documentation Team</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Become a WordPress Support Forum Volunteer</a>
</li>
</ul>
</div>
<!-- End of Category List -->
</div>
<div class="col-md-4">
<!-- Category List -->
<div class="category-list">
<h3 class="category-list-title">About WordPress</h3>
<ul class="category-list-content">
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Using Themes</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Using Permalinks</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">WordPress Semantics</a>
</li>
<li class="category-list-content-item">
<a href="#" class="category-list-content-item-text">Finding More WordPress Help</a>
</li>
</ul>
</div>
<!-- End of Category List -->
</div>
</div>
</div>
</div>
<div class="col-md-3 hidden-sm hidden-xs">
<div class="sidebar js-sidebar-fixed">
<!-- Vertical Menu -->
<nav class="menu-vertical-wrapper">
<ul class="menu-vertical js-menu-vertical" data-prepend-to=".js-layout" data-select="Menu">
<li>
<a href="#">Tutorials</a>
<ul>
<li>
<a href="#">Instalation</a>
<ul>
<li>
<a href="views.html">Manually</a>
</li>
<li>
<a href="views.html">Wizard</a>
</li>
<li>
<a href="views.html">Softaculous</a>
</li>
<li>
<a href="views.html">Fantastico</a>
</li>
<li>
<a href="views.html">Transfer</a>
</li>
</ul>
</li>
<li>
<a href="#">Create</a>
<ul>
<li>
<a href="views.html">Multimedia</a>
</li>
<li>
<a href="views.html">Post</a>
</li>
<li>
<a href="views.html">Categories</a>
</li>
<li>
<a href="views.html">Comments</a>
</li>
<li>
<a href="views.html">Themes</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="#">Plugins</a>
<ul>
<li>
<a href="#">Instalation</a>
<ul>
<li>
<a href="views.html">Manually</a>
</li>
<li>
<a href="views.html">Wizard</a>
</li>
<li>
<a href="views.html">Softaculous</a>
</li>
<li>
<a href="views.html">Fantastico</a>
</li>
<li>
<a href="views.html">Transfer</a>
</li>
</ul>
</li>
<li>
<a href="#">Create</a>
<ul>
<li>
<a href="views.html">Multimedia</a>
</li>
<li>
<a href="views.html">Post</a>
</li>
<li>
<a href="views.html">Categories</a>
</li>
<li>
<a href="views.html">Comments</a>
</li>
<li>
<a href="views.html">Themes</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="#">Partners</a>
<ul>
<li>
<a href="#">Instalation</a>
<ul>
<li>
<a href="views.html">Manually</a>
</li>
<li>
<a href="views.html">Wizard</a>
</li>
<li>
<a href="views.html">Softaculous</a>
</li>
<li>
<a href="views.html">Fantastico</a>
</li>
<li>
<a href="views.html">Transfer</a>
</li>
</ul>
</li>
<li>
<a href="#">Create</a>
<ul>
<li>
<a href="views.html">Multimedia</a>
</li>
<li>
<a href="views.html">Post</a>
</li>
<li>
<a href="views.html">Categories</a>
</li>
<li>
<a href="views.html">Comments</a>
</li>
<li>
<a href="views.html">Themes</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="#">Affiliates</a>
<ul>
<li>
<a href="#">Instalation</a>
<ul>
<li>
<a href="views.html">Manually</a>
</li>
<li>
<a href="views.html">Wizard</a>
</li>
<li>
<a href="views.html">Softaculous</a>
</li>
<li>
<a href="views.html">Fantastico</a>
</li>
<li>
<a href="views.html">Transfer</a>
</li>
</ul>
</li>
<li>
<a href="#">Create</a>
<ul>
<li>
<a href="views.html">Multimedia</a>
</li>
<li>
<a href="views.html">Post</a>
</li>
<li>
<a href="views.html">Categories</a>
</li>
<li>
<a href="views.html">Comments</a>
</li>
<li>
<a href="views.html">Themes</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="#">Events</a>
<ul>
<li>
<a href="#">Instalation</a>
<ul>
<li>
<a href="views.html">Manually</a>
</li>
<li>
<a href="views.html">Wizard</a>
</li>
<li>
<a href="views.html">Softaculous</a>
</li>
<li>
<a href="views.html">Fantastico</a>
</li>
<li>
<a href="views.html">Transfer</a>
</li>
</ul>
</li>
<li>
<a href="#">Create</a>
<ul>
<li>
<a href="views.html">Multimedia</a>
</li>
<li>
<a href="views.html">Post</a>
</li>
<li>
<a href="views.html">Categories</a>
</li>
<li>
<a href="views.html">Comments</a>
</li>
<li>
<a href="views.html">Themes</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="#">About</a>
<ul>
<li>
<a href="#">Instalation</a>
<ul>
<li>
<a href="views.html">Manually</a>
</li>
<li>
<a href="views.html">Wizard</a>
</li>
<li>
<a href="views.html">Softaculous</a>
</li>
<li>
<a href="views.html">Fantastico</a>
</li>
<li>
<a href="views.html">Transfer</a>
</li>
</ul>
</li>
<li>
<a href="#">Create</a>
<ul>
<li>
<a href="views.html">Multimedia</a>
</li>
<li>
<a href="views.html">Post</a>
</li>
<li>
<a href="views.html">Categories</a>
</li>
<li>
<a href="views.html">Comments</a>
</li>
<li>
<a href="views.html">Themes</a>
</li>
</ul>
</li>
</ul>
</li>
<li>
<a href="#">Faq</a>
<ul>
<li>
<a href="#">Instalation</a>
<ul>
<li>
<a href="views.html">Manually</a>
</li>
<li>
<a href="views.html">Wizard</a>
</li>
<li>
<a href="views.html">Softaculous</a>
</li>
<li>
<a href="views.html">Fantastico</a>
</li>
<li>
<a href="views.html">Transfer</a>
</li>
</ul>
</li>
<li>
<a href="#">Create</a>
<ul>
<li>
<a href="views.html">Multimedia</a>
</li>
<li>
<a href="views.html">Post</a>
</li>
<li>
<a href="views.html">Categories</a>
</li>
<li>
<a href="views.html">Comments</a>
</li>
<li>
<a href="views.html">Themes</a>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</nav>
<!-- Search -->
<div class="search">
<form action="#">
<input type="text" class="search-input form-control" placeholder="search">
<i class="fa fa-search search-icon"></i>
</form>
</div>
<!-- End of Search -->
<!-- Tags -->
<ul class="tags">
<li class="tag-item">
<a href="#">html</a>
</li>
<li class="tag-item">
<a href="#">css</a>
</li>
<li class="tag-item">
<a href="#">javascript</a>
</li>
<li class="tag-item">
<a href="#">jquery</a>
</li>
<li class="tag-item">
<a href="#">less</a>
</li>
<li class="tag-item">
<a href="#">sass</a>
</li>
<li class="tag-item">
<a href="#">haml</a>
</li>
<li class="tag-item">
<a href="#">gulp</a>
</li>
</ul>
<!-- End of Tags -->
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Footer -->
<footer class="js-footer-is-fixed">
<!-- Footer Default -->
<div class="footer">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-3 col-xs-12">
<div class="footer-logo-wrapper">
<!-- Logo Image -->
<a href="index.html" class="logo-image ">
<img src="img/logos/logo.png" alt="logo">
</a>
<!-- End of Logo Image -->
<!-- Slogan -->
<p class="slogan"> Learn.
<br>Create.
<br>Impress. </p>
<!-- End of Slogan -->
</div>
</div>
<div class="col-md-9 col-sm-9 col-xs-12">
<div class="footer-wrapper">
<!-- Scroll top -->
<span class="scroll-top js-scroll-top">
<i class="fa fa-angle-up"></i>
</span>
<!-- End of Scroll top -->
<!-- Version -->
<div class="docs-version js-docs-version">
<span class="docs-current-version js-docs-current-version">v3.5</span>
<ul class="js-docs-version-list">
<li>
<a href="#">1.0</a>
</li>
<li>
<a href="#">1.5</a>
</li>
<li>
<a href="#">2.5</a>
</li>
<li>
<a href="#">3.0</a>
</li>
<li>
<a href="#">3.1</a>
</li>
</ul>
</div>
<!-- End of Version -->
<!-- Footer Menu -->
<ul class="footer-menu helper right">
<li>
<a href="#"> About us </a>
</li>
<li>
<a href="#"> Privacy Policy </a>
</li>
<li>
<a href="#"> Terms & Condotions </a>
</li>
<li>
<a href="#"> My account </a>
</li>
<li>
<a href="#"> Support service </a>
</li>
</ul>
<!-- End of Footer Menu -->
<!-- Copyright -->
<p class="copyright helper right">
<a href="http://vsart.me">VSArt</a>, all rights reserved. 2015 © </p>
<!-- End of Copyright -->
</div>