-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnewTest.html
20 lines (16 loc) · 1.09 KB
/
newTest.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<head>
<title>Flow-Transition</title>
</head>
<body>
{{> section name="head"}}
{{> section name="body"}}
{{> section name="foot"}}
</body>
<template name="head1"><div id="h1">head 1: This is home. click to go to<a href="/page2">>Page2<</a><br/></div></template>
<template name="head2"><div id="h2">head 2: <a href="/">>HOME<</a><br/></div></template>
<template name="page1"><div id="p1">This is: page 1<br/><a href="/page2">>Go To: Page2<</a><br/></div></template>
<template name="page2"><div id="p2">This is: page 2<br/><a href="/page3">>Go To: Page3<</a><br/><a href="/page4">>Go To: Page4<</a></div></template>
<template name="page3"><div id="p3">This is: page 3<br/><a href="/page4">>Go To: Page4<</a><br/></div></template>
<template name="page4"><div id="p4">This is: page 4<br/><a href="/">>Go To:HOME<</a><br/></div></template>
<template name="foot1"><div id="f1">foot 1<a href="/">>HOME<</a><br/></div></template>
<template name="foot2"><div id="f2">foot 2<a href="/">>HOME<</a><br/></div></template>