| 1234567891011121314151617181920212223 |
- <include file="public@header"/>
- <style>
- .input-text{width:100%;padding:6px 14px;line-height: 1.42857143;color:#555;min-height:32px;}
- .text-area{white-space: pre;word-wrap: break-word;}
- </style>
- </head>
- <body>
- <div class="row" style="margin:0;">
- <div class="col-md-offset-2 col-md-8" style="padding-top:20px;">
- <div class="list-group">
- <volist name='list' id="vo">
- <a href="#" class="list-group-item list-group-item-action flex-column align-items-start" >
- <div class="d-flex w-100 justify-content-between">
- <h5 class="mb-1">{$vo.content}</h5>
- <small class="text-muted">{$vo.create_time}</small>
- </div>
- </a>
- </volist>
- </div>
- </div>
- </div>
- </body>
- </html>
|