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 | ||
+ | @import com.bitplan.smw.PropertyMap | ||
@args() { | @args() { | ||
String content, | String content, | ||
String lang, | String lang, | ||
String title, | String title, | ||
− | + | PropertyMap smwprops; | |
} | } | ||
<!doctype html> | <!doctype html> |
Revision as of 19:26, 29 October 2017
Links
Source
@// Rythm template for the WikiCMS approach
@import com.bitplan.smw.PropertyMap
@args() {
String content,
String lang,
String title,
PropertyMap smwprops;
}
<!doctype html>
<html lang="@(lang)">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>@(title)</title>
<script src="http://io.bitplan.com/js/tagcanvas.min.js" type="text/javascript"></script>
<script src="//maps.googleapis.com/maps/api/js?language=en"></script>
<style>
body{
margin: 2vw auto;
max-width: 60em;
}
* {
font-family: Arial, Helvetica, sans-serif;
}
header,footer{
background-color: #FFFFFF;
text-align: center;
}
footer {
clear:both;
}
nav a:link,a:visited {
text-decoration: none;
}
a:hover {
color: #FFFFFF;
background-color: rgba(255,128,00,0.5);
}
main,article{
}
main {
padding: 2vw;margin:1vw;
}
h1,h2,h3 {
color: #FF8000;
}
.floatleft {
float: left;
margin: 1vw;
}
.floatright {
float: right;
margin: 1vw;
}
.logo {
width: 6vw;
float:left;
}
.copyright {
font-size: 0.5vw;
}
.imprint {
font-size: 0.8vw;
}
</style>
</head>
<body>
<header>
@{
Object languageCodeObj=smwprops.get("Language_code");
String languageCode="de";
if (languageCodeObj!=null) {
languageCode=languageCodeObj.toString();
}
}
@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>
</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>
</nav>
}
</header>
<main>
<article>@(content)</article>
</main>
<footer>
<nav>
<span class='copyright'>© 2017
<a href='http://www.bitplan.com'>BITPlan GmbH.</a> Alle Rechte vorbehalten.
</span>
@if ("de".equals(languageCode)) {
<span class='imprint'><a href='http://training.bitplan.com/index.php/Impressum'>Impressum</a></span>
} else {
<span class='imprint'><a href='http://training.bitplan.com/index.php/Imprint'>Imprint</a></span>
}
</nav>
</footer>
</body>
</html>