You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
94 lines
4.0 KiB
94 lines
4.0 KiB
<!DOCTYPE html>
|
|
<!--[if IE 8]> <html class="ie ie8"> <![endif]-->
|
|
<!--[if IE 9]> <html class="ie ie9"> <![endif]-->
|
|
<!--[if gt IE 9]><!--> <html> <!--<![endif]-->
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>{$menu.menu_seo_title|default=$site_seo_title} {$site_name}</title>
|
|
<meta name="keywords" content="{$menu.menu_seo_key|default=$site_seo_keywords}" />
|
|
<meta name="description" content="{$menu.menu_seo_des|default=$site_seo_description}">
|
|
<link rel="stylesheet" type="text/css" href="{$yf_theme_path}public/css/lightbox.css">
|
|
{include file="public:head" /}
|
|
<style>
|
|
.jc_list .imgitem{display: inline-block; cursor: pointer;vertical-align: top;margin-bottom:5px;margin-top:5px;width:19.6%;text-align:center;}
|
|
.jc_list .imgitem .desc{text-align: center;color:#333;padding:5px 5px 5px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
|
|
.jc_list .imgitem .imgpanel{display:inline-block;position: relative;width: 140px;height: 140px;background-color: #F9F9F9;overflow: hidden;}
|
|
.jc_list .imgitem .imgbox{display:table-cell;vertical-align:middle;height: 140px;width: 140px;text-algin:center;}
|
|
.jc_list .imgitem .imgbox img{max-width:100%;max-height:100%;}
|
|
.jc_list .imgitem .imgpanel .coverimg{
|
|
position: absolute;width: 100%;height: 100%;left: 0;top: 0;
|
|
background-size: cover;background-position: center;background-repeat: no-repeat;
|
|
transition: all .3s;-moz-transition: all .3s;-webkit-transition: all .3s;-o-transition: all .3s;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body class="home">
|
|
<div class="contenter">
|
|
{include file="public:nav" /}
|
|
<div class="content">
|
|
<div class="basictop" style="margin-top: 0; margin-bottom: 80px">
|
|
<div class="" style="padding: 0 20px 20px 20px;">
|
|
<div class="tabs modeub modeac">
|
|
<div class="iconfont icon-home hometabs"></div>
|
|
<div class="tabstitle"><a href="{:url('news/category',array('kind'=>$kind))}">{$title}</a></div>
|
|
<div class="marketsegment segment">/</div>
|
|
<div class="tabstitle tabslast modef1"><a href="{:url('news/category',array('kind'=>$kind,'cid'=>16))}">{$parent}</a></div>
|
|
</div>
|
|
<div class="detailsdes-new clearfix">
|
|
<div class="left">
|
|
<div class="de-img-wrapper">
|
|
<div class="img-shell">
|
|
{if condition="$list['n_img']"}
|
|
<div class="bannerimg">
|
|
<img src="<?php echo trim($list['n_img'],'.');?>" title="{$list.n_title}"/>
|
|
</div>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="right">
|
|
<p>公馆名称:{$list.n_title}</p>
|
|
<p>公馆/艺术家简介:{$list.n_content}</p>
|
|
</div>
|
|
</div>
|
|
<div class="dmenus">
|
|
<div class="dmenu active">作品集</div>
|
|
</div>
|
|
<div class="dbodys" style="padding-top:10px;">
|
|
<div class="jc_list">
|
|
{if condition="count($list['photos'])"}
|
|
{foreach name="list['photos']" item="vo"}
|
|
<div onclick="window.location.href='{:url('news/finance',array('c_id'=>$vo['c_id'],'kind'=>4,'parent'=>16))}'" class="imgitem">
|
|
<div class="imgpanel">
|
|
<div class="imgbox">
|
|
<img src="<?php echo trim($vo['c_logo'],'.');?>" title="{$vo.c_name}"/>
|
|
</div>
|
|
</div>
|
|
<div class="desc">{$vo.c_name}</div>
|
|
</div>
|
|
{/foreach}
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{include file="public:footer"/}
|
|
{include file="public:scripts"/}
|
|
<script type="text/javascript" src="{$yf_theme_path}public/js/lightbox.js" charset="utf-8"></script>
|
|
<script type="text/javascript" >
|
|
|
|
$(function(){
|
|
var swiper = new Swiper('#bswiper', {
|
|
paginationClickable: true,
|
|
pagination:'.swiper-pagination',
|
|
centeredSlides: true
|
|
});
|
|
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|