Advertisement
joris

Comment

Dec 15th, 2021
1,335
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.74 KB | None | 0 0
  1. @extends('layouts.empty')
  2.  
  3. @section('content')
  4. <div class="row">
  5.     <div class="col-xl-12">
  6.         <p>What is Lorem Ipsum?</p>
  7.         <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
  8.    </div>
  9. </div>
  10. @endsection
  11.  
  12. @push('page_js')
  13. <script type="text/javascript" id="ggid-page-comment-embedder">
  14.    var ggidApplicationID = 12121;
  15.    var ggidAccessToken = "dlkmb8SSmvA5VRxcgYKmPFv1XBu9M7x";
  16.    var ggidLoginURL = "http://54.254.193.96/gate/login";
  17.    //optional, if not set will take window.location.href
  18.    //var ggidURL = 'http://example.com/my-beautiful-web-page';
  19.  
  20.     /* * * DON'T EDIT BELOW THIS LINE * * */
  21.     (function() {
  22.       function async_load(){
  23.  
  24.         var s = document.createElement('script');
  25.         s.type = 'text/javascript';
  26.         s.async = true;
  27.         s.src = 'https://gate-review-developmen-id0r3d.preview.erasysconsulting.com/widgets/comment-widget?v=4';
  28.  
  29.         var embedder = document.getElementById('ggid-page-comment-embedder');
  30.         embedder.parentNode.insertBefore(s, embedder);
  31.       }
  32.       if (window.attachEvent)
  33.         window.attachEvent('onload', async_load);
  34.       else
  35.         window.addEventListener('load', async_load, false);
  36.     })();
  37.   </script>
  38. @endpush
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement