forked from PageifyJS/Pageify.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page1.html
26 lines (21 loc) · 892 Bytes
/
page1.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
<!DOCTYPE html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./w3.css">
<body class="w3-container">
<ul class="w3-navbar w3-blue w3-center">
<li><a class="w3-padding-16 w3-xlarge w3-left" onclick="retrievePage('page1', 'content')">Page1</a></li>
<li><a class="w3-padding-16 w3-xlarge w3-left" onclick="retrievePage('page2', 'content')">Page2</a></li>
<div class="w3-card-4" style="width:100%;">
<header class="w3-container w3-green">
<h1>Pageify.js</h1>
</header>
<div class="w3-container">
<p>This is the {{name}} homepage! However the {{name}} content for this page is not in the file index.html! This site uses Pageify.js to display content from other files live! Go ahead click one of the navbar tabs!</p>
</div>
<footer class="w3-container w3-green">
<h5>© 2016 HitmanA</h5>
</footer>
</div>
</body>
</html>