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
29 lines
732 B
<!doctype html>
|
|
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="csrf-token" content="{{ csrf_token() }}">
|
|
|
|
<title>Search and Displace</title>
|
|
|
|
<link rel="shortcut icon" href="{{ asset('images/favicon.png') }}">
|
|
<link rel="stylesheet" href="{{ mix('css/app.css') }}">
|
|
</head>
|
|
|
|
<body>
|
|
<div id="app">
|
|
<app-header></app-header>
|
|
|
|
<Toast position="top-right"></Toast>
|
|
|
|
<div class="page-wrapper">
|
|
@yield('content')
|
|
</div>
|
|
|
|
<app-footer></app-footer>
|
|
</div>
|
|
|
|
<script src="{{ mix('js/app.js') }}" defer></script>
|
|
</body>
|
|
</html>
|