blob: 8236be4c863c58f2e418fa25e4e38285ab6d73a0 (
plain)
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" >
<com:THead Title="Your Name Here | Home" />
<body>
<com:TForm>
<div class="header">
<h1>Your Name Here</h1>
<h2>My Personal Site</h2>
<div class="menua">
<a href="<%=$this->Service->constructUrl('Home') %>" >HOME</a> |
<a href="<%=$this->Service->constructUrl('Resume') %>" >RESUME</a> |
<a href="<%=$this->Service->constructUrl('Links') %>" >LINKS</a> |
<a href="<%=$this->Service->constructUrl('Albums') %>" >ALBUMS</a> |
<a href="<%=$this->Service->constructUrl('Register') %>" >REGISTER</a>
</div>
<div class="nav">
<a href="<%=$this->Service->constructUrl('Home') %>" >HOME</a> |
<com:THyperLink
NavigateUrl=<%=$this->Service->constructUrl('UserLogin') %>
Text="LOGIN"
Visible=<%= $this->User->IsGuest %>
/>
<com:TLinkButton
Text="LOGOUT"
Visible=<%= !$this->User->IsGuest %>
OnClick="logout"
/>
</div>
</div>
<div class="shim column"></div>
<div class="page" id="home">
<div id="sidebar">
<com:TContentPlaceHolder ID="sidebar"/>
</div>
<div id="content">
<com:TContentPlaceHolder ID="content"/>
</div>
</div>
<div class="footerbg">
<div class="footer">
<a href="<%=$this->Service->constructUrl('Home') %>" >HOME</a> |
<a href="<%=$this->Service->constructUrl('Resume') %>" >RESUME</a> |
<a href="<%=$this->Service->constructUrl('Links') %>" >LINKS</a> |
<a href="<%=$this->Service->constructUrl('Albums') %>" >ALBUMS</a> |
<a href="<%=$this->Service->constructUrl('Register') %>" >REGISTER</a>
<br/>
Copyright © 2006 Your Name here.<br/>
Powered by <a href="http://www.pradosoft.com/">PRADO</a>.
</div>
</div>
</com:TForm>
</body>
</html>
|