-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
36 lines (34 loc) · 1.33 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="public/images/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@latest/dist/css/bootstrap.min.css" rel="stylesheet">
<title>Vue Wordpress Plugin Starter</title>
</head>
<body class="container">
<nav class="navbar navbar-light bg-light justify-content-between">
<a class="navbar-brand" href="https://github.com/niiknow/vue-wp-plugin-starter">vue-wp-plugin-starter - View on Github</a>
<iframe src="https://ghbtns.com/github-btn.html?user=niiknow&repo=vue-wp-plugin-starter&type=star&count=true&size=large" frameborder="0" scrolling="0" width="160px" height="30px"></iframe>
</nav>
<div style="padding-bottom: 10px"> </div>
<h1>Home - Test Local</h1>
<div id="toplevel_page_vue-app">
<ul class="wp-submenu">
<li>
<a href="public/admin.html">Admin</a>
</li>
<li>
<a href="public/frontend.html">Frontend</a>
</li>
<li>
<a href="public/frontview.html">Frontview</a>
</li>
<li>
<a href="public/frontview.html#/?comp=Comp2">Frontview with Comp2 pass as query string</a>
</li>
</ul>
</div>
</body>
</html>