12345678910111213141516171819202122232425262728293031323334 |
- {include file="public/header" /}
- <style>
- .main{height: 100%}
- .left,.right{
- float: left;
- height: 100%;
- }
- .left{
- width: 15%;
- max-width: 200px;
- }
- .right{
- width: 85%;
- }
- </style>
- <div class="main" >
- <div class="left">
- {include file="public/menu" /}
- </div>
- <div class="right" >
- <iframe src="{:url('device/index')}" frameborder="0" name="right" style="width: 100%;height: 100%;"></iframe>
- </div>
- <div style="clear: both"></div>
- </div>
- {include file="public/footer" /}
|