CommonModule.html 602 B

123456789101112131415161718
  1. <div class="site-oneself" <if condition="!empty($max_width_style)">style="{{$max_width_style}}"</if>>
  2. <!-- link start -->
  3. <if condition="!empty($link['layout'])">
  4. <div class="layout-100">
  5. <div class="my-link o-h">
  6. <legend>{{:L('common_view_link_name')}}</legend>
  7. <if condition="!empty($link['data'])">
  8. <ul>
  9. <foreach name="link.data" item="v">
  10. <li><a href="{{$v.url}}" <if condition="$v['is_new_window_open'] eq 1">target="_blank"</if> title="{{$v.describe}}">{{$v.name}}</a></li>
  11. </foreach>
  12. </ul>
  13. </if>
  14. </div>
  15. </div>
  16. </if>
  17. <!-- link end -->
  18. </div>