```
三、在<head>插入
1. ```
<{$xoops_module_header}>
```
chrome清暫存:chrome://settings/clearBrowserData (ctrl + shift +del)
xoops清暫存:http://localhost/modules/system/admin.php?fct=maintenance
### 四、更換<title>
1. ```
<{if $xoops_dirname == "system"}><{$xoops_sitename}><{if $xoops_pagetitle !=''}> - <{$xoops_pagetitle}><{/if}><{else}><{if $xoops_pagetitle !=''}><{$xoops_pagetitle}> - <{$xoops_sitename}><{/if}><{/if}>
```
### 五、模組內容與區塊
1. xoops區塊
<{* xoops *}>
<{includeq file="$theme_name/tpl/leftBlock.html"}>
<{includeq file="$theme_name/tpl/content-zone.html"}>
<{includeq file="$theme_name/tpl/rightBlock.html"}>
```
2. 請至tadnews模組測試區塊與內容
### 六、強化區塊樣板
1. 可直接套用tadtools的blockTitle.html樣板,即有強化區塊標題的功能 ```
<{include file="$xoops_rootpath/modules/tadtools/themes_common/blockTitle.html"}>
```
2. 想隱藏區塊標題,請在標題後加上 \[hide\],例如:"標題 \[hide\]"。
想使用圖片作為標題,請在標題後加上 \[pic\]以及圖片在佈景中的位置,例如:"標題 \[pic\]img/usermenu.png"。
想要在區塊標題前面放一個 icon,請在標題後加上 \[icon\]以及圖片在佈景中的位置,如:"標題 \[icon\]img/icon.gif"。
希望區塊標題有連結網址,請在標題後加上 \[link\]以及網址,例如:"標題 \[link\]http://ck2tw.net"。
當使用圖片作為標題時,原本的區塊名稱會作為 "alt" 或 "title" 標籤的內容。
### 七、登入畫面
1. 在 theme.html </body> 之前加入 ```
<{* 管理員登入用 *}>
<{includeq file="$theme_name/tpl/control.html"}>
```
2. control.html ```
<{if $xoops_isadmin}>
<{else}>
<{/if}>
```
### 八、設定語系
1. XOOPS 2.3以後可設定佈景語系檔:/佈景/language/語系/main.php
2. 直接複制 xbootstrap 佈景底下的 language即可
3. 一樣用define("常數","字串")來設定,例如:define("\_THEME\_ID", "帳號:");
4. 佈景中使用:<{$smarty.const.\_THEME\_ID}>
5. 若要套用變數到語系中:<{$欲套入變數|string\_format:$smarty.const.語系常數}>