mall_server.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <div class="server">
  2. <div class="ensure">
  3. <a href="#"></a>
  4. <a href="#"></a>
  5. <a href="#"></a>
  6. <a href="#"></a>
  7. </div>
  8. <div class="mall_desc">
  9. {notempty name="article_list"}
  10. {foreach name="article_list" item="art" length='4'}
  11. <dl>
  12. <dt>{$art.ac_name}</dt>
  13. <dd>
  14. {notempty name="art.list"}
  15. {foreach name="art.list" item="list"}
  16. <a href="{if $list.article_url !=''}{$list.article_url}{else /}{:url('Article/show',['article_id'=>$list.article_id])}{/if}">{$list.article_title}</a>
  17. {/foreach}
  18. {/notempty}
  19. </dd>
  20. </dl>
  21. {/foreach}
  22. {/notempty}
  23. <dl class="mall_mobile">
  24. <dt>{$Think.lang.ds_mobile_mall}</dt>
  25. <dd>
  26. <a href="#" class="join">
  27. <img src="{$Think.HOME_SITE_URL}/qrcode?url={$Think.config.ds_config.h5_site_url}" width="105" height="105" >
  28. </a>
  29. </dd>
  30. </dl>
  31. </div>
  32. </div>