@tririga/tri-template
Version:
A simple tool for generating IBM TRIRIGA UX view skeletons from available templates.
30 lines (24 loc) • 565 B
HTML
<link rel="import" href="../triplat-view-behavior/triplat-view-behavior.html">
<link rel="import" href="../paper-material/paper-material.html">
<dom-module id="@element">
<template>
<style>
paper-material {
padding: 20px;
background-color: white;
margin-top: 30px;
}
</style>
<div class="layout horizontal center-justified">
<paper-material z="1">
Starter View for <b>@element</b>
</paper-material>
</div>
</template>
</dom-module>
<script>
Polymer({
is: "@element",
behaviors: [TriPlatViewBehavior]
});
</script>