## **1. config:读取配置信**
**参数**
| 参数名 | 类型 | 默认值 | 说明 |
| --- | --- | --- | --- |
| name | string | `必填` | 名称 |
| text_flag | string | `1` | 是否为文字 1是,0不是|
**name说明**
| 说明| 调用代码 |
| --- | --- |
| 网站名称 | `<jidu:config name="site_title" />` |
| 网站域名 | `<jidu:config name="site_url" />` |
| 网站LOGO | `<jidu:config name="site_logo" />` |
| 网站ICO | `<jidu:config name="site_ico" />` |
| 版权信息 | `<jidu:config name="site_copyright">` |
| 手机站LOGO | `<jidu:config name="wap_logo" />` |
| SEO标题 | `<jidu:config name="seo_title" />` ,2.0.7+版本的可用`{$seo_title}`直接渲染|
| SEO关键字 | `<jidu:config name="seo_keywords" />`,2.0.7+版本的可用`{$seo_keywords}`直接渲染 |
| SEO描述| `<jidu:config name="seo_describe" />`,2.0.7+版本的可用`{$seo_describe}`直接渲染 |
**示例**
```
<title>
<notempty name="$content_id">
<jidu:details id="$content_id">{$detail.title}_</jidu:details>
</notempty>
<neq name="$category_id" value="0">
<jidu:cats cid="$category_id">{$cats.title}_</jidu:cats>
</neq>
<jidu:config name="site_title" />
</title>
// 2.0.7+ 版本
<title>{$seo_title}</title>
```