follow.html 804 B

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