diff options
author | Jo-Philipp Wich <jo@mein.io> | 2022-10-13 13:07:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-13 13:07:03 +0200 |
commit | 55ece96332751be7bd3f17dc5b618633f0271439 (patch) | |
tree | eb2554e9b8258760086b394cb326ea0330877ba1 /themes/luci-theme-openwrt-2020/luasrc/view | |
parent | 5ca5692e449d22e5c5480c93b4919f7c09f800ec (diff) | |
parent | 28193247bcdd6e03ae2336f8f647f438f2713149 (diff) |
Merge pull request #6010 from neheb/apple
luci-theme-openwrt-2020: add iOS icon support
Diffstat (limited to 'themes/luci-theme-openwrt-2020/luasrc/view')
-rw-r--r-- | themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm b/themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm index 34c52f4b12..ba0945a172 100644 --- a/themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm +++ b/themes/luci-theme-openwrt-2020/luasrc/view/themes/openwrt2020/header.htm @@ -23,8 +23,10 @@ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Script-Type" content="text/javascript" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> +<meta name="apple-mobile-web-app-capable" content="yes" /> <link rel="stylesheet" type="text/css" media="screen" href="<%=media%>/cascade.css" /> <link rel="icon" href="<%=media%>/logo.svg" type="image/svg+xml" /> +<link rel="apple-touch-icon" href="<%=media%>/logo.png" /> <script type="text/javascript" src="<%=url('admin/translations', luci.i18n.context.lang)%><%# ?v=PKG_VERSION %>"></script> <script type="text/javascript" src="<%=resource%>/cbi.js"></script> <title><%=striptags( (boardinfo.hostname or "?") .. ( (node and node.title) and ' - ' .. translate(node.title) or '')) %> - LuCI</title> |