mirror of
https://gitee.com/zoujingli/ThinkAdmin.git
synced 2025-05-03 14:46:34 +08:00
46 lines
1012 B
HTML
46 lines
1012 B
HTML
{extend name='wechat@api/review/main'}
|
|
|
|
{block name='content'}
|
|
<div class="header"><span>{:date('H:i')}</span></div>
|
|
<div class="container">
|
|
<div class="content">
|
|
<div>{:input('title')}</div>
|
|
<div class="date">{:date('m月d日')}</div>
|
|
<video src="{:input('url')}" width="100%" controls preload></video>
|
|
</div>
|
|
</div>
|
|
{/block}
|
|
|
|
{block name='style'}
|
|
<style>
|
|
|
|
.container .content {
|
|
left: 0 !important;
|
|
border: 1px solid #ccc;
|
|
padding: 13px;
|
|
position: relative;
|
|
max-width: initial !important;
|
|
background: white;
|
|
line-height: 1.5em;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
.container .content div {
|
|
width: 100%;
|
|
overflow: hidden;
|
|
font-size: 0.8rem;
|
|
line-height: 1.5em;
|
|
display: inline-block;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|
|
.container .content .date {
|
|
color: #999;
|
|
margin: 10px 0;
|
|
font-size: 12px;
|
|
line-height: 1em;
|
|
}
|
|
|
|
</style>
|
|
|
|
{/block} |