# 1\. 通用全局 xy:global
{xy:global.\*}
> 适用范围:适用于所有的页面
>
| 字段名称 | 描述 |
| --- | --- |
| {xy:global.name/} | 网站标题 |
| {xy:global.logo/} | 返回logo的图片地址`<img src="{xy:global.logo/}"/>` |
| {xy:global.keyword/} | 网站关键字**范例**:`<meta name="keywords"`<br />` content="{xy:global.keyword/}"/>` |
| {xy:global.descrip/} | 网站描述**范例:**`<meta name="description"`<br />` content="{xy:global.descrip/}"/>` |
| {xy:global.copyright/} | 网站版权信息 |
| {xy:global.url/} | 返回域名+静态文件,格式:**域名/html/站点id/**,**范例:**`<a href="{xy:global.url/}" title="返回首页">`返回首页`</a>` |
| {xy:global.host/} | 返回项目对应域名地址 |
| {xy:global.style/} | 返回当前站点的模板名称,主要用于引入css,js等资源文件读取,**范例:**`<scriptsrc`<br />`="{xy:global.host/}/{xy:global.style/}js/index.js">`<br />`<img src="{xy:global.host/}`<br />`/{xy:global.style/}/images/pic.jpg"/>` |
| `<#include "url">` | **4.7.0**引入文件标签,主要用于引入公用的HTML等文件**范例:<#include "head.htm"> 表示引用模板下的head.htm文件。注意这里的url参数是待**双引号** |
| {xy:globalskin.url/} | 同 {xy:global.style/}功能一致 |
| {xy:include filename=url/} | 同 {xy:global.style/}功能一致 |
通用全局标签完整范例:
```
<title>{xy:global.name/}</title>
<meta name="description" content="{xy:global.descrip/}">
<meta name="keywords" content="{xy:global.keyword/}">
<link rel="shortcut icon" href="{xy:global.host/}/{xy:global.style/}/fav.ico" type="x-icon">
<link rel="stylesheet" href="{xy:global.host/}/{xy:global.style/}/css/base.css">
<script src="{xy:global.host/}/{xy:global.style/}/js/jquery.js"></script>
<#include "head.htm">
<h2><a href="{xy:global.url/}/4321/index.html">全部商品分类</a></h2>
```