MediaWiki:Frame.rythm

From BITPlan Wiki
Revision as of 19:40, 5 February 2017 by Wf (talk | contribs)
Jump to navigation Jump to search
@// Rythm template for the manager for the 
@// Entity Attribute which is a DocElement
@args() {
  String content;
}
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8"/>
  <style>
.HolyGrail {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.HolyGrail-body {
  display: flex;
  flex: 1;
  background-color: #EEEEEE;
  font-size: 18px;
  line-height: 21px;
}

.HolyGrail-content {
  flex: 1;
}

@("@")media (min-width: 768px) {
  .HolyGrail-body {
    flex-direction: row;
    flex: 1;
  }
  .HolyGrail-content {
    flex: 1;
  }
}

h1 {
    color: #FF8000;
}

h2 {
    color: #FF8000;
}

h3 {
    color: #FF8000;
}
  </style>
</head>
<body>
  <div class="HolyGrail-body">
    <header><img src='http://wiki.bitplan.com/images/wiki/thumb/6/63/Profiwikiicon.png/264px-Profiwikiicon.png'></header>
    <main class="HolyGrail-content">@(content)</main>
  </div>
  <footer>footer</footer>
</body>