1234567891011121314151617181920212223242526 |
- <!DOCTYPE html>
- <html lang="{{ app()->getLocale() }}">
- <head>
- <meta charset="utf-8">
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <!-- CSRF Token -->
- <meta name="csrf-token" content="{{ csrf_token() }}">
- @stack('meta')
- @php
- if (isset($page_seo)) {
- $page_seo=handle_seo_info($page_seo);
- }
- @endphp
- <title>{{ $page_seo['title'] or subsite_config('aix.system.site.site.site_name')}}</title>
- <meta name="keywords" content="{{$page_seo['keywords'] or subsite_config('aix.system.site.site.site_keyword')}}"/>
- <meta name="description" content="{{$page_seo['description'] or subsite_config('aix.system.site.site.site_description')}}"/>
- <meta name="author" content="招聘通"/>
- <meta name="copyright" content="jsaix.com"/>
- <link rel="shortcut icon" href="/favicon.ico">
- <!-- Styles -->
- @stack('css')
- <script type="text/javascript" src="{{theme_asset('jquery/jquery-1.12.4.min.js')}}"></script>
- @stack('js')
- </head>
- <body>
|