Alois Mahdal 11 лет назад
Родитель
Сommit
60579cc56a
2 измененных файлов: 83 добавлений и 0 удалений
  1. 78
    0
      views/html.tt
  2. 5
    0
      views/main.css

+ 78
- 0
views/html.tt Просмотреть файл

@@ -0,0 +1,78 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+
4
+    <head>
5
+        <title></title>
6
+        <meta charset="utf-8" />
7
+        <meta x-st-slave="Params: a=b" />
8
+        <meta x-st-slave="Master Revision: 1366856496" />
9
+        <meta x-st-slave="Master: /release/rc.stm" />
10
+        <link rel="stylesheet" href="main.css" />
11
+        <link rel="alternate" href="/st/release/rc.stm?a=b" />
12
+    </head>
13
+    <body>
14
+
15
+        <nav>
16
+            <ul>
17
+                <li>prev</li>
18
+                <li>top</li>
19
+                <li>next</li>
20
+            </ul>
21
+        </nav>
22
+
23
+        <aside id="errbox">
24
+
25
+            <h1>SUGAR-TRAIL WARNINGS</h1>
26
+
27
+            <blockquote id="warnings">
28
+                <p>warning: undecided condition: proto==imap; did you forget to specify proto?</p>
29
+                <p>warning: undecided condition: proto==pop3; did you forget to specify proto?</p>
30
+                <p>warning: undecided condition: os==wxx; did you forget to specify os?</p>
31
+                <p>warning: undecided condition: os=~w7*; did you forget to specify os?</p>
32
+                <p>warning: undecided condition: proto==pop3; did you forget to specify proto?</p>
33
+            </blockquote>
34
+
35
+        </aside>
36
+
37
+        <form>
38
+
39
+            <header>
40
+                <p>This is the release client protocol.  Here the body starts...</p>
41
+            </header>
42
+
43
+            <article>
44
+                <time datetime="2010-01-12">yeah</time>
45
+                <header>
46
+                    <h1><a href="#" rel="bookmark"
47
+                            title="link to this test">Main</a>
48
+                    </h1>
49
+                </header>
50
+
51
+                <ol>
52
+                    <li>Check A
53
+                        <ul>
54
+                            <li>result is a</li>
55
+                        </ul>
56
+                    </li>
57
+                    <li>Check IMAPIsm</li>
58
+                    <li>Check POP3ism
59
+                        <ul>
60
+                            <li>result is OK</li>
61
+                    </ul></li>
62
+                    <li>Some XP thing</li>
63
+                    <li>Some Win7 thing</li>
64
+                    <li>Some amd64 thing</li>
65
+                </ol>
66
+
67
+                <p>Some final comments.</p>
68
+
69
+            </article>
70
+
71
+        </form>
72
+
73
+        <footer>
74
+            <p>(c) Me</p><p>&#167; 2013 <a href="#">Alois Mahdal</a></p>
75
+        </footer>
76
+
77
+    </body>
78
+</html>

+ 5
- 0
views/main.css Просмотреть файл

@@ -0,0 +1,5 @@
1
+#errbox { color: red }
2
+
3
+body { background-color: #ffc }
4
+
5
+article ol > li { border: 1px solid gray }