31 lines
810 B
HTML
31 lines
810 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<base href="/belle/" />
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
<title>Umbraco</title>
|
|
<link rel="stylesheet" href="assets/css/umbraco.css" />
|
|
</head>
|
|
<body ng-controller="MainController" id="umbracoMainPageBody">
|
|
|
|
<div ng-hide="!authenticated" ng-cloak ng-animate="'fade'" id="Div1" class="clearfix" ng-click="closeDialogs($event)">
|
|
|
|
<umb-left-column></umb-left-column>
|
|
|
|
<section id="contentwrapper">
|
|
<div id="contentcolumn">
|
|
<div ng-view></div>
|
|
</div>
|
|
</section>
|
|
</div>
|
|
|
|
<umb-notifications></umb-notifications>
|
|
|
|
|
|
<script src="lib/yepnope/yepnope.min.js"></script>
|
|
<script src="js/loader.js"></script>
|
|
</body>
|
|
</html>
|