Rev 2928 | Rev 4013 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
1334 | bpr | 1 | !!# en-tête des classes de manière normalisée |
2 | !!# wims_read_parm: |
||
3 | !!# 1: presentation pour \ |
||
4 | classname\ |
||
5 | titre du module\ |
||
6 | sous-titre |
||
7 | !!# 2: titre\ |
||
8 | sous-titre en petit\ |
||
9 | |||
10 | |||
11 | !distribute line $wims_read_parm into number_,tit1_,tit2_,tit3_,tit4_ |
||
12 | |||
13 | !goto $number_ |
||
14 | |||
1390 | bpr | 15 | :1 !! in the original wims_classname is smaller than title |
1334 | bpr | 16 | <div id="wims_modu_title1"> |
17 | <div class="wims_classname">$tit1_</div> |
||
18 | <h1 class="wims_title">$tit2_</h1> |
||
19 | !if $tit3_ != |
||
2928 | obado | 20 | <h2 class="wims_subtitle">$tit3_</h2> |
1334 | bpr | 21 | !endif |
22 | <div class="wims_title_close"> </div> |
||
23 | </div><!--wims_modu_title1--> |
||
24 | !exit |
||
25 | |||
26 | :2 |
||
1357 | bpr | 27 | !! in the original, subtitle is tiny |
1334 | bpr | 28 | <div id="wims_modu_title2"> |
2929 | obado | 29 | <h1 class="wims_title">$tit1_</h1> |
1334 | bpr | 30 | !if $tit2_!= |
2929 | obado | 31 | <h2 class="wims_subtitle">$tit2_</h2> |
1334 | bpr | 32 | !endif |
33 | <div class="wims_title_close"> </div> |
||
34 | </div><!--wims_modu_title2--> |
||
35 | !exit |
||
1357 | bpr | 36 | |
37 | :3 |
||
38 | !! in the original subtitle is of same size as title |
||
39 | <div id="wims_modu_title3"> |
||
1390 | bpr | 40 | !if $tit1_!= |
1357 | bpr | 41 | <div class="wims_title">$tit1_</div> |
1390 | bpr | 42 | !endif |
1357 | bpr | 43 | !if $tit2_!= |
44 | <div class="wims_subtitle">$tit2_</div> |
||
45 | !endif |
||
46 | <div class="wims_title_close"> </div> |
||
47 | </div><!--wims_modu_title2--> |
||
48 | !exit |
||
49 |