Rev 2929 | Rev 4529 | 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 | |||
4013 | bpr | 15 | :1 |
16 | !! in the original wims_classname is smaller than title |
||
1334 | bpr | 17 | <div id="wims_modu_title1"> |
18 | <div class="wims_classname">$tit1_</div> |
||
19 | <h1 class="wims_title">$tit2_</h1> |
||
20 | !if $tit3_ != |
||
2928 | obado | 21 | <h2 class="wims_subtitle">$tit3_</h2> |
1334 | bpr | 22 | !endif |
23 | <div class="wims_title_close"> </div> |
||
24 | </div><!--wims_modu_title1--> |
||
25 | !exit |
||
26 | |||
27 | :2 |
||
1357 | bpr | 28 | !! in the original, subtitle is tiny |
1334 | bpr | 29 | <div id="wims_modu_title2"> |
2929 | obado | 30 | <h1 class="wims_title">$tit1_</h1> |
1334 | bpr | 31 | !if $tit2_!= |
2929 | obado | 32 | <h2 class="wims_subtitle">$tit2_</h2> |
1334 | bpr | 33 | !endif |
34 | <div class="wims_title_close"> </div> |
||
35 | </div><!--wims_modu_title2--> |
||
36 | !exit |
||
1357 | bpr | 37 | |
38 | :3 |
||
39 | !! in the original subtitle is of same size as title |
||
40 | <div id="wims_modu_title3"> |
||
1390 | bpr | 41 | !if $tit1_!= |
1357 | bpr | 42 | <div class="wims_title">$tit1_</div> |
1390 | bpr | 43 | !endif |
1357 | bpr | 44 | !if $tit2_!= |
45 | <div class="wims_subtitle">$tit2_</div> |
||
46 | !endif |
||
47 | <div class="wims_title_close"> </div> |
||
48 | </div><!--wims_modu_title2--> |
||
49 | !exit |
||
50 |