]> gitweb.factorcode.org Git - factor.git/blob - extra/webapps/help/search.xml
chloe/html: switch to HTML5 templates
[factor.git] / extra / webapps / help / search.xml
1 <?xml version='1.0' ?>
2 <!DOCTYPE html>
3 <t:chloe xmlns:t="http://factorcode.org/chloe/1.0">
4
5 <html xmlns="http://www.w3.org/1999/xhtml">
6     <head>
7
8         <t:base t:href="$help-webapp/content/" />
9         <title>Search - Factor Documentation</title>
10         <style>
11             a:link { text-decoration: none; color: #104e8b; }
12             a:visited { text-decoration: none; color: #104e8b; }
13             a:active { text-decoration: none; color: #104e8b; }
14             a:hover { text-decoration: underline; color: #104e8b; }
15
16             body {
17                 font-family: sans-serif; font-style: normal
18                 font-size: 12pt;
19             }
20
21             .navbar {
22                 background-color: #f3f2ea;
23                 padding: 5px;
24                 border: 1px solid #ccc;
25                 font: 9pt sans-serif;
26                 margin-bottom: 10px;
27             }
28
29             h2 { background-color: #f5f5f5; color: #222; }
30             hr { border: 0; background-color: #ccc; color: #ccc; height: 1px; }
31         </style>
32     </head>
33
34     <body>
35                 <t:html t:name="navbar"/>
36
37         <t:if t:value="articles">
38             <h2>Articles</h2>
39             <ul>
40                 <t:each t:name="articles">
41                     <li> <t:link t:name="value" /> </li>
42                 </t:each>
43             </ul>
44         </t:if>
45
46         <t:if t:value="vocabs">
47             <h2>Vocabularies</h2>
48             <ul>
49                 <t:each t:name="vocabs">
50                     <li> <t:link t:name="value" /> </li>
51                 </t:each>
52             </ul>
53         </t:if>
54
55         <t:if t:value="words">
56             <h2>Words</h2>
57             <ul>
58                 <t:each t:name="words">
59                     <li> <t:link t:name="value" /> </li>
60                 </t:each>
61             </ul>
62         </t:if>
63
64         <hr />
65         <p>This is the <a href="http://factorcode.org" target="_top">Factor</a>
66         documentation, generated offline from a
67         <code>load-all</code> image. If you want, you can also browse the
68         documentation from within the <a href="http://factorcode.org" target="_top">Factor</a> UI.</p>
69
70     </body>
71 </html>
72
73 </t:chloe>