123456789101112131415161718192021222324 |
- <%
- local fs = require "luci.fs"
- local sys = require "luci.sys"
- local http = require "luci.http"
- local disp = require "luci.dispatcher"
- local hostname = sys.hostname()
- %>
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <meta http-equiv="Content-Script-Type" content="text/javascript" />
- <link rel="stylesheet" type="text/css" media="screen" href="/wizard/bootstrap.css" />
- <title><%=striptags( hostname )%> - Wizard</title>
- </head>
- <body class="lang_<%=luci.i18n.context.lang%>">
- <div class="container">
- <div class="page-header">
- <h1>Freifunk Wizard</h1>
- </div>
|