-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
40 lines (26 loc) · 968 Bytes
/
index.php
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
<!DOCTYPE html>
<html ng-app="WPABLO">
<head>
<META http-equiv="Content-Type" content="text/html; charset=utf8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta name="robots" content="noindex, nofollow">
<base href="/">
<title>WPAngular</title>
<?php wp_head(); ?>
</head>
<body ng-controller="appController">
<div id="global-app">
<div id="header" ng-controller="headerController">
<div ng-include="$root.urlScripts + 'header/header.html'">
</div>
</div>
<div ng-view id="content-app" autoscroll="true">
</div>
<div id="footer" class="{{ pageClass }}" ng-controller="footerController">
<div ng-include="$root.urlScripts + 'footer/footer.html'">
</div>
</div>
</div>
</body>
</html>