• Yes, web developers don’t use straight HTML because for anything that is not trivial, it’s not sufficient The web today is a place to DO things, not READ things. Even if you are displaying “static” data, Javascript frameworks and libraries can help you write code once and then offload browser compatibility and desktop/mobile presentation formats.

        If you add all the interactive elements, it gets even more complex. HTML is powerful and provides transparency, but it’s not just the MBA crowd moving away from it.

        Also, as desktop applications are quickly being deprecated for browser-based apps, there is more movement to frameworks, and libraries.

    •  blivet   ( @blivet@artemis.camp ) 
      link
      fedilink
      2
      edit-2
      11 months ago

      It loads these JavaScript libraries:

      <!--Global JS-->
      <script src="web/wizixo/template/assets/vendor/jquery/jquery.min.js"></script>
      <script src="web/wizixo/template/assets/vendor/popper.js/umd/popper.min.js"></script>
      <script src="web/wizixo/template/assets/vendor/bootstrap/dist/js/bootstrap.min.js"></script>
      <script src="web/wizixo/template/assets/vendor/jquery-easing/jquery.easing.min.js"></script>
      
      <!--Vendors-->
      <script src="web/wizixo/template/assets/vendor/fancybox/js/jquery.fancybox.min.js"></script>
      <script src="web/wizixo/template/assets/vendor/owlcarousel/js/owl.carousel.min.js"></script>
      
      <!--Template Functions-->
      <script src="web/wizixo/template/assets/js/functions.js"></script>
      
      

      Sorry, I can’t seem to get the formatting right.