9-4
點擊學校可以列出該校文章
- 上個單元已經完成基礎建設,要列出學校文章,我們改一下
templates/aside.tpl
,在學校名稱的地方加上連結,並傳個 school
參數給index.php
就好了。
<div class="card my-4">
<div class="card-header">近期新聞</div>
<ul class="list-group list-group-flush">
{foreach $aside_news as $key => $news}
<li class="list-group-item">
{$news.report_date}
【<a href="index.php?school={$news.school_name}" class="text-decoration-none">{$news.school_name}</a>】
<div><a href="index.php?id={$news.id}" class="text-decoration-none">{$news.news_title}</a></div>
</li>
{/foreach}
</ul>
</div>
- 這樣就做完囉!之後點擊學校名稱就會列出該校所有文章