22 lines
718 B
HTML
22 lines
718 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{block name="title"}标题{/block}</title>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
|
|
<meta name="keywords" content="{block name="keywords"}关键词{/block}">
|
|
<meta name="description" content="{block name="description"}描述{/block}">
|
|
<link rel="stylesheet" href="/static/layui/css/layui.css">
|
|
<link rel="stylesheet" href="/static/res/css/global.css" charset="utf-8">
|
|
</head>
|
|
<body >
|
|
{include file="public/header" /}
|
|
{block name="column"}导航{/block}
|
|
{block name="content"}内容{/block}
|
|
{include file="public/footer" /}
|
|
{include file="public/js" /}
|
|
{block name="script"}{/block}
|
|
</body>
|
|
</html>
|
|
|