summaryrefslogtreecommitdiff
path: root/views/partials/footer.ejs
blob: 75d06e56f30c702a9b9fa8265efd88e964fde5c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<div class="footer">

	<a href="/about">How To</a>
	<a href="/about/terms">Terms</a>
	<a href="/about/privacy">Privacy</a>

	<span>©2014 Dot Dash 3, Inc.</span>

	[[ if (logged_in) { ]]
	<br><br>
	
	<span>
		signed in as &rarr;
		<a href="/profile/[[- user.username ]]"><b>[[- user.displayName ]]</b></a>
		[[ if (user.isStaff) { ]]
		<a href="/staff">Staff Area</a>
		[[ } ]]
		<a href="/logout" class="topLink">Sign Out?</a>
	</span>
	[[ } ]]

</div>