get_more_note.html
4.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>独角日志更多</title>
<link rel="stylesheet" href="__TMPL__/public/assets/css/bootstrap4.0.css">
<link rel="stylesheet" href="__TMPL__/public/assets/css/show.css">
<style>
a:hover {
text-decoration: none;
}
.show_logCon1Img2 img,
.show_logCon2Img2 img {
border-radius: 50%;
}
</style>
</head>
<body ondragstart="window.event.returnValue=false" oncontextmenu="window.event.returnValue=false" onselectstart="event.returnValue=false">
<include file="public@header" />
<div class="show_logBox">
<!-- 顶部标题 -->
<div class="show_INMain_tit clearfix">
<div class="show_IN1 clearfix">
<img src="__TMPL__/public/assets/starImg/aicon_52.png" alt="" style="width: 28px;">
<p>独角<span>日志</span></p>
<h2>Planet Express</h2>
</div>
</div>
<!-- 内容 -->
<div class="show_logCon">
<!-- 第一部分 -->
<volist name="res['data']" id="vo" offset="0" length="1">
<a href="/portal/region/getNoteDetail?id={$vo.id}">
<div class="show_logCon1">
<div class="show_logCon1Img1">
<img src="{:cmf_get_image_url($vo.index_thumbnail)}" alt="">
</div>
<div class="show_logCon1Txt">
<h1 class="show_logCon1Txt1">{$vo.post_title}</h1>
<p class="show_logCon1Txt2">
{$vo.post_excerpt}
</p>
<div class="show_logCon1Img2">
<img src="{:cmf_get_image_url($vo.avatar)}" alt="">
</div>
</div>
</div>
</a>
</volist>
<!-- 第二部分 -->
<div class="show_logCon2">
<volist name="res['data']" id="vo" offset="1" length="2">
<a href="/portal/region/getNoteDetail?id={$vo.id}">
<div class="show_logCon2Box">
<div class="show_logCon2Img">
<img src="{:cmf_get_image_url($vo.index_thumbnail)}" alt="">
</div>
<div class="show_logCon2Txt">
<h1 class="show_logCon2Txt1">{$vo.post_title}</h1>
<p class="show_logCon2Tx2">
{$vo.post_excerpt}
</p>
<div class="show_logCon2Img2">
<img src="{:cmf_get_image_url($vo.avatar)}" alt="">
</div>
</div>
</div>
</a>
</volist>
</div>
<!-- 第三部分 -->
<div class="show_logCon3">
<ul>
<volist name="res['data']" id="vo" offset="3" length="3">
<a href="/portal/region/getNoteDetail?id={$vo.id}">
<li>
<div class="show_logCon3Img">
<img src="{:cmf_get_image_url($vo.index_thumbnail)}" alt="">
</div>
<div class="show_logCon2Txt">
<h1 class="show_logCon2Txt1">{$vo.post_title}</h1>
<p class="show_logCon2Tx2">
{$vo.post_excerpt}
</p>
<div class="show_logCon2Img2">
<img src="{:cmf_get_image_url($vo.avatar)}" alt="">
</div>
</div>
</li>
</a>
</volist>
</ul>
</div>
</div>
<!-- 分页 -->
<div class="pagination">
{$page|default=''}
</div>
</div>
<include file="public@footer" />
<script src="__TMPL__/public/assets/js/jquery-3.2.1.min.js"></script>
<script src="__TMPL__/public/assets/js/public.js"></script>
</body>
</html>