pip-webui
Version:
HTML5 UI for LOB applications
79 lines (69 loc) • 3.24 kB
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="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>
app = angular.module('app', ['ngMaterial']);
</script>
</head>
<body ng-app="app" class="layout-column layout-align-start-center">
<section>
<div class="pip-title">
<h1>WebUI Framework. PipDevs Team</h1>
<div>(c) Digital Living Software Corp.</div>
</div>
<div layout=row>
<section class="pip-section">
<h2>Core Services</h2>
<ul>
<li><a href="core_services/index.html#/translate">Translate</a></li>
<!--li><a href="core_services/index.html#/error">Error</a></li-->
<li><a href="core_services/index.html#/transaction">Transaction</a></li>
<li><a href="core_services/index.html#/timer">Timer</a></li>
<li><a href="core_services/index.html#/date_format">Date Format</a></li>
<li><a href="core_services/index.html#/system_info">System Info</a></li>
<li><a href="core_services/index.html#/themes">Themes</a></li>
</ul>
</section>
<div class="w24"></div>
<section class="pip-section">
<h2>Behaviors</h2>
<ul>
<li><a href="behaviors/index.html#/draggable">Draggable</a></li>
<li><a href="behaviors/index.html#/draggable_input">Draggable with input fields</a></li>
<li><a href="behaviors/index.html#/focused">Focused</a></li>
<li><a href="behaviors/index.html#/selected">Selected</a></li>
<li><a href="behaviors/index.html#/infinite_scroll">Infinite Scroll</a></li>
<li><a href="behaviors/index.html#/unsaved_changes">Unsaved changes</a></li>
</ul>
</section>
</div>
<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>