| 1234567891011121314151617181920212223 |
- <!DOCTYPE html>
- <html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>Welcome</title>
- <style>
- body {
- font-family: 'Nunito';
- }
- h2 {
- line-height: 120px;
- width: 100%;
- text-align: center;
- }
- </style>
- </head>
- <body class="antialiased">
- <div id="app">
- <h2>欢迎访问本站!</h2>
- </div>
- </body>
- </html>
|