Skip to content

Instantly share code, notes, and snippets.

@harryWonder
Created October 26, 2020 10:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save harryWonder/dbaeeab6bfbc9456fafb3bb02d5bbbe6 to your computer and use it in GitHub Desktop.
Save harryWonder/dbaeeab6bfbc9456fafb3bb02d5bbbe6 to your computer and use it in GitHub Desktop.
This is where our Vuejs code gets hooked into the DOM because by default, this file is rendered.
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ config('app.name', 'Ld-Talk') }}</title>
<meta name="application-name" content="{{ config('app.name', 'Ld-Talk') }}">
<!-- Fonts -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<!-- Css -->
<link href="{{ asset('css/custom.css') }}" type="text/css" rel="stylesheet">
<link href="{{ asset('css/normalize.css') }}" type="text/css" rel="stylesheet">
<link href="{{ asset('css/skeleton.css') }}" type="text/css" rel="stylesheet">
</head>
<body>
<div id="app">
<App></App>
</div>
<!-- Javascript -->
<script src="{{ asset('js/app.js') }}" charset="utf-8"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment