|
1 | 1 | <!doctype html>
|
2 | 2 | <html lang="{{ app()->getLocale() }}">
|
3 |
| - <head> |
4 |
| - <meta charset="utf-8"> |
5 |
| - <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
6 |
| - <meta name="viewport" content="width=device-width, initial-scale=1"> |
7 |
| - |
8 |
| - <title>Laravel</title> |
9 |
| - |
10 |
| - <!-- Fonts --> |
11 |
| - <link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css"> |
12 |
| - |
13 |
| - <!-- Styles --> |
14 |
| - <style> |
15 |
| - html, body { |
16 |
| - background-color: #fff; |
17 |
| - color: #636b6f; |
18 |
| - font-family: 'Raleway', sans-serif; |
19 |
| - font-weight: 100; |
20 |
| - height: 100vh; |
21 |
| - margin: 0; |
22 |
| - } |
23 |
| -
|
24 |
| - .full-height { |
25 |
| - height: 100vh; |
26 |
| - } |
27 |
| -
|
28 |
| - .flex-center { |
29 |
| - align-items: center; |
30 |
| - display: flex; |
31 |
| - justify-content: center; |
32 |
| - } |
33 |
| -
|
34 |
| - .position-ref { |
35 |
| - position: relative; |
36 |
| - } |
37 |
| -
|
38 |
| - .top-right { |
39 |
| - position: absolute; |
40 |
| - right: 10px; |
41 |
| - top: 18px; |
42 |
| - } |
43 |
| -
|
44 |
| - .content { |
45 |
| - text-align: center; |
46 |
| - } |
47 |
| -
|
48 |
| - .title { |
49 |
| - font-size: 84px; |
50 |
| - } |
51 |
| -
|
52 |
| - .links > a { |
53 |
| - color: #636b6f; |
54 |
| - padding: 0 25px; |
55 |
| - font-size: 12px; |
56 |
| - font-weight: 600; |
57 |
| - letter-spacing: .1rem; |
58 |
| - text-decoration: none; |
59 |
| - text-transform: uppercase; |
60 |
| - } |
61 |
| -
|
62 |
| - .m-b-md { |
63 |
| - margin-bottom: 30px; |
64 |
| - } |
65 |
| - </style> |
66 |
| - </head> |
67 |
| - <body> |
68 |
| - <div class="flex-center position-ref full-height"> |
69 |
| - @if (Route::has('login')) |
70 |
| - <div class="top-right links"> |
71 |
| - @auth |
72 |
| - <a href="{{ url('/home') }}">Home</a> |
73 |
| - @else |
74 |
| - <a href="{{ route('login') }}">Login</a> |
75 |
| - <a href="{{ route('register') }}">Register</a> |
76 |
| - @endauth |
77 |
| - </div> |
78 |
| - @endif |
79 |
| - |
80 |
| - <div class="content"> |
81 |
| - <div class="title m-b-md"> |
82 |
| - Laravel |
83 |
| - </div> |
84 |
| - |
85 |
| - <div class="links"> |
86 |
| - <a href="https://laravel.com/docs">Documentation</a> |
87 |
| - <a href="https://laracasts.com">Laracasts</a> |
88 |
| - <a href="https://laravel-news.com">News</a> |
89 |
| - <a href="https://forge.laravel.com">Forge</a> |
90 |
| - <a href="https://github.com/laravel/laravel">GitHub</a> |
91 |
| - </div> |
92 |
| - </div> |
93 |
| - </div> |
94 |
| - </body> |
| 3 | +<head> |
| 4 | + <meta charset="utf-8"> |
| 5 | + <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 6 | + <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 7 | + |
| 8 | + <title>Laravel + Vue + TypeScript</title> |
| 9 | +</head> |
| 10 | +<body> |
| 11 | +<div id="app"></div> |
| 12 | +<script src="{{ mix('js/app.js') }}"></script> |
| 13 | +</body> |
95 | 14 | </html>
|
0 commit comments