12345678910111213141516171819202122 |
- <!DOCTYPE html>
- <html lang="zh-Hant-TW" prefix="og: http://ogp.me/ns#">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <meta http-equiv="X-UA-Compatible" content="ie=edge">
- <meta property="og:type" content="website" />
- <meta property="og:title" content="{{ $webTitle }}" />
- <meta property="og:description" content="{{ $webDesc }}" />
- <meta property="og:image" content="{{ $imagePath }}" />
- <meta property="og:image:type" content="image/jpg" />
- <meta property="og:image:width" content="1200" />
- <meta property="og:image:height" content="630" />
- <title> {{ $webTitle }} </title>
- </head>
- <body>
- <script>
- location.href = '{{ $redirectUrl }}';
- </script>
- </body>
-
- </html>
|