index.html 810 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <!DOCTYPE html>
  2. <html lang="{{ .Site.LanguageCode }}">
  3. <head>
  4. {{ partial "headers.html" . }}
  5. {{ partial "custom_headers.html" . }}
  6. </head>
  7. <body style="overflow-x: hidden;">
  8. <div id="all">
  9. <!-- {{ partial "top.html" . }} -->
  10. {{ partial "nav.html" . }}
  11. {{ partial "carousel.html" . }}
  12. {{ partial "features.html" . }}
  13. <!-- {{ partial "testimonials.html" . }}
  14. {{ partial "see_more.html" . }}
  15. {{ partial "recent_posts.html" . }}
  16. {{ partial "clients.html" . }} -->
  17. {{ partial "footer.html" . }}
  18. </div>
  19. <!-- /#all -->
  20. {{ partial "scripts.html" . }}
  21. <script>
  22. $(".responsive").slick({
  23. dots: true,
  24. slidesToShow: 1,
  25. slidesToScroll: 1,
  26. autoplay: true,
  27. autoplaySpeed: 3000,
  28. });
  29. </script>
  30. </body>
  31. </html>