summaryrefslogtreecommitdiffabout
path: root/htdocs/ancestry/layout.chtml
blob: df34ad7a6225e581aae3f556b794ed815718b83f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
% html(); return; /* vim:set ft=sitecing: */
%%derive page = "/ancestry/page.chtml";
<%decl>
 #define PN_PREV(h,d,t) urlPrev=h; descPrev=d; titlePrev=t;
 #define PN_NEXT(h,d,t) urlNext=h; descNext=d; titleNext=t;
</%decl>
%%impl #include <sitecing/util.h>
%%impl #include "acconfig.h"
%%var bool b_svn = false;
%%var std::string urlPrev;
%%var std::string descPrev;
%%var std::string titlePrev;
%%var std::string urlNext;
%%var std::string descNext;
%%var std::string titleNext;
<%constructor>
 if(strstr(PACKAGE_STRING,"svn"))
  b_svn = true;
</%constructor>
<%method void prevnext() %>
% if(urlPrev.empty() && urlNext.empty()) return;
% if(descPrev.empty() && descNext.empty()) return;
 <div class="prevnext">
% if(!(urlPrev.empty() || descPrev.empty())) {
   <a class="prevnext-prev" href="<% urlPrev %>" title="<% sitecing::html_escape(titlePrev.empty()?descPrev:titlePrev) %>"><% sitecing::html_escape(descPrev) %></a>
% }
% if(!(urlNext.empty() || descNext.empty())) {
   <a class="prevnext-next" href="<% urlNext %>" title="<% sitecing::html_escape(titleNext.empty()?descNext:titleNext) %>"><% sitecing::html_escape(descNext) %></a>
% }
 </div>
</%method>
<%method void body() %>
 <div id="content">
  <%code>
   if(!access(WEB_RUN_ROOT "/conf/banner_top",R_OK)) {
    pass_file_through(WEB_RUN_ROOT "/conf/banner_top");
   }
   prevnext();
   content();
   if(b_strict && !access(WEB_RUN_ROOT "/conf/banner_bottom",R_OK)) {
    pass_file_through(WEB_RUN_ROOT "/conf/banner_bottom");
   }
  </%code>
 </div>
 <div id="sidepanel">
% sidepanel();
 </div>
</%method>
<%method void content() %>
</%method>
<%method void sidepanel() %>
 <h1><% PACKAGE_STRING %></h1>
% if(b_svn) {
   <h2>The site is running source from the source repository which may differ
   from the one available for download. You can check it out from the <a
   href="http://kin.klever.net/sitecing/repository">source repository</a>.</h2>
% }
% /* thank MSIE for this awful formatting */
 <ul><li><a href="/" title="introduction to site-C-ing">overview</a><ul><li><a href="/simple" title="building a really simple page">simple page</a></li></ul></li><li><a href="/exceptions/" title="exceptions handling">exceptions</a><ul><li><a href="/exceptions/preprocess" title="preprocessor errors">preprocess</a></li><li><a href="/exceptions/compile" title="compiler errors">compile-time</a></li><li><a href="/exceptions/runtime" title="runtime exceptions">runtime</a></li></ul></li><li><a href="/quickref/" title="quick reference">reference</a><ul><li><a href="/quickref/metasyntax" title="meta syntax">syntax</a></li></ul></li><li><a href="/sources" title="browse this site source files">sources</a></li></ul>
  <%code>
   if(!access(WEB_RUN_ROOT "/conf/banner_side",R_OK)) {
    pass_file_through(WEB_RUN_ROOT "/conf/banner_side");
   }
  </%code>
 <ul><li><a href="http://kin.klever.net/sitecing/" title="main site-C-ing page">site-C-ing</a></li><li><a href="http://kin.klever.net/sitecing/sources" title="site-C-ing download page">downloads</a></li></ul>
 <div class="copyright">
  &copy; <a href="http://www.klever.net/">Klever Group</a>
 </div>
</%method>