blob: 838d228eb18680afba3beedfa82ea8e4185b1277 (
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
|
<div class='nav'>
<% if(page === 'home') { %>
<% if(usr) { %>
<h4><a href="/" style='background-color: crimson'>Recipes</a></h4>
<h4><a href='/recipe/create'>Create</a></h4>
<h4><a href='/account/<%= usr._id %>'>Account</a></h4>
<h4><a href='/logout'>Logout</a></h4>
<% } else { %>
<h4><a href="/" style='background-color: crimson'>Recipes</a></h4>
<h4><a href="/login">Login</a></h4>
<h4><a href='/register'>Register</a></h4>
<% } %>
<% } else if(page === 'login') { %>
<h4><a href="/">Recipes</a></h4>
<h4><a href="/login" style='background-color: crimson'>Login</a></h4>
<h4><a href='/register'>Register</a></h4>
<% } else if(page === 'register') { %>
<h4><a href="/">Recipes</a></h4>
<h4><a href="/login">Login</a></h4>
<h4><a href='/register' style='background-color: crimson'>Register</a></h4>
<% } else if(page === 'create') { %>
<% if(usr) { %>
<h4><a href="/">Recipes</a></h4>
<h4><a href='/recipe/create' style='background-color: crimson'>Create</a></h4>
<h4><a href='/account/<%= usr._id %>'>Account</a></h4>
<h4><a href='/logout'>Logout</a></h4>
<% } %>
<% } else if(page === 'account') { %>
<% if(usr) { %>
<h4><a href="/">Recipes</a></h4>
<h4><a href='/recipe/create'>Create</a></h4>
<h4><a href='/account/<%= usr._id %>' style='background-color: crimson'>Account</a></h4>
<h4><a href='/logout'>Logout</a></h4>
<% } else { %>
<h4><a href="/" style='background-color: crimson'>Recipes</a></h4>
<h4><a href="/login">Login</a></h4>
<h4><a href='/register'>Register</a></h4>
<% } %>
<% } else if(page === 'show') { %>
<% if(usr) { %>
<h4><a href="/" style='background-color: crimson'>Recipes</a></h4>
<h4><a href='/recipe/create'>Create</a></h4>
<h4><a href='/account/<%= usr._id %>'>Account</a></h4>
<h4><a href='/logout'>Logout</a></h4>
<% } else { %>
<h4><a href="/" style='background-color: crimson'>Recipes</a></h4>
<h4><a href="/login">Login</a></h4>
<h4><a href='/register'>Register</a></h4>
<% } %>
<% } else if(page === 'search') { %>
<h4><a href="/" style='background-color: crimson'>Recipes</a></h4>
<h4><a href="/login">Login</a></h4>
<h4><a href='/register'>Register</a></h4>
<% } else { %>
<h4><a href="/">Recipes</a></h4>
<h4><a href="/login">Login</a></h4>
<h4><a href='/register'>Register</a></h4>
<% } %>
</div>
|