diff options
Diffstat (limited to 'client')
| -rw-r--r-- | client/index.php | 50 | ||||
| -rw-r--r-- | client/js/app.js | 1 | ||||
| -rw-r--r-- | client/partials/favicon.html (renamed from client/partials/empty) | 0 | ||||
| -rw-r--r-- | client/partials/header.html | 1 | ||||
| -rw-r--r-- | client/partials/nav.html | 9 |
5 files changed, 50 insertions, 11 deletions
diff --git a/client/index.php b/client/index.php index 5d8931d..51dcb63 100644 --- a/client/index.php +++ b/client/index.php @@ -14,19 +14,43 @@ <![endif]--> </head> - <div class="container"> + <!-- MAIN GRID --> + <div class="container-lg" ng-app="MainApp"> + + <!-- FIRST ROW --> <div class="row"> - <div class="col-sm-4"> - <div class="panel panel-info"> - <div class="panel-heading"> - <h2>Simple Boostrap Testing</h2> - - </div> - <div class="panel-body"> - <p>Simple content</p> - + <div class="col-sm-2"> + <!-- LOGO --> + <p>LOGOLOGOLOGOLOGOLOGO<br />LOGOLOGOLOGOLOGOLOGO<br/>LOGOLOGOLOGOLOGOLOGO<br />LOGOLOGOLOGOLOGOLOGO<br /></p> + </div> + + + <div class="col-sm-10"> + <header ng-include="'./partials/header.html'"></header> + + </div> + </div> + + <!-- SECOND ROW --> + <div class="row"> + + + <!-- NAV --> + <div class="col-sm-2"> + <nav ng-include="'./partials/nav.html'"></nav> + </div> + + + <!-- CONTENT --> + <div class="col-sm-10"> + <!-- INTERNAL GRID --> + <div class="container"> + <div class="row"> + <div class="col-sm-2" > + <p style="text-align:center;"> MAIN CONTENT !</p> + </div> </div> - </div> + </div> </div> </div> </div> @@ -37,5 +61,9 @@ <body> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script> <script src="./vendors/bootstrap/js/bootstrap.min.js"></script> + <script src="./vendors/angularjs/angular.min.js"></script> + <script src="./js/app.js"></script> + + </body> </html>
\ No newline at end of file diff --git a/client/js/app.js b/client/js/app.js index e69de29..e726d8a 100644 --- a/client/js/app.js +++ b/client/js/app.js @@ -0,0 +1 @@ +angular.module("MainApp",[])
\ No newline at end of file diff --git a/client/partials/empty b/client/partials/favicon.html index e69de29..e69de29 100644 --- a/client/partials/empty +++ b/client/partials/favicon.html diff --git a/client/partials/header.html b/client/partials/header.html new file mode 100644 index 0000000..900a6f1 --- /dev/null +++ b/client/partials/header.html @@ -0,0 +1 @@ +<p>Header Content</p>
\ No newline at end of file diff --git a/client/partials/nav.html b/client/partials/nav.html new file mode 100644 index 0000000..286fbab --- /dev/null +++ b/client/partials/nav.html @@ -0,0 +1,9 @@ +<div class="list-group"> + <a href="#" class="list-group-item active"> + Cras justo odio + </a> + <a href="#" class="list-group-item">Dapibus ac facilisis in</a> + <a href="#" class="list-group-item">Morbi leo risus</a> + <a href="#" class="list-group-item">Porta ac consectetur ac</a> + <a href="#" class="list-group-item">Vestibulum at eros</a> + </div>
\ No newline at end of file |
