generated from lighthouse-labs/node-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.ejs
58 lines (52 loc) · 2.95 KB
/
index.ejs
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Home Page</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
<link rel="stylesheet" href="/vendor/normalize-4.1.1.css" type="text/css" />
<link rel="stylesheet" href="/vendor/border-box.css" type="text/css" />
<link rel="stylesheet" href="/styles/root.css" type="text/css" />
<link rel="stylesheet" href="/styles/root.css" type="text/css" />
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Archivo+Black|Merriweather&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ibarra+Real+Nova|Oswald&display=swap" rel="stylesheet">
<script type="text/javascript" src="/vendor/jquery-3.0.0.js"></script>
<script type="text/javascript" src="/scripts/app.js"></script>
<script type="text/javascript" src="../scripts/rootpage.js"></script>
</head>
<body>
<%- include('./partials/_header') %>
<div class="red-container">
<section class = "red-section shadow">
<span class = "invisible show1 caption1">Order your food</span>
<span class = "invisible show2 caption2">JAY & EDISON</span>
<span class = "invisible show5 caption1">since yesterday...</span>
<span class = "invisible show3 menu-text">Get Started</span>
<% if(!user) {%>
<a class = "invisible show3 get-started" href="/users/login">
<img class="finger" src="/images/start.png" alt=""></a>
<% } else {%>
<a class = "invisible show3 get-started" href="/restaurants/Five%20Guys">
<img class="finger" src="/images/start.png" alt=""></a>
<% } %>
<div class="invisible show4 icons">
<a href="" class = "click-icon"><img src="/images/facebook.png" alt="" ></a>
<a href="" class = "click-icon"><img src="/images/instagram.png" alt="" ></a>
<a href="" class = "click-icon"><img src="/images/twitter.png" alt="" ></a>
<a href="" class = "click-icon"><img src="/images/github.png" alt="" ></a>
</div>
</section>
</div>
<script
src="https://code.jquery.com/jquery-3.4.1.min.js"
integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo="
crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM"
crossorigin="anonymous"></script>
</body>
</html>