begin of thinksaas 3.68

Signed-off-by: kevin <kevin@lmve.net>
This commit is contained in:
2023-06-22 13:33:25 +08:00
commit 963ec1b2ea
2746 changed files with 331806 additions and 0 deletions
+33
View File
@@ -0,0 +1,33 @@
{php include pubTemplate("header")}
<div class="container">
<div class="card">
<div class="card-header">全部同城</div>
<div class="card-body">
<div class="location_list">
<ul>
{loop $arrLocation $key $item}
<li>
<div class="photo"><img class="rounded" src="{if $item['photo']}{php echo tsXimg($item['photo'],'location','120','120',$item['path'],1)}{else}{SITE_URL}public/images/location.jpg{/if}" width="90" height="90" alt="{$item['title']}" /></div>
<div class="info">
<div class="fs18">{$item['title']}</div>
<div class="content">{$item['content']}</div>
<div><a class="btn btn-sm btn-info" href="{tsUrl('location','show',array('id'=>$item['locationid']))}">访问</a></div>
</div>
</li>
{/loop}
</ul>
</div>
</div>
</div>
</div>
{php include pubTemplate("footer")}