source: documentViewer/zpt/toc_none.zpt @ 511:551ca1641a5e

elementtree
Last change on this file since 511:551ca1641a5e was 491:fe319aa0ba30, checked in by casties, 13 years ago

added toc_none template.

File size: 1.0 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml">
4<head>
5<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6</head>
7<body>
8  <!-- block used for main content area -->
9  <div class="toc-none" metal:define-macro="main">
10    <ul class="switcher">
11      <li>
12        <a tal:attributes="href python:here.getLink('tocMode','thumbs')">Thumbnails</a>
13      </li>
14      <li tal:condition="python:docpath and docinfo.get('numTocEntries', None)">
15        <a tal:attributes="href python:here.getLink('tocMode','text')">Content</a>
16      </li>
17      <li tal:condition="python:docpath and docinfo.get('numFigureEntries', None)">
18        <a tal:attributes="href python:here.getLink('tocMode','figures')">Figures</a>
19      </li>
20      <li class="sel">
21        <a tal:attributes="href python:here.getLink('tocMode','none')">None</a>
22      </li>
23    </ul>
24    <div class="content"></div>
25  </div>
26  <!-- toc -->
27</body>
28</html>
Note: See TracBrowser for help on using the repository browser.