forked from exsurgo/ProjectTemplates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
159 lines (147 loc) · 3.92 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>Sencha Architect Project Templates</title>
<style>
body { font-family: "arial" }
.heading { font-weight: bold; font-size: 1.1em; }
</style>
</head>
<body>
<h1>Sencha Architect Project Templates</h1>
<br/>
<h2>Ext Templates</h2>
<span class="heading">Basic</span>
<ol>
<li>
<a href="Ext/Basic/MVC/app.html">MVC</a>:
Basic MVC parts, inculding a Model, Model's Store, Controller, Controller Action and Views.
</li>
<li>
<a href="Ext/Basic/Navigation/app.html">Navigation</a>:
Navigation menu with interchanging content panels and URL history.
</li>
<li>
<a href="Ext/Basic/LoginRegister/app.html">Login/Register</a>:
User login and registration form.
</li>
<li>
<a href="Ext/Basic/MasterDetail/app.html">Master/Detail</a>:
Grid with detail view.
</li>
</ol>
<span class="heading">Layouts</span>
<ol>
<li>
<a href="Ext/Layouts/HeaderContent/app.html">Header, Content</a>
</li>
<li>
<a href="Ext/Layouts/LeftContent/app.html">Left, Content</a>
</li>
<li>
<a href="Ext/Layouts/HeaderContentFooter/app.html">Header, Content, Footer</a>
</li>
<li>
<a href="Ext/Layouts/HeaderLeftRight/app.html">Header, Left, Right</a>
</li>
<li>
<a href="Ext/Layouts/LeftTopBottom/app.html">Left, Top, Bottom</a>
</li>
<li>
<a href="Ext/Layouts/HeaderLeftTopBottom/app.html">Header, Left, Top, Bottom</a>
</li>
<li>
<a href="Ext/Layouts/HeaderLeftContentRightFooter/app.html">Header, Left, Content, Right, Footer</a>
</li>
<li>
<a href="Ext/Layouts/SideMenu/app.html">Header, Side Menu, Content</a>
</li>
<li>
<a href="Ext/Layouts/AccordianMenu/app.html">Header, Accordian Menu, Content</a>
</li>
<li>
<a href="Ext/Layouts/TreeMenu/app.html">Header, Tree Menu, Content</a>
</li>
<li>
<a href="Ext/Layouts/TabMenu/app.html">Header, Tab Menu, Content</a>
</li>
<li>
<a href="Ext/Layouts/FourPane/app.html">Header, Four Panes</a>
</li>
<li>
<a href="Ext/Layouts/SwappablePanes/app.html">Swappable Panes</a>
</li>
</ol>
<span class="heading">Starter Apps</span>
<ol>
<li>
<a href="Ext/StarterApps/CRUD/app.html">CRUD</a>:
Master/detail view with Create/Read/Update/Delete. Includes editable grid and model form for editing.
</li>
<li>Task Manager</li>
<li>Portal</li>
<li>News Feed</li>
<li>Image Gallery</li>
<li>Time Tracker</li>
<li>...</li>
</ol>
<br/>
<hr/>
<h2>Touch Templates</h2>
<span class="heading">Basic</span>
<ol>
<li>
<a href="Touch/Basic/MVC/app.html">MVC</a>
Basic MVC parts, inculding a Model, Model's Store, Controller, Controller Action and Views.
</li>
<li>
<a href="Touch/Basic/Navigation/app.html">Navigation</a>
Uses Touch NavigationView and modal menu.
</li>
<li>
<a href="Touch/Basic/MasterDetail/app.html">Master/Detail</a>
A list with detail view.
</li>
<li>
<a href="Touch/Basic/SearchList/app.html">Search List</a>
A searchable list.
</li>
<li>
<a href="Touch/Basic/LoginRegister/app.html">Login/Register</a>:
User login and registration form.
</li>
<li>
<a href="Touch/Basic/Maps/app.html">Touch Maps</a>:
Map with ability to add and store locations.
</li>
</ol>
<span class="heading">Layouts</span>
<ol>
<li>
<a href="Touch/Layouts/TopContent/app.html">Top Bar, Content</a>
</li>
<li>
<a href="Touch/Layouts/TopBottomContent/app.html">Top Bar, Bottom Bar, Content</a>
</li>
<li>
<a href="Touch/Layouts/BottomContent/app.html">Bottom Bar, Content</a>
</li>
<li>
<a href="Touch/Layouts/Carousel/app.html">Carousel</a>
</li>
<li>
<a href="Touch/Layouts/MultiRowCarousel/app.html">Multi-row Carousel</a>
</li>
<li>
<a href="Touch/Layouts/Tabs/app.html">Tabs</a>
</li>
</ol>
<span class="heading">Starter Apps</span>
<ol>
<li>
<a href="Touch/StarterApps/TaskList/app.html">TaskList</a>
</li>
<li>...</li>
</ol>
</body>
</html>