This is my sitemap_body
- Code: Select all
<!-- IF S_XML_SITEMAP --> {ENCODING} <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <url> <loc>{U_INDEX}</loc> <lastmod>{INDEX_LASTMOD}</lastmod> <changefreq>{INDEX_FREQ}</changefreq> <priority>{INDEX_PRIO}</priority> </url> <!-- BEGIN topics --> <url> <loc>{topics.T_LINK}</loc> <lastmod>{topics.LINK_LASTMOD}</lastmod> <changefreq>{topics.LINK_FREQ}</changefreq> <priority>{topics.LINK_PRIO}</priority> </url> <!-- END topics --> </urlset> <!-- ENDIF --> <!-- IF S_LIST_SITEMAP --> {U_INDEX} <!-- BEGIN topics --> {topics.T_LINK} <!-- END topics --> <!-- ENDIF --> <!-- IF S_HTML_SITEMAP --> <!-- INCLUDE overall_header.html --> <!-- MOD : MSSTI Sitemap (1.0.0) - Start //--> <style type="text/css"> #sitemap .top { font-size: 0.8em; clear: both; float: {S_CONTENT_FLOW_END}; } #sitemap ul, #sitemap li { list-style: none; } #sitemap a, #sitemap a:hover { text-decoration: none; } #sitemap li.header dd.mark { text-transform: none; } .sitemap { font-size: 1.2em; line-height: 1.3em; overflow: hidden; margin: 0 0 0 1em; padding: 1em .4em; } .icon-sitemap { background-position: 0 50%; background-repeat: no-repeat; padding: 1px 0 0 17px; background-image: url("{T_THEME_PATH}/images/icon_sitemap.gif"); } .cursor_pointer { cursor: pointer; } .cursor_pointer:hover { color: #ff0000; } </style> <script type="text/javascript"> // <![CDATA[ /** * @ignore * http://www.sitemaps.org/protocol.php * http://www.sitemappro.com/examples.html * http://www.scottandrew.com/weblog/articles/dom_espanol **/ var forums_ary = { <!-- BEGIN jumpbox_forums --> <!-- IF jumpbox_forums.FORUM_POST --> 'forum_{jumpbox_forums.FORUM_ID}' : [<!-- BEGIN topics -->'{topics.TOPIC_ID}'<!-- IF not topics.S_LAST_ROW -->,<!-- ENDIF --><!-- END topics -->]<!-- IF not jumpbox_forums.S_LAST_ROW -->,<!-- ENDIF --> <!-- ENDIF --> <!-- END jumpbox_forums --> } /** * Set display of page element * s[-1,0,1] = hide,toggle display,show */ function sitemap_dE(n, s) { t = 'forum_' + n; for (i = 0; i < forums_ary[t].length; i++) { var e_id = 'forum_' + n + '_topic_' + forums_ary[t][i]; var e = document.getElementById(e_id); if (e) { if (!s) { s = (e.style.display == '' || e.style.display == 'block') ? -1 : 1; } e.style.display = (s == 1) ? 'block' : 'none'; } } var span_id = 'topic_' + n; var span = document.getElementById(span_id); if (span) { span.className = 'cursor_pointer'; span.innerHTML = (s == 1) ? '[-] {LA_TOPICS} » ' : '[+] {LA_TOPICS} » '; } } function sitemap_hide(s) { <!-- BEGIN jumpbox_forums --><!-- IF jumpbox_forums.FORUM_POST -->sitemap_dE({jumpbox_forums.FORUM_ID}, (s) ? 1 : 0);<!-- ENDIF --><!-- END jumpbox_forums --> } onload = function() { sitemap_hide(1); } // ]]> </script> <div id="sitemap" class="forumbg announcement"> <div class="inner"> <span class="corners-top"><span></span></span> <ul class="topiclist"> <li class="header"> <dl class="icon"> <dt><span style="font-size: 1.2em; font-weight: bold;">{L_FORUM_SITEMAP}</span></dt> <dd class="mark">Sitemap by <a href="http://www.mssti.com/phpbb3/" onclick="window.open(this.href);return false;" >.:: MSSTI ::.</a></dd> </dl> </li> </ul> <ul class="forums"> <li class="sitemap"> <span class=" top"><a href="javascript:sitemap_hide();" title="">[+/-]</a></span> » <a href="{U_FAQ}">{L_FAQ}</a><br /> » <a href="{U_BBCODE_GUIDE}">{L_BBCODE_GUIDE}</a><br /> <!-- IF S_ABBC3_MOD --> » <a href="{S_ABBC3_HELP_PAGE}"> ABBC3 {L_BBCODE_GUIDE}</a><br /> <!-- ENDIF --> » <a href="{U_TERMS_USE}">{L_TERMS_USE}</a><br /> » <a href="{U_PRIVACY}">{L_PRIVACY}</a><br /> » <a href="{U_SEARCH}">{L_SEARCH}</a><br /> <!-- IF not S_USER_LOGGED_IN --> » <a href="{U_REGISTER}">{L_REGISTER}</a><br /> <!-- ENDIF --> » <a href="{U_MEMBERLIST}">{L_MEMBERLIST}</a><br /> » <a href="{U_TEAM}">{L_THE_TEAM}</a><br /> <!-- IF U_MCP --> » <a href="{U_MCP}">{L_MCP}</a><br /> <!-- ENDIF --> <!-- IF U_ACP --> » <a href="{U_ACP}">{L_ACP}</a><br /> <!-- ENDIF --> <hr /> » <a href="{U_WEB_INDEX}">{L_WEB_INDEX}</a><br /> <!-- IF U_PORTAL --> » <a href="{U_PORTAL}">{L_PORTAL_INDEX}</a><br /> <!-- ENDIF --> » <a href="{U_INDEX}">{L_INDEX}</a><br /> <!-- BEGIN jumpbox_forums --> <!-- IF jumpbox_forums.S_FORUM_COUNT != 0 --> <!-- BEGIN level --> <!-- END level --> <!-- IF jumpbox_forums.S_IS_CAT --><hr /><strong>{L_TYPE_CAT} » </strong><!-- ELSE --><span class="back2top top"><a href="#wrap" class="top" title="{L_BACK_TO_TOP}">{L_BACK_TO_TOP}</a></span><strong>{L_TYPE_FORUM} » </strong><!-- ENDIF --><!-- IF jumpbox_forums.FORUM_CLOSED --><del><!-- ENDIF --><a href="{jumpbox_forums.U_LINK}" title="{jumpbox_forums.FORUM_TITLE}">{jumpbox_forums.FORUM_NAME}</a><!-- IF jumpbox_forums.FORUM_CLOSED --></del><!-- ENDIF --><br /> <!-- IF jumpbox_forums.FORUM_POST --> <!-- BEGIN topics --> <!-- IF topics.TOPIC_ID.FORUM_ID --> <!-- IF topics.S_FIRST_ROW --><!-- BEGIN levels --> <!-- END levels --> <strong id="topic_{topics.FORUM_ID}" onclick="sitemap_dE({jumpbox_forums.FORUM_ID}); return false;" >{L_TOPICS} » </strong><br /><!-- ENDIF --> <div id="forum_{jumpbox_forums.FORUM_ID}_topic_{topics.TOPIC_ID}"><!-- BEGIN levels --> <!-- END levels --> {EXTRA_SPACE} <!-- IF topics.TOPIC_CLOSED --><del><!-- ENDIF --><a href="{topics.U_LINK}" title="{topics.TOPIC_TITLE}">{topics.TOPIC_NAME}</a><!-- IF topics.TOPIC_CLOSED --></del><!-- ENDIF --><br /></div> <!-- ENDIF --> <!-- END topics --> <!-- ENDIF --> <!-- ENDIF --> <!-- END jumpbox_forums --> </li> </ul> <span class="corners-bottom"><span></span></span> </div> </div> <!-- INCLUDE jumpbox.html --> <!-- MOD : MSSTI Sitemap (1.0.0) - End //--> <!-- INCLUDE overall_footer.html --> <!-- ENDIF -->
