-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharchive.php
56 lines (54 loc) · 3.08 KB
/
archive.php
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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<title><?php $this->options->title() ?> | <?php $this->options->description() ?></title>
<meta name="keywords" content="<?php $this->options->guanjianci(); ?>" />
<meta name="description" content="<?php $this->options->miaoshu(); ?>" />
<?php include('head.php'); ?>
</head>
<body class="black-color dark-slider">
<div id="wrapper">
<div class="row">
<?php include('sidebar.php'); ?>
</div>
</div>
<div id="main">
<div class="container postListsModel">
<div class="row">
<div class="col-md-12 col-lg-12">
<div class="categoryNav-wrapper" style="width: 100%;">
<div pandatab="" class="categoryNav" active-class=".current-menu-item,.current-menu-ancestor" sub-class=".sub-menu">
<ul id="menu-cattab" class="menu">
<li class="anchor" style="position: absolute; left: 0px; width: 78px; opacity: 1;"></li>
<?php include('menu.php'); ?>
</ul>
</div>
</div>
<div class="col-xs-12">
<div class="row">
<div class="row postLists cards" height-to="sidebar">
<?php if ($this->have()): ?>
<?php while($this->next()): ?>
<div class="col-xxs-6 col-xs-4 col-lg-2_5 post-card-wrapper">
<div class="card"><a href="<?php $this->permalink() ?>" class="cover" style="background-image: url(<?php showThumbnail($this); ?>);" showas="padding"></a><a href="<?php $this->permalink() ?>" showas="img"><img src="<?php showThumbnail($this); ?>" class="cover" alt=""></a>
<div class="meta">
<h2><a href="<?php $this->permalink() ?>"><?php $this->title() ?></a></h2>
<div class="tags"><a class="color-<?php echo rand(1, 8); ?>"><?php $this->category(' · ', false); ?></a>
</div>
<div class="summary"><span class="comments"><i class="icon font_family icon-clock"></i> <?php $this->date('n月j日 · Y年'); ?></span> </div>
</div>
</div>
</div>
<?php endwhile; ?>
</div><?php include('pagenav.php'); ?>
<?php else: ?>
</div>
<p style="font-size:28px;margin: 0 auto;text-align: center;color:#8492a6;padding-top: 80px;">没有发现文章的踪迹</p>
<?php include('sousuo.php'); ?>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
<?php include('footer.php'); ?>