diff options
| author | Maximilian Hils <git@maximilianhils.com> | 2014-09-13 17:00:05 +0200 |
|---|---|---|
| committer | Maximilian Hils <git@maximilianhils.com> | 2014-09-13 17:00:05 +0200 |
| commit | 9bacb6d426a54882235b8d745dbf123c7958c887 (patch) | |
| tree | 7e7f27f3775e66fabab4ddc1f6b3c84a53178e85 /web/src/index.html | |
| parent | b59234e25db8418cd53795ce94dda943e54f8ac1 (diff) | |
| download | mitmproxy-9bacb6d426a54882235b8d745dbf123c7958c887.tar.gz mitmproxy-9bacb6d426a54882235b8d745dbf123c7958c887.tar.bz2 mitmproxy-9bacb6d426a54882235b8d745dbf123c7958c887.zip | |
gulpfile
Diffstat (limited to 'web/src/index.html')
| -rw-r--r-- | web/src/index.html | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/web/src/index.html b/web/src/index.html new file mode 100644 index 00000000..cf8cb85f --- /dev/null +++ b/web/src/index.html @@ -0,0 +1,21 @@ +<!DOCTYPE html> +<html> +<head lang="en"> + <meta charset="UTF-8"> + <title>mitmproxy</title> + <meta name="viewport" content="width=device-width, initial-scale=1"> + <link rel="stylesheet" href="css/vendor.css"/> + <link rel="stylesheet" href="css/app.css"/> + <script src="js/vendor.js"></script> + <script src="js/app.js"></script> + <script> + $(function () { + mitmproxy.init(); + }); + </script> + +</head> +<body> +<div id="mitmproxy"></div> +</body> +</html>
\ No newline at end of file |
