summaryrefslogtreecommitdiffabout
Unidiff
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--htdocs/ancestry/page.chtml2
-rw-r--r--htdocs/style.css5
2 files changed, 4 insertions, 3 deletions
diff --git a/htdocs/ancestry/page.chtml b/htdocs/ancestry/page.chtml
index 5bec31e..b9f3434 100644
--- a/htdocs/ancestry/page.chtml
+++ b/htdocs/ancestry/page.chtml
@@ -1,28 +1,28 @@
1% html(); return; /* vim:set ft=sitecing: */ 1% html(); return; /* vim:set ft=sitecing: */
2%%var bool b_strict = true; 2%%var bool b_strict = true;
3<%decl> 3<%decl>
4 using std::string; 4 using std::string;
5</%decl> 5</%decl>
6<%method void html() %> 6<%method void html() %>
7% if(b_strict){ 7% if(b_strict){
8 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> 8 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
9% }else{ 9% }else{
10 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd"> 10 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "DTD/xhtml1-transitional.dtd">
11% } 11% }
12 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> 12 <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
13 <head> 13 <head>
14% __SCIF->headers["Content-Type"] = "text/html"; 14% __SCIF->headers["Content-Type"] = "text/html; charset=utf-8";
15 <title>site-C-ing: <% title() %></title> 15 <title>site-C-ing: <% title() %></title>
16 <meta name="copyright" content="Copyright (c) 2005 Klever Group"/> 16 <meta name="copyright" content="Copyright (c) 2005 Klever Group"/>
17 <link rel="stylesheet" href="/style.css" type="text/css" /> 17 <link rel="stylesheet" href="/style.css" type="text/css" />
18 </head> 18 </head>
19 <body> 19 <body>
20% body(); 20% body();
21 </body> 21 </body>
22 </html> 22 </html>
23</%method> 23</%method>
24<%codemethod string title() %> 24<%codemethod string title() %>
25 return "untitled"; 25 return "untitled";
26</%codemethod> 26</%codemethod>
27<%method void body() %> 27<%method void body() %>
28</%method> 28</%method>
diff --git a/htdocs/style.css b/htdocs/style.css
index 28aa8df..27721d4 100644
--- a/htdocs/style.css
+++ b/htdocs/style.css
@@ -1,18 +1,18 @@
1body { 1body {
2 font-family: sans-serif; 2 font-family: arial,helvetica, sans-serif;
3 font-size: 11pt; 3 font-size: 11pt;
4} 4}
5 5
6a:link, a:visited { 6a:link, a:visited {
7 text-decoration: none; 7 text-decoration: none;
8} 8}
9a:link:hover, a:visited:hover { 9a:link:hover, a:visited:hover {
10 text-decoration: underline; 10 text-decoration: underline;
11} 11}
12p { 12p {
13 margin: 1ex 1em; 13 margin: 1ex 1em;
14 text-indent: 2em; 14 text-indent: 2em;
15 text-align: justify; 15 text-align: justify;
16} 16}
17p.note { 17p.note {
18 margin-left: 10%; 18 margin-left: 10%;
@@ -221,33 +221,34 @@ ul.quickref.toc {
221 margin: 1em 20%; 221 margin: 1em 20%;
222 font-size: 90%; 222 font-size: 90%;
223 border: solid 1px gray; 223 border: solid 1px gray;
224} 224}
225 225
226dl.quickref { 226dl.quickref {
227 margin: 1ex 1em; 227 margin: 1ex 1em;
228 overflow: hidden; 228 overflow: hidden;
229} 229}
230dl.quickref dt { 230dl.quickref dt {
231 margin: 0.4ex; 231 margin: 0.4ex;
232 padding: 2px 0.5ex; 232 padding: 2px 0.5ex;
233 background: #e0e0e0; 233 background: #e0e0e0;
234 display: compact; 234 display: compact;
235} 235}
236dl.quickref dd { 236dl.quickref dd {
237 margin: 0px 0.4ex 0.4ex 10%; 237 margin: 0px 1% 0.4ex 10%;
238 width: 89%;
238 padding: 0px; 239 padding: 0px;
239 border: 1px solid gray; 240 border: 1px solid gray;
240 overflow: hidden; 241 overflow: hidden;
241} 242}
242dl.quickref code kbd { 243dl.quickref code kbd {
243 font-style: italic; 244 font-style: italic;
244 color: #0000c0; 245 color: #0000c0;
245} 246}
246dl.quickref blockquote { 247dl.quickref blockquote {
247 background: #ffffc0; 248 background: #ffffc0;
248 padding: 4px; 249 padding: 4px;
249 border: dotted 1px gray; 250 border: dotted 1px gray;
250 font-family: monospace; 251 font-family: monospace;
251 font-size: 90%; 252 font-size: 90%;
252 overflow: hidden; 253 overflow: hidden;
253} 254}