Difference between revisions of "Design.rythm"
Jump to navigation
Jump to search
Line 4: | Line 4: | ||
<source lang='html4strict'> | <source lang='html4strict'> | ||
@// Rythm template for the WikiCMS approach | @// Rythm template for the WikiCMS approach | ||
− | @ | + | @include(wiki.MediaWiki.BITPlan.rythm) |
− | + | @header(languageCode,title) | |
− | + | <script src="http://io.bitplan.com/js/tagcanvas.min.js" type="text/javascript"></script> | |
− | + | @style() | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</head> | </head> | ||
− | |||
<body> | <body> | ||
<header> | <header> | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
@if ("de".equals(languageCode)) { | @if ("de".equals(languageCode)) { | ||
<a class='logo' href='http://training.bitplan.com/index.php/Willkommen'> | <a class='logo' href='http://training.bitplan.com/index.php/Willkommen'> | ||
Line 99: | Line 17: | ||
<nav> | <nav> | ||
<a href='http://training.bitplan.com/index.php/Trainings'>Trainings</a> | <a href='http://training.bitplan.com/index.php/Trainings'>Trainings</a> | ||
− | <a href='http:// | + | <a href='http://www.bitplan.com/index.php/Leistungen'>Leistungen</a> |
− | <a href='http:// | + | <a href='http://www.bitplan.com/index.php/Kontakt'>Kontakt</a> |
</nav> | </nav> | ||
} else { | } else { | ||
Line 108: | Line 26: | ||
<nav> | <nav> | ||
<a href='http://training.bitplan.com/index.php/Trainings/en'>Trainings</a> | <a href='http://training.bitplan.com/index.php/Trainings/en'>Trainings</a> | ||
− | <a href='http:// | + | <a href='http://www.bitplan.com/index.php/Services'>Services</a> |
− | <a href='http:// | + | <a href='http://www.bitplan.com/index.php/Contact'>Contact</a> |
</nav> | </nav> | ||
} | } | ||
Line 116: | Line 34: | ||
<article>@(content)</article> | <article>@(content)</article> | ||
</main> | </main> | ||
− | + | @footer() | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
</source> | </source> |
Revision as of 16:40, 3 November 2017
Links
Source
@// Rythm template for the WikiCMS approach
@include(wiki.MediaWiki.BITPlan.rythm)
@header(languageCode,title)
<script src="http://io.bitplan.com/js/tagcanvas.min.js" type="text/javascript"></script>
@style()
</head>
<body>
<header>
@if ("de".equals(languageCode)) {
<a class='logo' href='http://training.bitplan.com/index.php/Willkommen'>
<img src='http://wiki.bitplan.com/images/wiki/7/7a/BITPlanLogo2012FontLess.svg' width='100%'>
</a>
<nav>
<a href='http://training.bitplan.com/index.php/Trainings'>Trainings</a>
<a href='http://www.bitplan.com/index.php/Leistungen'>Leistungen</a>
<a href='http://www.bitplan.com/index.php/Kontakt'>Kontakt</a>
</nav>
} else {
<a class='logo' href='http://training.bitplan.com/index.php/Welcome'>
<img src='http://wiki.bitplan.com/images/wiki/7/7a/BITPlanLogo2012FontLess.svg' width='100%'>
</a>
<nav>
<a href='http://training.bitplan.com/index.php/Trainings/en'>Trainings</a>
<a href='http://www.bitplan.com/index.php/Services'>Services</a>
<a href='http://www.bitplan.com/index.php/Contact'>Contact</a>
</nav>
}
</header>
<main>
<article>@(content)</article>
</main>
@footer()