totalPage = c.getPageCount();
for (int pageNo = 1; pageNo <= totalPage; pageNo++) {
String txt = c.getTxtByNo(pageNo);
// 内容加上关键字
txt = cmsKeywordMng.attachKeyword(site.getId(), txt);
Paginable pagination = new SimplePage(pageNo, 1, c.getPageCount());
data.put("pagination", pagination);
url = c.getUrlStatic(pageNo);
info = URLHelper.getPageInfo(url.substring(url.lastIndexOf("/")),
null);
FrontUtils.putLocation(data, url);