blob: 42fecb1a23c6434afc3dd82041f9edfb83a04e85 (
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
|
<%pre>
</%pre>
<%args>
</%args>
<{
}>
<%def header_box>
<%args>
content[];
htmlcode;
</%args>
<{
}>
<div class="head_box_l">
<div class="head_box_m">
<div class="head_box_r">
<table class="head_box_text"><tr><td>
% for(content_type::const_iterator it = content.begin(); it != content.end(); ++it) {
<$ *it $>
% }
% reply.out() << htmlcode;
</td></tr></table>
</div>
</div>
</div>
</%def>
|