Difference between revisions of "Design.rythm"

From BITPlan Wiki
Jump to navigation Jump to search
 
(229 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
= Links =
 
= Links =
https://wiki.selfhtml.org/wiki/HTML/Tutorials/Alternativen_zu_Tabellen
+
* {{Link|target=MediaWiki:Bootstrap.rythm}}
 +
* {{Link|target=MediaWiki:BITPlanStyle.rythm}}
 +
* {{Link|target=MediaWiki:BITPlan.rythm}}
 +
* {{Link|target=MediaWiki:Menu.rythm}}
 +
 
 
= Source =
 
= Source =
 
<source lang='html4strict'>
 
<source lang='html4strict'>
@// Rythm template for the manager for the
+
@// Rythm template for the WikiCMS approach
@// Entity Attribute which is a DocElement
+
@include(wiki.MediaWiki.BITPlan.rythm)
@args() {
+
@BITPlanHeader(languageCode,title)
  String content;
+
<script src="http://q.bitplan.com/js/tagcanvas.min.js" type="text/javascript"></script>
}
 
<!DOCTYPE html>
 
<html lang="en">
 
<head>
 
  <meta charset="utf-8"/>
 
  <style>
 
/**
 
* 1. Avoid the IE 10-11 `min-height` bug.
 
* 2. Set `flex-shrink` to `0` to prevent some browsers from
 
*    letting these items shrink to smaller than their content's default
 
*    minimum size. See http://bit.ly/1Mn35US for details.
 
* 3. Use `%` instead of `vh` since `vh` is buggy in older mobile Safari.
 
*/
 
body
 
{
 
  padding:0;
 
  margin:0;
 
  font-family:Verdana;
 
}
 
 
.HolyGrail {
 
  display: flex;
 
  height: 100%; /* 1, 3 */
 
  flex-direction: column;
 
}
 
 
.HolyGrail-header,
 
.HolyGrail-footer {
 
  flex: none; /* 2 */
 
  color: #FF8000;
 
  height: 64px;
 
  background-color: #FCFCFC;
 
}
 
 
.HolyGrail-body {
 
  display: flex;
 
  flex: 1 0 auto; /* 2 */
 
  flex-direction: column;
 
  padding: var(--space);
 
  background-color: #FEFEFE;
 
}
 
 
.HolyGrail-content {
 
  margin-top: var(--space);
 
  margin-left: 10px;
 
}
 
 
.HolyGrail-nav {
 
  order: -1;
 
}
 
 
.HolyGrail-nav,
 
.HolyGrail-ads {
 
  padding: 1em;
 
  border-radius: 3px;
 
  background: rgba(147, 128, 108, 0.1);
 
}
 
 
@("@")media (--break-lg) {
 
  .HolyGrail-body {
 
    flex-direction: row;
 
  }
 
  .HolyGrail-content {
 
    flex: 1;
 
    padding: 0 var(--space-lg);
 
    margin: 0;
 
  }
 
  .HolyGrail-nav, .HolyGrail-ads {
 
    flex: 0 0 12em;
 
  }
 
}
 
 
h1 {
 
    color: #FF8000;
 
}
 
 
h2 {
 
    color: #FF8000;
 
}
 
 
h3 {
 
    color: #FF8000;
 
}
 
  </style>
 
 
</head>
 
</head>
 
<body>
 
<body>
   <div class="HolyGrail-body">
+
@BITPlanMenu(de)
    <header class="HolyGrail-header"><div style='float:left'><img height='64px' src='http://wiki.bitplan.com/images/wiki/thumb/6/63/Profiwikiicon.png/128px-Profiwikiicon.png'></div><div style='margin-top:10px'><span style='font-size:24px'><a href='http://profiwiki.bitplan.com'>Powered by Design</a></span></div></header>
+
   <div class="container">
    <main class="HolyGrail-content">@(content)</main>
+
  @(content)
   </div>
+
   </div><!-- /.container -->
  <footer class="HolyGrail-footer"> <div style="width: 50%; margin: 0px auto;">Copyright (c) 2017 <a href='http://www.bitplan.com'>BITPlan GmbH</a></div></footer>
+
@footer(de)
</body>
 
 
</source>
 
</source>
 +
[[Category:RythmTemplate]]

Latest revision as of 13:32, 6 July 2021

Links

Source

@// Rythm template for the WikiCMS approach
@include(wiki.MediaWiki.BITPlan.rythm)
@BITPlanHeader(languageCode,title)
<script src="http://q.bitplan.com/js/tagcanvas.min.js" type="text/javascript"></script>
</head>
<body>
@BITPlanMenu(de)
  <div class="container">
  @(content)
  </div><!-- /.container -->
@footer(de)