Grid.rythm

From BITPlan Wiki
Revision as of 15:32, 8 November 2017 by Wf (talk | contribs)
Jump to navigation Jump to search

Links

Rythm template

@// Rythm template for the WikiCMS approach
@include(wiki.MediaWiki.Bootstrap.rythm)
@header(lang,title)
@bootstrap()
</head>
<body>
<div class='container'>
@{ 
  int cols[]={1,2,3,4,6,12};
}
@for (int col:cols) {
  <div class='row'>
  @for (int cindex=1;cindex<=col;cindex++) {
     <div class='.col-xs-@(cols)'>@cindex</div>
  }
  </div>
}
</div>
@(content)
</body>
</html>