-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.liquid
29 lines (25 loc) · 1007 Bytes
/
index.liquid
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
<!DOCTYPE html>
<html lang="en">
{% assign baseRoot = "." %}
<head>
<link rel="stylesheet" href={{baseRoot | append: "/css/home.css" }}>
<link rel="stylesheet" href={{baseRoot | append: "/css/header.css"}}>
<link rel="stylesheet" href={{baseRoot | append: "/css/footer.css"}}>
<meta charset="utf-8">
<title>Orphan Train Passengers</title>
</head>
<body>
{% comment %}
This is the landing/home page for the Orphan Train Website
The index page's urlRoot for the header and footer is slightly different because it is already at the root of the site. There are no calculations that need to be made.
{% endcomment %}
{% render 'header', urlRoot: baseRoot %}
<img
src={{baseRoot | append: "/images/1388-resized.webp" }}
alt="Photo of train"
class="train" />
<a href={{baseRoot | append: "/table/index.html" }} class="clickHere">
Click here to see the list of passengers</a>
{% render 'footer', urlRoot: baseRoot %}
</body>
</html>