Difference between revisions of "MediaWiki:BITPlan.rythm"
Jump to navigation
Jump to search
Line 24: | Line 24: | ||
} | } | ||
@showMenu(de,menu) | @showMenu(de,menu) | ||
+ | } | ||
+ | @//BITPlan form handling | ||
+ | @def BITPlanForm(boolean de,Form form){ | ||
+ | @formvalidate(form) | ||
+ | </head> | ||
+ | <body> | ||
+ | <div class="container"> | ||
+ | @BITPlanMenu(de) | ||
+ | @showform(form) | ||
+ | @formDebug(form) | ||
+ | </div><!-- /.container --> | ||
+ | @footer(de) | ||
} | } | ||
</source> | </source> | ||
[[Category:RythmTemplate]] | [[Category:RythmTemplate]] |
Revision as of 15:46, 9 November 2017
Links
Rythm Template
@// Rythm template for the WikiCMS approach
@include(wiki.MediaWiki.Bootstrap.rythm)
@include(wiki.MediaWiki.BITPlanStyle.rythm)
@include(wiki.MediaWiki.Menu.rythm)
@// BITPlan header
@def BITPlanHeader(String languageCode, String title) {
@header(languageCode,title)
@bootstrap()
@style()
}
@// BITPlan menu
@def BITPlanMenu(boolean de){
@{
Menu menu=new Menu("http://training.bitplan.com/index.php/Welcome","http://training.bitplan.com/index.php/Willkommen","http://wiki.bitplan.com/images/wiki/7/7a/BITPlanLogo2012FontLess.svg");
MenuItem menuItems[]={
new MenuItem("training","Trainings","http://training.bitplan.com/index.php/Trainings/en","Trainings","http://training.bitplan.com/index.php/Trainings"),
new MenuItem("services","Services","http://www.bitplan.com/index.php/Services","Leistungen","http://www.bitplan.com/index.php/Leistungen"),
new MenuItem("contact","Contact","http://www.bitplan.com/index.php/Contact","Kontakt","http://www.bitplan.com/index.php/Kontakt")
};
menu.addMenuItems(menuItems);
}
@showMenu(de,menu)
}
@//BITPlan form handling
@def BITPlanForm(boolean de,Form form){
@formvalidate(form)
</head>
<body>
<div class="container">
@BITPlanMenu(de)
@showform(form)
@formDebug(form)
</div><!-- /.container -->
@footer(de)
}