index.blade.php 311 B

123456789101112131415161718192021
  1. ---
  2. {!! $frontmatter !!}
  3. ---
  4. # Introduction
  5. {!! $introText !!}
  6. @if($isInteractive)
  7. <script src="https://cdn.jsdelivr.net/npm/lodash@4.17.10/lodash.min.js"></script>
  8. <script>
  9. var baseUrl = "{{ $baseUrl }}";
  10. </script>
  11. <script src="js/tryitout.js"></script>
  12. @endif
  13. > Base URL:
  14. ```yaml
  15. {!! $baseUrl !!}
  16. ```