1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-20 02:18:20 +01:00
antd-web-apps/info/views/default/toc/index.ls

18 lines
357 B
Plaintext
Raw Permalink Normal View History

<?lua
if HEADER.mobile then return end
if not data then return end
?>
<div class = "cv-toc">
<ul>
<?lua
2018-10-19 11:20:56 +02:00
local active = "toc_active"
for k, v in pairs(data) do
?>
2021-01-05 20:12:35 +01:00
<!--onclick='switchTab("toc<?=v[2]?>", this)'-->
<li class="<?=active?>"><a href=<?='"#toc'..v[2]..'"'?> ><?=v[1]?></a></li>
<?lua
2018-10-19 11:20:56 +02:00
active = ''
end
?>
</ul>
</div>