📄 toolview1.tea
字号:
<% template toolview1(String state) %>
<%
if (state == null) {
tools = getTools("live");
}
else {
tools = getTools(state)
}
%>
<% foreach (tool in tools) { %>
<HR SIZE=2 ALIGN=LEFT>
<H3>
<% tool.name %>
<%
if (tool.createdAgeInDays < 45) {
'<FONT COLOR=#FF0000><B> (New!) </B></FONT>'
}
else if (tool.modifiedAgeInDays < 45) {
'<FONT COLOR=#FF0000><B> (Updated!) </B></FONT>'
}
%>
</H3>
<A HREF="<% tool.homeURL %>"><% tool.homeURL %></A><BR>
<% tool.comments %>
<% } %>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -