diff options
Diffstat (limited to 'views')
-rw-r--r-- | views/index.tpl | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/views/index.tpl b/views/index.tpl new file mode 100644 index 0000000..db20f49 --- /dev/null +++ b/views/index.tpl @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html><head> + <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> + <title>RTLSDR DAB CIR</title> + <link rel="stylesheet" href="static/style.css" type="text/css" media="screen" charset="utf-8"/> +</head> +<body> + <h1>Measure DAB CIR using RTLSDR</h1> + + <ul id="info-nav"> + <li><a href="#general">General</a></li> + </ul> + + <div id="info"> + <div id="general"> + <p>General Options</p> + <ul> + <li>rtl_sdr command line: {{rtl_sdr_cmdline}}</li> + </ul> + </div> + + <div id="cir"> + <img src="{{fig_file}}" /> + </div> + </div> +</body> +</html> + |