homepagePHP/app/Home/View/default/News/detail.html

68 lines
3.2 KiB
HTML
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<extend name="Base/common" />
<block name="body">
<div class="page container">
{:W('NavMenu/index',array(true))}
<div class="l-r-wrap">
<div class="l-box">
<div class="l-article-box">
<h2 class="title">{$detail.title}</h2>
<div class="bottom-box">
<div class="author-div">
<a href="{:U('/home/search/index',['author'=>$detail['author']])}" class="author item">作者: {$detail.author}</a>
</div>
<div class="time_in_and_start">
<div class="date item">首发时间: {:date('Y-m-d',$detail['start_date'])}</div>
<div class="date item">入库时间: {:date('Y-m-d',$detail['in_date'])}</div>
</div>
<if condition="!empty($keywords)">
<div class="tags_container">
议题标签:
<div class="tag-box">
<volist name="keywords" id="word">
<a href="{:U('/home/News/index',['keywords_id'=>$key])}" class="tag to-link">{$word}</a>
</volist>
</div>
</div>
</if>
<div class="link_and_shank_container">
<a href="{$detail.url}" target="_blank" class="a_blank">
<i class="icon-link"></i>
原文链接
</a>
<div class="icon_list">
<div class="icon_list_item share_container">
<i class="iconfont icon-fenxiang1"></i>
分享
<div class="popup">
<div class="qrcode_share"></div>
<span>手机扫码访问进行分享</span>
</div>
</div>
<!-- <div class="icon_list_item">
<i class="iconfont icon-like"></i>
点赞({$detail['click_time']}
</div> -->
</div>
</div>
</div>
<div class="article_desc">
<div class="title_desc">入库推荐语:</div>
<pre wrap>{$detail['recommendation']}</pre>
</div>
<div class="article-content">{:showHtmlContent($detail['content'])}</div>
</div>
</div>
{:W('Sidebar/index')}
</div>
</div>
</block>
<block name="script">
<script>
$(function() {
console.log(location.href);
new QRCode($('.qrcode_share').get(0), location.href);
})
</script>
</block>