summaryrefslogtreecommitdiff
path: root/templates/intro.tmpl
blob: 0fd4c3576b73b8bfbad15c1e4aa6cfbc92d9d120 (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
<% c++ #include "intro_content.hpp" %>
<% skin view %>
<% view intro uses content::intro extends master %>  

<% template title() %>  
  <% include master::title() %> :: Intro  
<% end %>  
    
<% template page_content() %>  
	<div>
		Welcome to <b>StrusCms</b>. 
	</div>
	<div>
		<% if not empty username %>
			After oyou finished editing pages, please log out
			<a href="<%= logout_link %>">here</a>.
		<% else %>
			If you want to edit pages, please log in
			<a href="<%= login_link %>">here</a>.
		<% end %>
	</div>
<% end template %>  

<% end view %>
<% end skin %>