37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
		
		
			
		
	
	
			37 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			HTML
		
	
	
|  | <!DOCTYPE html> | ||
|  | {php} | ||
|  | if(!isset($_token) || empty($_token)) { | ||
|  | $_token = session('_token') ?? ''; | ||
|  | } | ||
|  | {/php} | ||
|  | <html> | ||
|  | <head> | ||
|  |     <meta charset="UTF-8" /> | ||
|  |     <title>{$seoTitle??''}</title> | ||
|  |     <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" /> | ||
|  |     <meta name="format-detection" content="telephone=no" /> | ||
|  |     <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
|  |     <meta name="renderer" content="webkit|ie-comp|ie-stand"> | ||
|  |     <meta name="Keywords" content="{$seoKeywords??''}"> | ||
|  |     <meta name="description" content="{$seoDescription??''}"> | ||
|  |     <link rel="shortcut icon" type="image/ico" href="/favicon.ico"> | ||
|  |     <link rel="stylesheet" href="__JS__/layui/css/layui.css"> | ||
|  |     <link rel="stylesheet" href="__JS__/layer/layer.css"> | ||
|  |     <link rel="stylesheet" href="__CSS__/swiper.min.css"> | ||
|  |     <link rel="stylesheet" href="__CSS__/public.css"> | ||
|  |     <link rel="stylesheet" href="__CSS__/index.css"> | ||
|  | 
 | ||
|  |     <script src="__JS__/jquery-3.3.1.js"></script> | ||
|  |     <script src="__JS__/layui/layer/layer.js"></script> | ||
|  |     <script src="__JS__/layui/layui.js"></script> | ||
|  |     <script src="__JS__/swiper.min.js"></script> | ||
|  | </head> | ||
|  | <body> | ||
|  | {:widget('menu/index', ['categoryId' => $categoryId ?? 0])} | ||
|  | {__CONTENT__} | ||
|  | {include file="public/footer"} | ||
|  | </body> | ||
|  | </html> | ||
|  | 
 | ||
|  | 
 |