Blame view

mustache/app/data/layouts/partials/default/sidebar_items.json 3.51 KB
5a739853   patrick.he   commit
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
  [
     	 { "link" :"index", "title" : "Dashboard", "icon" : "fa fa-tachometer" } ,
  	 {
  	  "link" : null, "title" : "UI & Elements" , "icon" : "fa fa-desktop",
  	  "submenu" :
  	  [
  	   { "link" : null , "title" : "Layouts" ,
  		  "submenu" :
  		  [
  			{ "link" : "top-menu" , "title" : "Top Menu" , "icon" : "fa fa-caret-right" } ,
  			{ "link" : "two-menu-1" , "title" : "Two Menus 1" , "icon" : "fa fa-caret-right" } ,
  			{ "link" : "two-menu-2" , "title" : "Two Menus 2" , "icon" : "fa fa-caret-right" } ,
  			{ "link" : "mobile-menu-1" , "title" : "Default Mobile Menu" , "icon" : "fa fa-caret-right" } ,
  			{ "link" : "mobile-menu-2" , "title" : "Mobile Menu 2" , "icon" : "fa fa-caret-right" } ,
  			{ "link" : "mobile-menu-3" , "title" : "Mobile Menu 3" , "icon" : "fa fa-caret-right" } 
  		  ]
  		} ,
  		
  		{ "link" : "typography", "title" : "Typography" } ,
  	   
  		{ "link" : "elements" , "title" : "Elements" } ,
  
  		{ "link" : "buttons" , "title" : "Buttons & Icons" } ,
  		
  		{ "link" : "content-slider", "title" : "Content Sliders" } ,
  
  		{ "link" : "treeview" , "title" : "Treeview" } ,
  		
  		{ "link" : "jquery-ui" , "title" : "jQuery UI" } ,
  		
  		{ "link" : "nestable-list" , "title" : "Nestable Lists" } ,
  		
  		{ "link" : null , "title" : "Three Level Menu" ,
  		  "submenu" : 
  		  [
  			{ "link" : null , "title" : "Item #1" , "icon" : "fa fa-leaf green" } ,
  			{ "link" : null , "title" : "4th level" , "icon" : "fa fa-pencil orange" ,
  				"submenu" : 
  				  [
  					{ "link" : null , "title" : "Add Product" , "icon" : "fa fa-plus purple" } ,
  					{ "link" : null , "title" : "View Products" , "icon" : "fa fa-eye pink" }
  				  ]
  			}
  		  ]
  		}
  	  ]
  	 } ,
  	 
  	 {
  	  "link" : null , "title" : "Tables" , "icon" : "fa fa-list",
  	  "submenu" :
  	  [
  		{ "link" : "tables" , "title" : "Simple & Dynamic" } ,
  		{ "link" : "jqgrid" , "title" : "jqGrid plugin" }
  	  ]
  	 } ,
  
  	 {
  	  "link" : null, "title" : "Forms" , "icon" : "fa fa-pencil-square-o",
  	  "submenu" :
  	  [
  		{ "link" : "form-elements" , "title" : "Form Elements" } ,
  		{ "link" : "form-elements-2" , "title" : "Form Elements 2" } ,
  		{ "link" : "form-wizard" , "title" : "Wizard & Validation" },
  		{ "link" : "wysiwyg" , "title" : "Wysiwyg & Markdown" },
  		{ "link" : "dropzone" , "title" : "Dropzone File Upload" }
  	  ]
  	 } ,
  
       { "link" : "widgets" , "title" : "Widgets" , "icon" : "fa fa-list-alt" } ,
  	
       { "link" : "calendar" , "title" : "Calendar" , "icon" : "fa fa-calendar", "badge" : "<i class='ace-icon fa fa-exclamation-triangle red bigger-130'></i>", "badge-class":"badge-transparent", "tooltip" : "2 Important Events" , "tooltip-class":"tooltip-error"} ,
  	
  	 { "link" : "gallery" , "title" : "Gallery" , "icon" : "fa fa-picture-o" },
  	 
  	 {
  	  "link" : null, "title" : "More Pages" , "icon" : "fa fa-tag",
  	  "submenu" :
  	  [
  		{ "link" : "profile" , "title" : "User Profile" } ,
  
  		{ "link" : "inbox" , "title" : "Inbox" } ,
  
  		{ "link" : "pricing" , "title" : "Pricing Tables" } ,
  
  		{ "link" : "invoice" , "title" : "Invoice" } ,
  		
  		{ "link" : "timeline" , "title" : "Timeline" } ,
  		
  		{ "link" : "email" , "title" : "Email Templates" } ,
  
  		{ "link" : "login" , "title" : "Login & Register" }
  	   ]
  	 } ,
  	
  	 {
  	  "link" : null, "title" : "Other Pages" , "icon" : "fa fa-file-o", "badge" : "5", "badge-class":"badge-primary",
  	  "submenu" :
  	  [
  		{ "link" : "faq" , "title" : "FAQ" } ,
  		
  		{ "link" : "error-404" , "title" : "Error 404" } ,
  		
  		{ "link" : "error-500" , "title" : "Error 500" } ,
  		
  		{ "link" : "grid" , "title" : "Grid" } ,
  		
  		{ "link" : "blank" , "title" : "Blank Page" }
  	  ]
  	 }
  ]