<!DOCTYPE html>
<html onload="">

<head>
    <title>webUCP-WebSite-Example</title>
    <meta charset="utf-8">
    <meta id="viewport" name="viewport" content="width=device-width, initial-scale=1.0">

    <script src="/EAMD.ucp/Components/tla/EAMD/UcpComponentSupport/0.1.0/src/js/UseUcpComponentDependencies.js" type="text/javascript"></script>
    <link href="/EAMD.ucp/Components/org/JQuery/3.2.1/JQuery.component.xml" rel="ucpComponent" type="text/html">

    <link href="/EAMD.ucp/Components//com/twitter/Bootstrap/3.3.7/Bootstrap.component.xml" rel="ucpComponent" type="text/html">

    <link href="/EAMD.ucp/Components/com/twitter/Bootstrap/Panel/0.1.0/Panel.component.xml" rel="ucpComponent" type="text/html">
<!--
    <script src="/EAMD.ucp/Components/org/JQuery/3.2.1/dist/jquery.min.js" type="text/javascript" onload="console.log('jQuery loaded')"></script>
-->
    <style type="text/css">
        html,
        body {
            height: 100%;
            overflow: hidden
        }
        
        .fullHeight,
        .fullHeight .jumbotron {
            height: 100%;
        }
        
        .width1 {
            width: 100%
        }
        
        .width2 {
            width: 200%
        }
        
        .width3 {
            width: 300%
        }
        
        .width4 {
            width: 400%
        }
        
        .width-2 {
            width: 50%
        }
        
        header,
        footer,
        .panel-heading,
        .panel-footer {
            height: 10%;
            background-color: lightblue;
        }
        
        .content,
        .panel-body {
            height: 80%;
            overflow-y: scroll
        }
    </style>
</head>

<body>
    <div class="row fullHeight" data-is="x-panel" data-properties='{"heading":"<b>WODA</b><br>Welcome admin","footer":"unleash the power","classes":"fullHeight col-sm-8"}'>
        <h1>Hello World from within a UcpComponent: </h1>
        /EAMD.ucp/Components/com/twitter/Bootstrap/Panel/0.1.0/Panel.component.xml
        <div class="row">
            <x-panel data-properties='{"heading":"X-PANEL","footer":"with data-properties","classes":"col-sm-4"}'>
            </x-panel>
            <x-panel heading='X_PANEL' footer='with Attributes' classes="col-sm-4">
                <div data-is="x-panel" heading='DIV DATA-IS=X_PANEL' footer='Embeded with Attributes' classes="col-sm-10">
                </div>
            </x-panel>
        </div>
    </div>
</body>

</html>