blob: 55bfaedbc52525b4704989383210d44477b37b80 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<!DOCTYPE html>
<html>
<head>
<% include ./includes/header %>
<title><%= title %></title>
</head>
<body>
<% include ./includes/navbar %>
<div class="jumbotron special-color">
<h2 class="display-4">Hello! Welcome to Alee Productions.</h2>
<p class="lead">We are a very small produtions company.</p>
<hr class="my-4">
<p>If you want to know more about us click the button down below.</p>
<a class="btn btn-green btn-lg" href="/about" role="button">Learn more</a>
</div>
<% include ./includes/footer %>
</body>
</html>
|