UNPKG

pip-webui

Version:

HTML5 UI for LOB applications

69 lines (59 loc) 2.59 kB
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <title>WebUI Framework. PipDevs Team</title> <link rel="stylesheet" href="../lib/pip-webui-lib.css"/> <link rel="stylesheet" href="../lib/pip-webui-nav.css"/> <link rel="stylesheet" href="../lib/pip-webui-css.css"/> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700,400italic"> <style> .pip-title > h1 { margin-top: 20px; margin-bottom: 5px; } .pip-title > div { margin-bottom: 30px; } .pip-section > h2 { margin-bottom: 5px; } </style> <script src="../lib/pip-webui-lib.js"></script> <script src="../lib/pip-webui-nav.js"></script> <script> app = angular.module('app', ['ngMaterial', 'pipNav']); </script> </head> <body ng-app="app" class="layout-column layout-align-start-center" md-theme="{{ $theme || 'blue' }}" > <section> <div class="pip-title"> <h1>WebUI Framework. PipDevs Team</h1> <div>(c) Digital Living Software Corp.</div> </div> <section class="pip-section"> <h2>Layouts</h2> <ul> <li><a href="simple/index.html">Simple / Plain</a></li> <li><a href="document/index.html">Single Document</a></li> <li><a href="multi_document/index.html">Multi Document</a></li> <li><a href="card/index.html">Card</a></li> <li><a href="tiles/index.html">Tiles</a></li> <li><a href="tile_groups/index.html">Tile Groups</a></li> <li><a href="dialog/index.html">Dialog</a></li> <li><a href="split/index.html">Split View</a></li> </ul> </section> <section class="pip-section"> <h2>References</h2> <ul> <li><a href="https://material.angularjs.org/latest/#/">Angular Material Intro</a></li> <li><a href="https://github.com/angular/material">Angular Material GitHub</a></li> <li><a href="https://www.google.com/design/spec/material-design/introduction.html">Material Design Guidelines</a></li> <li><a href="http://design.google.com">Google Design References</a></li> </ul> </section> </section> </body> </html>