You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
532 B
PHP

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<?php
// 主题开发文档https://doc.lylme.com/dev/theme
$html= array(
'g1' => '<ul class="mylist row">', //分组开始标签
'g2' => '<li class="title">{group_icon}<sapn>{group_name}</sapn></li>', //分组内容
'g3' => '</ul>', //分组结束标签
'l1' => '<li class="lylme-3">', //链接开始标签
'l2' => '<a rel="nofollow" href="{link_url}" target="_blank">{link_icon}<span>{link_name}</span></a>', //链接内容
'l3' => '</li>', //链接结束标签
);
lists($html);
?>