I am trying to incorporate an external bootstrap framework into my Losant Experience application. I have copied the bootstrap framework files as well as CSS files to my Application/Files directory structure. I also have create an Experience view and modified the HTML code to point to the Bootstrap framework and CSS files but it appears not to recognize these. Can anyone provide some assistance to get this working?
Here is the HTML code
Smart Building Manager| Verizon<div class="container whitepage">
<div class="row row-eq-height">
<div class="pageHeader col-md-12 col-sm-12">
<h1>Smart Building Manager</h1>
</div>
</div>
<div class="row">
<!-- Left Side Bar -->
<div class="col-md-2 col-sm-2 leftSideBar leftSideBarHeight scrollAction">
<h2>Organizations/Sites</h2>
</div>
<!-- Content section -->
<div class="col-md-10 col-sm-10 contentSection">
<!-- Check to see if we have a valid org and site name -->
<?php
$orgName = "Smart Building"
if ($orgName) {
?>
<h2><?php echo $orgName . " Info"?></h2>
<!-- Org Info section -->
<div class="col-md-6 col-sm-6 column-separator contentHeight scrollAction">
<h2>Org Info</h2>
</div> <!-- End of Org Info section -->
<!-- Site Info section -->
<div class="col-md-6 col-sm-6 contentHeight scrollAction">
<h2>Site Info</h2>
</div> <!-- End of Site Info section -->
<?php } else { ?>
<div class="col-md-10 col-sm-10 contentSection emptyContentHeight">
</div>
<?php } ?>
</div> <!-- End of Content section -->
</div>
</div><!-- /.container -->
<!-- Global Footer -->
<footer class="container disclaimer padding-left-right-zero footerPage">
<div class="row">
<div class="col-md-8 col-xs-8">
<p>Proprietary and Confidential. Not for disclosure outside of Verizon.</p>
</div>
<div class="col-md-4 col-xs-4">
<p class="pull-right pull-mobile-none">Copyright ©
<script>document.write(new Date().getFullYear());</script>
</p>
</div>
</div>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="/vzdesign/scripts/jquery.min.js"></script>
<script src="/vzdesign/scripts/bootstrap.min.js"></script>
<script src="/vzdesign/scripts/vzbootstrap.min.js"></script>
I have also included images showing
o CSS file structure
o Root file structure (bootstrap framework)
o Output of HTML
Hope this can provide enough data to help identify the issue
thanks
ed