summaryrefslogtreecommitdiff
path: root/views/partials/footer.ejs
blob: 2d9fb593a19ea9b9c6466caf552fc5d29e9be2a8 (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
<div class="footer">

	[[ if (logged_in) { ]]
	<span>
		signed in as 
		<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>
	[[ } ]]

  <br><br>
  
	<a href="/about">About</a>
	<a href="/about/howto">How To</a>

	[[ if (logged_in && user.plan_level > 0) { ]]
		<a href="/profile/billing">Billing</a>
	[[ } else { ]]
		<a href="/about/brochure">Subscribe</a>
	[[ } ]]
	<a href="/about/terms">Terms</a>
	<a href="/about/privacy">Privacy</a>
	<a href="mailto:hello@vvalls.com">Contact</a>
  <br><br>
	<span>&copy; 2016 Dot Dash 3, Inc.</span>
	<a href="http://okfoc.us/">Site by OKFocus</a>

</div>