11<!doctype html>
22< html ng-app ="angular-contentful-starter ">
3- < head >
4- < meta http-equiv ="Content-Type " content ="text/html; charset=utf-8 ">
5- < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
6- < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
7- < title > angular-contentful-starter</ title >
83
9- <!-- build:css public/index.min.css -->
10- < link rel ="stylesheet " href ="lib/bootstrap/dist/css/bootstrap.min.css " >
11- < link rel ="stylesheet " href ="lib/font-awesome/css/font-awesome.min.css " >
12- < link rel ="stylesheet " href ="src/index.css ">
4+ < head >
5+ < meta http-equiv ="Content-Type " content ="text/html; charset=utf-8 ">
6+ < meta http-equiv ="X-UA-Compatible " content ="IE=edge ">
7+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
8+ < title > angular-contentful-starter</ title >
139
14- <!-- endbuild -->
10+ <!-- build:css public/index.min.css -->
11+ < link rel ="stylesheet " href ="lib/bootstrap/dist/css/bootstrap.min.css ">
12+ < link rel ="stylesheet " href ="lib/font-awesome/css/font-awesome.min.css ">
13+ < link rel ="stylesheet " href ="src/index.css ">
14+ <!-- endbuild -->
1515
16- <!-- Custom fonts for this template -->
17- < link href ="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900 " rel ="stylesheet ">
18- < link href ="https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i " rel ="stylesheet ">
16+ <!-- Custom fonts for this template -->
17+ < link href ="https://fonts.googleapis.com/css?family=Catamaran:100,200,300,400,500,600,700,800,900 " rel ="stylesheet ">
18+ < link href ="https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i " rel ="stylesheet ">
19+ </ head >
1920
20- </ head >
21-
22- < body >
23- <!-- Navigation -->
24- < nav class ="navbar navbar-expand-lg navbar-dark bg-dark fixed-top ">
25- < div class ="container ">
26- < a class ="navbar-brand " href ="# "> AngularJS / Contentful Starter Kit</ a >
27- < button class ="navbar-toggler " type ="button " data-toggle ="collapse " data-target ="#navbarResponsive " aria-controls ="navbarResponsive "
28- aria-expanded ="false " aria-label ="Toggle navigation ">
29- < span class ="navbar-toggler-icon "> </ span >
30- </ button >
31- < div class ="collapse navbar-collapse " id ="navbarResponsive ">
32- < ul class ="navbar-nav ml-auto ">
33- < li class ="nav-item active " ui-sref ="index ">
34- < a class ="nav-link " href ="# "> Home
35- < span class ="sr-only "> (current)</ span >
36- </ a >
37- </ li >
38- < li class ="nav-item ">
39- < a class ="nav-link " ui-sref ="info "> Project Information</ a >
40- </ li >
41- < li class ="nav-item ">
42- < a class ="nav-link " ui-sref ="products "> Products</ a >
43- </ li >
44- </ ul >
45- </ div >
46- </ div >
47- </ nav >
48-
49- < header >
50- < div id ="carouselExampleIndicators " class ="carousel slide " data-ride ="carousel " contentful-entries ="'content_type=banner' ">
51- < div class ="carousel-inner " role ="listbox ">
52- < div class ="carousel-item " ng-repeat ="banner in $contentfulEntries.items " ng-class ="{ active : $first } " ng-style ="{ 'background-image': 'linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url(' + banner.fields.backgroundImage.fields.file.url + ')' } ">
53-
54- < div class ="carousel-caption d-none d-md-block ">
55- < h3 > {{ banner.fields.title }}</ h3 >
56- < p > {{ banner.fields.bannerText }}</ p >
57- </ div >
58- </ div >
59- </ div >
60-
61- < a class ="carousel-control-prev " href ="#carouselExampleIndicators " role ="button " data-slide ="prev " ng-if ="$contentfulEntries.items && $contentfulEntries.items.length > 1 ">
62- < span class ="carousel-control-prev-icon " aria-hidden ="true "> </ span >
63- < span class ="sr-only "> Previous</ span >
64- </ a >
65- < a class ="carousel-control-next " href ="#carouselExampleIndicators " role ="button " data-slide ="next " ng-if ="$contentfulEntries.items && $contentfulEntries.items.length > 1 ">
66- < span class ="carousel-control-next-icon " aria-hidden ="true "> </ span >
67- < span class ="sr-only "> Next</ span >
68- </ a >
69- </ div >
70- </ header >
21+ < body >
22+ <!-- Main Navigation (views/navigation.html) -->
23+ < navigation > </ navigation >
7124
72- < div ui-view > </ div >
25+ <!-- Carousel (views/carousel.html) -->
26+ < carousel > </ carousel >
27+
28+ <!-- Render the Angular views. -->
29+ < div ui-view > </ div >
30+
31+ <!-- Footer Section (views/footer.html) -->
32+ < footer-section > </ footer-section >
7333
74- <!-- Footer -->
75- < footer class ="py-5 bg-dark ">
76- < div class ="container ">
77- < p class ="text-white "> AngularJS, Contentful & Bootstrap 4 Starter Kit. Thrown together by Josh Hebb.</ p >
78- </ div >
79- </ footer >
34+ <!-- Third Party Scripts (Google Maps) -->
35+ < script async defer src ="https://maps.googleapis.com/maps/api/js?key=AIzaSyAYUxfnjxus1rXx-ntGcxqWD1BPRZrI1IM " type ="text/javascript "> </ script >
8036
81- <!-- Third Party Scripts (Google Maps) -->
82- < script async defer src ="https://maps.googleapis.com/maps/api/js?key=AIzaSyAYUxfnjxus1rXx-ntGcxqWD1BPRZrI1IM " type ="text/javascript "> </ script >
37+ <!-- build:js public/index.min.js -->
38+ < script src ="lib/angular/angular.js "> </ script >
39+ < script src ="src/config/app.js "> </ script >
40+ < script src ="src/directives/carousel.js "> </ script >
41+ < script src ="src/directives/navigation.js "> </ script >
42+ < script src ="src/directives/footer.js "> </ script >
43+ < script src ="src/directives/featured-products.js "> </ script >
44+ < script src ="src/config/route.js "> </ script >
8345
84- <!-- build:js public/index.min.js -->
85- < script src ="lib/angular/angular.js "> </ script >
86- < script src ="lib/angular-ui-router/release/angular-ui-router.js "> </ script >
87- < script src ="lib/angular-contentful/dist/angular-contentful.min.js "> </ script >
88- < script src ="lib/ngmap/build/scripts/ng-map.min.js "> </ script >
46+ <!-- Core Angular Libraries -->
47+ < script src ="lib/angular-ui-router/release/angular-ui-router.js "> </ script >
48+ < script src ="lib/angular-contentful/dist/angular-contentful.min.js "> </ script >
49+ < script src ="lib/ngmap/build/scripts/ng-map.min.js "> </ script >
8950
90- < script src =" lib/angular-sanitize/angular-sanitize.js " > </ script >
91- < script src ="lib/showdown/compressed/showdown .js "> </ script >
92- < script src ="lib/angular-markdown-directive/markdown .js "> </ script >
93-
51+ <!-- Marked Libraries -- >
52+ < script src ="lib/angular-sanitize/angular-sanitize .js "> </ script >
53+ < script src ="lib/marked/lib/marked .js "> </ script >
54+ < script src =" lib/angular-marked/dist/angular-marked.js " > </ script >
9455
95- < script src ="lib/jquery/dist/jquery.min.js "> </ script >
96- < script src ="lib/bootstrap/dist/js/bootstrap.min.js "> </ script >
97- < script src ="lib/tether/dist/js/tether.min.js "> </ script >
56+ <!-- Bootstrap Scripts -->
57+ < script src ="lib/jquery/dist/jquery.min.js "> </ script >
58+ < script src ="lib/bootstrap/dist/js/bootstrap.min.js "> </ script >
59+ < script src ="lib/tether/dist/js/tether.min.js "> </ script >
9860
61+ <!-- <script src="src/angular-template.tmp.js"></script> -->
62+ <!-- endbuild -->
63+ </ body >
9964
100- < script src ="src/config/app.js "> </ script >
101- < script src ="src/config/route.js "> </ script >
102-
103- <!--
104- <script src="src/angular-template.tmp.js"></script>
105- -->
106- <!-- endbuild -->
107- </ body >
108- </ html >
65+ </ html >
0 commit comments