{php} /** * Public user profile timeline. */ $previousYear = ''; {/php} {include file="component/sticky_module" /}
{volist name="articles" id="article"} {php} $time = strtotime($article['ptptime'] ?? '') ?: time(); $year = date('Y', $time); if ($year !== $previousYear) { if (date('Y') !== $year) { echo '

' . $year . '

'; } $previousYear = $year; } echo \think\facade\View::fetch('component/timeline_item', [ 'post' => $article, 'siteConfig' => $siteConfig ]); {/php} {/volist}