Difference between revisions of "Footer Examples"
From Tweeki
| Line 63: | Line 63: | ||
<li id="footer-places-disclaimer">[[Tweeki:General disclaimer|Disclaimers]]</li> | <li id="footer-places-disclaimer">[[Tweeki:General disclaimer|Disclaimers]]</li> | ||
</ul><ul id="footer-custom"> | </ul><ul id="footer-custom"> | ||
| + | <li class="dropup">[[Welcome|My Page]]</li> | ||
| + | </ul> | ||
| + | }} | ||
| + | |||
| + | === Show Only Custom Content === | ||
| + | |||
| + | {{footer-settings | ||
| + | |msg-footer-custom=My Page | ||
| + | |config-options= | ||
| + | $wgTweekiSkinHideLoggedin['footer-custom'] = false; | ||
| + | $wgTweekiSkinHideAll['footer-places'] = true; | ||
| + | |content=<ul id="footer-custom"> | ||
<li class="dropup">[[Welcome|My Page]]</li> | <li class="dropup">[[Welcome|My Page]]</li> | ||
</ul> | </ul> | ||
}} | }} | ||
Revision as of 20:10, 10 March 2017
Default
By default, footer-info is hidden for all users, and footer-custom (with a login link as standard content) will only be shown to anonymous users.
This is how the footer looks for anonymous users:
| CONFIG | Messages | Configuration Options |
|---|---|---|
|
$wgTweekiSkinHideAll['footer-info'] = true;
$wgTweekiSkinHideLoggedin['footer-custom'] = true; | |
| RESULT | ||
Settings for tweeki.thai-land.at
| CONFIG | Messages | Configuration Options |
|---|---|---|
| $wgTweekiSkinHideAll['footer-icons'] = true; | ||
| RESULT | ||
footer-info contains information about the time of the last edit and about the copyright.
You can additionally set $wgMaxCredits to a non-zero value to show one, some or all of the contributors to a page.
| CONFIG | Messages | Configuration Options |
|---|---|---|
| $wgTweekiSkinHideAll['footer-info'] = false; | ||
| RESULT | ||
Add Custom Content
| CONFIG | Messages | Configuration Options |
|---|---|---|
|
$wgTweekiSkinHideLoggedin['footer-custom'] = false; | |
| RESULT | ||
Show Only Custom Content
| CONFIG | Messages | Configuration Options |
|---|---|---|
|
$wgTweekiSkinHideLoggedin['footer-custom'] = false;
$wgTweekiSkinHideAll['footer-places'] = true; | |
| RESULT | ||