Loading...
 
Skip to main content

History: Tutorial - HowTo Create a Sitemap

Source of version: 8 (current)

Copy to clipboard
            This ((Tutorial)) shows that there are many ways how to create a sitemap for your Tiki.

Some of them below:
{maketoc title="" levels="2,3"}

!!!# Using Menu Module

!!!!Using Custom CSS To Override The Collapsed Menu Display
This code:
{CODE(colors="tiki")}
{HTML()}
<style>
.mysitemap .cssmenu_vert li ul {
	display: block !important;
	position: static !important;
	}
</style>
{HTML}
{module module="menu" id="43" bootstrap="n" class="mysitemap" setSelected="n" title="Sitemap"}
{CODE}

Produces:
{HTML()}
<style>
.mysitemap .cssmenu_vert li ul {
	display: block !important;
	position: static !important;
	}
</style>
{HTML}
{module module="menu" id="43" bootstrap="n" class="mysitemap" setSelected="n" title="Sitemap"}

!!!# Using toc from a structure
If you use a menu fom a structure of wiki pages, you can use 
{CODE()}
{toc}
{CODE}

to produce the table of contents of that site.