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.

23 lines
597 B

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. {{-- <navbar></navbar>--}}
  14. @yield('content')
  15. </div>
  16. <script src="{{ mix('js/app.js') }}" defer></script>
  17. </body>
  18. </html>