1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-05-19 19:53:19 +12:00
uMatrix/src/dashboard.html

34 lines
1.5 KiB
HTML
Raw Normal View History

2014-10-18 08:01:09 +13:00
<!DOCTYPE html>
<html>
<head>
2018-01-07 12:00:28 +13:00
<meta charset="utf-8">
2017-11-25 11:22:42 +13:00
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="img/icon_16.png">
2014-11-02 05:22:44 +13:00
<title data-i18n="dashboardPageName"></title>
<link href="css/dashboard.css" rel="stylesheet" type="text/css">
<link href="css/common.css" rel="stylesheet" type="text/css">
2014-10-18 08:01:09 +13:00
</head>
<body>
<div id="dashboard-nav">
<div id="dashboard-nav-widgets">
<span data-i18n-title="extName"><img src="img/icon_64.png"></span><!--
--><a class="tabButton" id="settings" href="#settings" data-dashboard-panel-url="settings.html" data-i18n="settingsPageName"></a>
2014-10-22 12:12:25 +13:00
<a class="tabButton" id="user-rules" href="#user-rules" data-dashboard-panel-url="user-rules.html" data-i18n="userRulesPageName"></a>
2014-10-24 12:40:48 +13:00
<a class="tabButton" id="hosts-files" href="#hosts-files" data-dashboard-panel-url="hosts-files.html" data-i18n="ubiquitousRulesPageName"></a>
2018-01-07 12:00:28 +13:00
<a class="tabButton" id="raw-settings" href="#raw-settings" data-dashboard-panel-url="raw-settings.html" data-i18n="rawSettingsPageName"></a>
2014-10-18 08:01:09 +13:00
<a class="tabButton" id="about" href="#about" data-dashboard-panel-url="about.html" data-i18n="aboutPageName"></a>
</div>
</div>
<iframe src=""></iframe>
<script src="js/vapi.js"></script>
2015-04-12 09:15:57 +12:00
<script src="js/vapi-common.js"></script>
<script src="js/vapi-client.js"></script>
2014-10-22 12:12:25 +13:00
<script src="js/udom.js"></script>
2014-10-18 08:01:09 +13:00
<script src="js/i18n.js"></script>
<script src="js/dashboard.js"></script>
</body>
</html>