|
Revision 119, 322 bytes
(checked in by dez, 7 years ago)
|
|
Adds the Edit toolbar to static pages for members of the html group
Fixes content in About/History?
Adds dir for TinyMCE
|
| Line | |
|---|
| 1 | {if $session->errormsg} |
|---|
| 2 | <div class="errorbar"> |
|---|
| 3 | <div><div><div> |
|---|
| 4 | {$session->errormsg} |
|---|
| 5 | </div></div></div> |
|---|
| 6 | </div> |
|---|
| 7 | {/if} |
|---|
| 8 | |
|---|
| 9 | {if $secondary} |
|---|
| 10 | <div id="primary"> |
|---|
| 11 | {/if} |
|---|
| 12 | <div id="primaryC"> |
|---|
| 13 | {$body} |
|---|
| 14 | {if $editable} |
|---|
| 15 | <div id="edit"> |
|---|
| 16 | Edit |
|---|
| 17 | </div> |
|---|
| 18 | {/if} |
|---|
| 19 | </div> |
|---|
| 20 | {if $secondary} |
|---|
| 21 | </div> |
|---|
| 22 | |
|---|
| 23 | <div id="secondary"> |
|---|
| 24 | {$secondary} |
|---|
| 25 | </div> |
|---|
| 26 | {/if} |
|---|