footer.htm 346 B

12345678910111213141516171819
  1. <% local xtime
  2. if exectime then
  3. xtime = (string.format("%.2fs", os.clock() - exectime))
  4. end %>
  5. <footer class="footer">
  6. <p><a href="http://luci.subsignal.org">Powered by <%= luci.__appname__ .. " (" .. luci.__version__ .. ")" %></a>
  7. <% if xtime then %>
  8. <br/>
  9. Script execution time: <%=xtime%>
  10. <% end %>
  11. </p>
  12. </footer>
  13. </div>
  14. </body>
  15. </html>