<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Nicolas Kuttler &#187; navigation</title>
	<atom:link href="http://www.nkuttler.de/tag/navigation/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nkuttler.de</link>
	<description>WordPress Services, IT Services</description>
	<lastBuildDate>Wed, 28 Jul 2010 23:49:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to add support for navigation menus to your WordPress theme</title>
		<link>http://www.nkuttler.de/2010/06/08/wp_nav_menu-wordpress-3-0/</link>
		<comments>http://www.nkuttler.de/2010/06/08/wp_nav_menu-wordpress-3-0/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 15:00:50 +0000</pubDate>
		<dc:creator>nicolas</dc:creator>
				<category><![CDATA[Content Management]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[template]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress theme]]></category>
		<category><![CDATA[wp_nav_menu]]></category>

		<guid isPermaLink="false">http://www.nkuttler.de/?p=1613</guid>
		<description><![CDATA[The new navigation menus system in WordPress 3.0 looks promising, but in my opinion it&#8217;s not very usable yet. Anyway, here&#8217;s one way to add navigation menus to your theme while maintaining backward compatibility: In your theme&#8217;s functions.php add something like the following code: 1 2 3 4 5 6 7 8 9 10 11 [...]]]></description>
			<content:encoded><![CDATA[<p>The new <a href="http://codex.wordpress.org/Appearance_Menus_SubPanel">navigation menus</a> system in WordPress 3.0 looks promising, but in my opinion it&#8217;s not very usable yet. Anyway, here&#8217;s one way to add navigation menus to your theme while maintaining backward compatibility:</p>
<p>In your theme&#8217;s <code>functions.php</code> add something like the following code:<span id="more-1613"></span></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
</pre></td><td class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> mytheme_addmenus<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	register_nav_menus<span style="color: #009900;">&#40;</span>
		<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>
			<span style="color: #0000ff;">'main_nav'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'The Main Menu'</span><span style="color: #339933;">,</span>
		<span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'init'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'mytheme_addmenus'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> mytheme_nav<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> <span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'wp_nav_menu'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span>
        wp_nav_menu<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'menu=main_nav&amp;container_class=pagemenu&amp;fallback_cb=mytheme_nav_fallback'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">else</span>
        mytheme_nav_fallback<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> mytheme_nav_fallback<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
    wp_page_menu<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'show_home=Start&amp;menu_class=pagemenu'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>In line 1 we add support for the navigation menus. The <code>mytheme_nav()</code> function is what you will use in the theme to display the menu. Inside that function we check if <code>wp_nav_menu()</code> exists, that means if we&#8217;re running WordPress 3.0 (or later). If not we&#8217;ll use the fallback function <code>mytheme_nav_fallback()</code>.</p>
<p>Notice that the fallback also gets called if no navigation menus have been created in the admin area. That&#8217;s what the <code>fallback_cb</code> parameter on line 4 does.</p>
<p>To keep the HTM markup and the CSS consistent you&#8217;ll have to use the <code>container_class</code> parameter on <code>wp_nav_menu</code> but the <code>menu_class</code> parameter for <code>wp_page_menu</code>.</p>
<p>In your template use the following code to use your new custom function:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> mytheme_nav<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<h3>Resources</h3>
<ul>
<li><a href="http://codex.wordpress.org/Function_Reference/wp_nav_menu">wp_nav_menu() reference</a></li>
<li><a href="http://codex.wordpress.org/Template_Tags/wp_page_menu">wp_page_menu() reference</a></li>
<li><a href="http://justintadlock.com/archives/2010/06/01/goodbye-headaches-hello-menus">Informative article on nav menus by Justin Tadlock</a></li>
</ul>
<a name="wptoc_0_0_0"></a><h2>Ramblings</h2>
<p>What&#8217;s good about the new menu system:</p>
<ul>
<li>Total control over what appears in the menu</li>
<li>You can add posts, pages, categories and tags in the menu</li>
<li>Very nice drag and drop interface</li>
</ul>
<p>What&#8217;s bad:</p>
<ul>
<li>You will have to teach your users how to use the system properly.</li>
<li>If you create new pages they won&#8217;t be added to your existing menu (except for top level pages).</li>
<li>You can not control your page menus through the navigation menus interface. I think it is&#8230; very very odd that WordPress doesn&#8217;t have a simple drag-and-drop interface to arrange pages.</li>
<li>The previous point means that the new menu system is useless unless you update your theme.</li>
<li>The <code>wp_nav_menu()</code> call is inconsistent with the existing <code>wp_page_menu()</code> function.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nkuttler.de/2010/06/08/wp_nav_menu-wordpress-3-0/feed/</wfw:commentRss>
		<slash:comments>20</slash:comments>
		</item>
		<item>
		<title>WPMU fast backend switch</title>
		<link>http://www.nkuttler.de/2010/06/07/wpmu-switch-backend/</link>
		<comments>http://www.nkuttler.de/2010/06/07/wpmu-switch-backend/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 11:10:46 +0000</pubDate>
		<dc:creator>nicolas</dc:creator>
				<category><![CDATA[Content Management]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress plugin]]></category>
		<category><![CDATA[WPMU]]></category>

		<guid isPermaLink="false">http://nkuttler.wordpress-server.de/?p=1687</guid>
		<description><![CDATA[I recently converted several simple WordPress installs into a single WPMU install. As I use all of the blogs myself I wanted a quick way to switch between the various backends. This is probably only useful if you don&#8217;t have too many blogs and use all of them yourself. The switch links will be added [...]]]></description>
			<content:encoded><![CDATA[<p>I recently converted several simple WordPress installs into a single WPMU install. As I use all of the blogs myself I wanted a quick way to switch between the various backends. This is probably  only useful if you don&#8217;t have too many blogs and use all of them yourself. The switch links will be added to your super admin menu.<span id="more-1687"></span></p>
<p>By the way, I use the <a href="http://wordpress.org/extend/plugins/ozh-admin-drop-down-menu/">Ozh admin menu plugin</a>. You might need two clicks to switch if  you don&#8217;t. </p>
<p><a href="http://wordpress.org/extend/plugins/wpmu-fast-backend-switch/">Download the plugin</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nkuttler.de/2010/06/07/wpmu-switch-backend/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress 2.7 and the comment pager</title>
		<link>http://www.nkuttler.de/2008/11/04/comment-paging-in-wordpress-27/</link>
		<comments>http://www.nkuttler.de/2008/11/04/comment-paging-in-wordpress-27/#comments</comments>
		<pubDate>Mon, 03 Nov 2008 23:41:28 +0000</pubDate>
		<dc:creator>nicolas</dc:creator>
				<category><![CDATA[Content Management]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[usability]]></category>
		<category><![CDATA[Webdesign]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[WordPress theme]]></category>

		<guid isPermaLink="false">http://www.nkuttler.de//?p=397</guid>
		<description><![CDATA[Comment paging is a great new feature in WordPress 2.7. However, how do you not display the pager when there are no previous or next comments? After digging through the code for quite a while and chatting with some people here&#8217;s a solution: &#60;?php if &#40; have_comments&#40;&#41; &#41; &#123; ?&#62; &#60;ol class=&#34;commentlist&#34;&#62; &#60;?php wp_list_comments&#40;&#41;; if [...]]]></description>
			<content:encoded><![CDATA[<p>Comment paging is a great new feature in WordPress 2.7. However, how do you not display the pager when there are no previous or next comments? After digging through the code for quite a while and chatting with some people here&#8217;s a solution:<span id="more-397"></span></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> have_comments<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
    &lt;ol class=&quot;commentlist&quot;&gt;
    <span style="color: #000000; font-weight: bold;">&lt;?php</span>
    wp_list_comments<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> get_option<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'page_comments'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #009900;">&#40;</span>
        get_query_var<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'cpage'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">1</span> <span style="color: #339933;">||</span>
        get_query_var<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'cpage'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&lt;</span> get_comment_pages_count<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
            <span style="color: #000000; font-weight: bold;">?&gt;</span> &lt;!-- pager HTML --&gt; <span style="color: #000000; font-weight: bold;">&lt;?php</span>
            next_comments_link<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
            <span style="color: #000000; font-weight: bold;">?&gt;</span> &lt;!-- pager HTML --&gt; <span style="color: #000000; font-weight: bold;">&lt;?php</span>
            previous_comments_link<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
            <span style="color: #000000; font-weight: bold;">?&gt;</span> &lt;!-- pager HTML --&gt; <span style="color: #000000; font-weight: bold;">&lt;?php</span>
    <span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
    &lt;/ol&gt;
<span style="color: #000000; font-weight: bold;">&lt;?php</span>
<span style="color: #009900;">&#125;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span></pre></div></div>

<p>If you want to get started with 2.7 theme migration have a look at <a href="http://ottodestruct.com/blog/2008/09/29/wordpress-27-comments-enhancements/">Otto&#8217;s</a> or <a href="http://sivel.net/2008/10/wp-27-comment-separation/">Matt&#8217;s</a> posts on the new comment system and ping/comment separation.</p>
<p><b>Update:</b> No, <tt>get_previous_posts_page_link()</tt> is incorrect and <tt>get_previous_comments_link()</tt> doesn&#8217;t exist (yet).</p>
<p><b>Update 2:</b> Thanks to Viper007Bond for pointing me in the right direction.</p>
<p><b>Update 3:</b> <a href="http://trac.wordpress.org/ticket/8058">trac ticket</a></p>
<p><b>Update 4:</b> Additional conditional to not show the pager at all if paging isn&#8217;t enabled.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nkuttler.de/2008/11/04/comment-paging-in-wordpress-27/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Very simple Typo3 navigation</title>
		<link>http://www.nkuttler.de/2008/10/08/very-simple-typo3-navigation/</link>
		<comments>http://www.nkuttler.de/2008/10/08/very-simple-typo3-navigation/#comments</comments>
		<pubDate>Wed, 08 Oct 2008 11:57:19 +0000</pubDate>
		<dc:creator>nicolas</dc:creator>
				<category><![CDATA[Content Management]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[Typo3]]></category>
		<category><![CDATA[typoscript]]></category>

		<guid isPermaLink="false">http://www.nkuttler.de//?p=211</guid>
		<description><![CDATA[Sometimes I get asked how to build a menu in Typo3. It&#8217;s really easy, but TSref isn&#8217;t very verbose. So here&#8217;s how to build a basic, valid Typo3 navigation: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes I get asked how to build a menu in Typo3. It&#8217;s really easy, but <a href="http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/">TSref</a> isn&#8217;t very verbose. So here&#8217;s how to build a basic, valid Typo3 navigation: <span id="more-211"></span></p>

<div class="wp_syntax"><table><tr><td class="line_numbers"><pre>1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
</pre></td><td class="code"><pre class="typoscript" style="font-family:monospace;">foo <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #990000; font-weight: bold;">HMENU</span>
foo <span style="color: #009900;">&#123;</span>
	<span style="color: #aaa; font-style: italic;"># I use this because I like to have one root page</span>
	<span style="color: #aaa; font-style: italic;"># that links to the first content page. All my</span>
	<span style="color: #aaa; font-style: italic;"># level 1 Pages are subpages of that page.</span>
	entryLevel <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">1</span>
	<span style="color: #aaa; font-style: italic;"># define the first level</span>
	<span style="color: #cc0000;">1</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #990000; font-weight: bold;">TMENU</span>
	<span style="color: #cc0000;">1</span> <span style="color: #009900;">&#123;</span>
		wrap <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #3366CC;">&lt;ul&gt;</span><span style="color: #339933; font-weight: bold;">|</span><span style="color: #3366CC;">&lt;/ul&gt;</span>
		<span style="color: #aaa; font-style: italic;"># Normal Style</span>
		<span style="color: #990000; font-weight: bold;">NO</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">1</span>
		<span style="color: #990000; font-weight: bold;">NO</span> <span style="color: #009900;">&#123;</span>
			wrapItemAndSub <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #3366CC;">&lt;li&gt;</span><span style="color: #339933; font-weight: bold;">|</span><span style="color: #3366CC;">&lt;/li&gt;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #aaa; font-style: italic;"># Style, if menu page is current page</span>
		<span style="color: #990000; font-weight: bold;">CUR</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">1</span>
		<span style="color: #990000; font-weight: bold;">CUR</span> <span style="color: #009900;">&#123;</span>
			wrapItemAndSub <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #3366CC;">&lt;li&gt;</span><span style="color: #339933; font-weight: bold;">|</span><span style="color: #3366CC;">&lt;/li&gt;</span>
			ATagParams<span style="color: #339933; font-weight: bold;">=</span> class<span style="color: #339933; font-weight: bold;">=</span>&quot;cur&quot;
		<span style="color: #009900;">&#125;</span>
	<span style="color: #009900;">&#125;</span>
	<span style="color: #aaa; font-style: italic;"># Define one more level, create a copy of level 1</span>
	<span style="color: #cc0000;">2</span> <span style="color: #339933; font-weight: bold;">&lt;</span> <span style="color: #339933; font-weight: bold;">.</span>1
	<span style="color: #aaa; font-style: italic;"># add as many more levels as you need</span>
	<span style="color: #aaa; font-style: italic;"># 3 &lt; .1 etc.</span>
<span style="color: #009900;">&#125;</span></pre></td></tr></table></div>

<p>Replace foo with whatever marker or position in your TS array you want. If you want to do anything more fancy, you should really read <a href="http://typo3.org/documentation/document-library/references/doc_core_tsref/4.1.0/view/10/1/">the fine manual</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nkuttler.de/2008/10/08/very-simple-typo3-navigation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Typo3 and the YAML vertical navigation</title>
		<link>http://www.nkuttler.de/2008/09/21/typo3-and-the-yaml-vertical-navigation/</link>
		<comments>http://www.nkuttler.de/2008/09/21/typo3-and-the-yaml-vertical-navigation/#comments</comments>
		<pubDate>Sun, 21 Sep 2008 08:55:55 +0000</pubDate>
		<dc:creator>nicolas</dc:creator>
				<category><![CDATA[Content Management]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[Typo3]]></category>
		<category><![CDATA[typoscript]]></category>
		<category><![CDATA[yaml]]></category>

		<guid isPermaLink="false">http://www.nkuttler.de//?p=54</guid>
		<description><![CDATA[Using the YAML CSS framework to build TYPO3 templates is relatively easy if you have some experience with TYPO3. The only thing that wasn&#8217;t obvious to me was how to integrate one of their navigation components, the vertical list navigation. But it turned out to be easy, you just need to represent the navigation levels [...]]]></description>
			<content:encoded><![CDATA[<p>Using the <a href="http://www.yaml.de/en/">YAML CSS framework</a> to build <a href="http://www.typo3.com">TYPO3</a> templates is relatively easy if you have some experience with TYPO3. The only thing that wasn&#8217;t obvious to me was how to integrate one of their <a href="http://www.yaml.de/en/documentation/css-components/components-for-navigation.html">navigation components</a>, the vertical list navigation.<span id="more-54"></span></p>
<p>But it turned out to be easy, you just need to represent the navigation levels correctly in your HTML. Then apply the CSS formats and you&#8217;re done. Here&#8217;s one way to configure the vertical navigation for YAML:</p>

<div class="wp_syntax"><div class="code"><pre class="typoscript" style="font-family:monospace;">foo <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #990000; font-weight: bold;">HMENU</span>
foo <span style="color: #009900;">&#123;</span>
    <span style="color: #cc0000;">1</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #990000; font-weight: bold;">TMENU</span>
    <span style="color: #cc0000;">1</span> <span style="color: #009900;">&#123;</span>
        expAll <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">1</span>
        wrap <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #3366CC;">&lt;ul&gt;</span><span style="color: #339933; font-weight: bold;">|</span><span style="color: #3366CC;">&lt;/ul&gt;</span>
        <span style="color: #990000; font-weight: bold;">NO</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">1</span>
        <span style="color: #990000; font-weight: bold;">NO</span> <span style="color: #009900;">&#123;</span>
            wrapItemAndSub <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #3366CC;">&lt;li&gt;</span><span style="color: #339933; font-weight: bold;">|</span><span style="color: #3366CC;">&lt;/li&gt;</span>
        <span style="color: #009900;">&#125;</span>
        <span style="color: #990000; font-weight: bold;">CUR</span> <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #cc0000;">1</span>
        <span style="color: #990000; font-weight: bold;">CUR</span> <span style="color: #009900;">&#123;</span>
            wrapItemAndSub <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #3366CC;">&lt;li&gt;</span><span style="color: #339933; font-weight: bold;">|</span><span style="color: #3366CC;">&lt;/li&gt;</span>
            ATagParams<span style="color: #339933; font-weight: bold;">=</span> id<span style="color: #339933; font-weight: bold;">=</span>&quot;active&quot;
        <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span>
    <span style="color: #cc0000;">2</span> <span style="color: #339933; font-weight: bold;">&lt;</span> <span style="color: #339933; font-weight: bold;">.</span>1
    2<span style="color: #339933; font-weight: bold;">.</span>wrap <span style="color: #339933; font-weight: bold;">=</span> <span style="color: #3366CC;">&lt;ul&gt;</span><span style="color: #339933; font-weight: bold;">|</span><span style="color: #3366CC;">&lt;/ul&gt;</span>
    <span style="color: #cc0000;">3</span> <span style="color: #339933; font-weight: bold;">&lt;</span> <span style="color: #339933; font-weight: bold;">.</span>2
    <span style="color: #aaa; font-style: italic;"># [...]</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://www.nkuttler.de/2008/09/21/typo3-and-the-yaml-vertical-navigation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
