Repo for the search and displace core module including the interface to select files and search and displace operations to run on them. https://searchanddisplace.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
732 B

3 years ago
3 years ago
3 years ago
  1. <!doctype html>
  2. <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <meta name="csrf-token" content="{{ csrf_token() }}">
  7. <title>Search and Displace</title>
  8. <link rel="shortcut icon" href="{{ asset('images/favicon.png') }}">
  9. <link rel="stylesheet" href="{{ mix('css/app.css') }}">
  10. </head>
  11. <body>
  12. <div id="app">
  13. <app-header></app-header>
  14. <Toast position="top-right"></Toast>
  15. <div class="page-wrapper">
  16. @yield('content')
  17. </div>
  18. <app-footer></app-footer>
  19. </div>
  20. <script src="{{ mix('js/app.js') }}" defer></script>
  21. </body>
  22. </html>