homepage.php 762 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. if(file_exists('config'.DIRECTORY_SEPARATOR.'config.php')){
  3. $pageHomepage = '
  4. <script>
  5. $("#owl-demo2").owlCarousel({
  6. margin:20,
  7. nav:true,
  8. autoplay:true,
  9. responsive:{
  10. 0:{
  11. items:1
  12. },
  13. 480:{
  14. items:2
  15. },
  16. 700:{
  17. items:4
  18. },
  19. 1000:{
  20. items:3
  21. },
  22. 1100:{
  23. items:5
  24. }
  25. }
  26. })
  27. </script>
  28. <link href="plugins/bower_components/owl.carousel/owl.carousel.min.css" rel="stylesheet" type="text/css" />
  29. <link href="plugins/bower_components/owl.carousel/owl.theme.default.css" rel="stylesheet" type="text/css" />
  30. <div class="container-fluid p-t-10" id="homepage-items">'.buildHomepage().'</div>
  31. <!-- /.container-fluid -->
  32. ';
  33. }