Revisions
-
psynaptic revised this gist
Oct 7, 2012 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,7 @@ <nav class="breadcrumb" role="navigation"> <h2 class="element-invisible">{{ 'You are here'|t }}</h2> <ol> {% for item in breadcrumb %} {% if loop.first %} <li>{{ item }} » </li> {% elseif loop.last %} -
mortendk revised this gist
Oct 7, 2012 . 1 changed file with 10 additions and 15 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,19 +1,14 @@ <nav class="breadcrumb" role="navigation"> <h2 class="element-invisible">{{ 'You are here'|t }}</h2> <ol> {% for item in breadcrumb %} {% if loop.first %} <li>{{ item }} » </li> {% elseif loop.last %} <li>{{ item }}</li> {% else %} <li>{{ item }} » </li> {% endif %} {% endfor %} </ol> </nav> -
mortendk created this gist
Oct 7, 2012 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ <nav class="breadcrumb" role="navigation"> <h2 class="element-invisible">{{ 'You are here'|t }}</h2> <ol> {#% for item in breadcrumb %#} {% for item in breadcrumb if loop.first %} <li>{{ item }} first</li> {% endfor %} {% for item in breadcrumb %} <li>{{ item }} last</li> {% endfor %} {% for item in breadcrumb if loop.last %} <li>{{ item }} last</li> {% endfor %} </ol> </nav>