-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing.ejs
37 lines (33 loc) · 1.06 KB
/
landing.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
<!DOCTYPE html>
<html>
<head>
<title>HeartX</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="/stylesheets/landing.css">
<script src="https://cdnjs.cloudflare.com/ajax/libs/modernizr/2.8.3/modernizr.min.js" type="text/javascript" async></script>
</head>
<body>
<div class="container">
<% if(error && error.length > 0){ %>
<div class="alert alert-danger" role="alert">
<%= error %>
</div>
<% } %>
<% if(success && success.length > 0){ %>
<div class="alert alert-success" role="alert">
<%= success %>
</div>
<% } %>
</div>
<div id="landing-header">
<h1>Welcome to HeartX!</h1>
<a href="/campgrounds" class="btn btn-lg btn-success">View All Clients</a>
</div>
<ul class="slideshow">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<% include partials/footer %>