summaryrefslogtreecommitdiff
path: root/demos/blog-tutorial/samples/day3/blog/protected/layouts/MainLayout.tpl
blob: 89538ab2496f125182749958b4a73b898a80713a (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
<html>
<com:THead />
<body>
<com:TForm>
 
<div id="header">
<h1>My PRADO Blog</h1>
</div>
 
<div id="main">
<com:TContentPlaceHolder ID="Main" />
</div>
 
<div id="footer">
<com:THyperLink Text="Login" 
	NavigateUrl="<%= $this->Service->constructUrl('users.LoginUser') %>"
	Visible="<%= $this->User->IsGuest %>" />

<com:TLinkButton Text="Logout" 
	OnClick="logoutButtonClicked"
	Visible="<%= !$this->User->IsGuest %>" />

<br/>
<%= PRADO::poweredByPrado() %>
</div>
 
</com:TForm>
</body>
</html>