This commit is contained in:
liheng 2018-10-16 18:33:28 +08:00
parent 4494d11d13
commit a074203e2d
1 changed files with 2 additions and 2 deletions

View File

@ -55,13 +55,13 @@ $this->headLink()->appendStylesheet('/static-sanjy-np/css/about.css');
</div> </div>
<div class="newRight"> <div class="newRight">
<div class="newTopTitle"> <div class="newTopTitle">
<span><a href="data/<?php echo $md['uuid']; ?>"><?php echo $this->escape($md['title']); ?></a></span> <span><a href="/data<?php echo $md['uuid']; ?>"><?php echo $this->escape($md['title']); ?></a></span>
<i><?php echo date("Y-m-d", strtotime($md['ts_published'])); ?></i> <i><?php echo date("Y-m-d", strtotime($md['ts_published'])); ?></i>
</div> </div>
<p> <p>
<?= $this->escape($md['description']) ?> <?= $this->escape($md['description']) ?>
</p> </p>
<a class="more" href="/data/<?php echo $md['uuid']; ?>">查看详情</a> <a class="more" href="/data<?php echo $md['uuid']; ?>">查看详情</a>
</div> </div>
</li> </li>
<?php endforeach; ?> <?php endforeach; ?>