-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirectory_structure.html
101 lines (96 loc) · 2.47 KB
/
directory_structure.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Menukaarten-docs</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="assets/css/stylesheet.css" media="screen,print">
<link rel="stylesheet" href="assets/css/print.css" media="print">
<link rel="stylesheet" type="text/css" href="assets/css/shCore.css" media="screen,print">
<link rel="stylesheet" type="text/css" href="assets/css/shThemeDefault.css" media="screen,print">
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/SyntaxHighlighter.js"></script>
<script type="text/javascript" src="assets/js/build_menu.js"></script>
</head>
<body>
<div id="header-wrapper">
<div id="header">
<h1>Documentation SexyFramework</h1>
<span>Created by Vincent Bremer & Douwe de Haan</span>
</div>
</div>
<div id="container">
<div id="menu-wrapper">
<div id="menu">
<h1>Table of contents</h1>
<ul></ul>
</div>
</div>
<div id="content-wrapper">
<div id="content">
<!-- START CONTENT -->
<h1>Directory Structure</h1>
<table>
<tr>
<th>Directory</th>
<th>Contains</th>
</tr>
<tr>
<td>application</td>
<td>All files needed to build an application</td>
</tr>
<tr>
<td>application\controllers</td>
<td>The application controllers (see: <a href="controllers.html">Controllers</a>)</td>
</tr>
<tr>
<td>application\models</td>
<td>The application models (see: <a href="models.html">Models</a>)</td>
</tr>
<tr>
<td>application\views</td>
<td>The application view files (see: <a href="views.html">Views</a>)</td>
</tr>
<tr>
<td>assets</td>
<td>Additions public available files</td>
</tr>
<tr>
<td>assets\css</td>
<td>Stylesheets</td>
</tr>
<tr>
<td>assets\i18n</td>
<td>Language (translation) files</td>
</tr>
<tr>
<td>assets\img</td>
<td>Images</td>
</tr>
<tr>
<td>config</td>
<td>Configuration files for the application and database, and the routes file</td>
</tr>
<tr>
<td>core</td>
<td>This is the core of the framework</td>
</tr>
<tr>
<td>core\helpers</td>
<td>All autoloaded helper files</td>
</tr>
<tr>
<td>core\modules</td>
<td>All autoloaded modules</td>
</tr>
<tr>
<td>templates</td>
<td>Templates which are used by the base view class</td>
</tr>
</table>
<!-- END CONTENT -->
</div>
</div>
</div>
<script type="text/javascript" src="assets/js/SyntaxHighlighter_settings.js"></script>
</body>
</html>