-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpassenger.liquid
159 lines (147 loc) · 5.11 KB
/
passenger.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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
---
pagination:
data: Orphan_Train_Data
size: 1
alias: record
permalink: "people/{{ record.AutoID | slug }}/"
---
<!DOCTYPE html>
<html lang="en">
{% capture baseRoot %}
{% relativeUrl "/" %}{% endcapture %}
<head>
<link rel="stylesheet" href={{baseRoot | append: "/css/passenger.css" }}>
<link rel="stylesheet" href={{baseRoot | append: "/css/header.css"}}>
<link rel="stylesheet" href={{baseRoot | append: "/css/footer.css"}}>
<meta charset="utf-8">
<title>{{ record["Birth Name First"] }} {{record["Birth Name Last"]}}</title>
</head>
<body>
{% render 'header', urlRoot: baseRoot %}
<div class="paper">
<h1>{{ record["Birth Name First"] }}
{% unless record["Birth Name Middle"] == empty %}
{{ record["Birth Name Middle"] }}
{% endunless %}
{{ record["Birth Name Last"] }}</h1>
<ol>
{% unless record["Birth Name Alt"] == empty %}
<li>
<b>Alternate Birth Name:</b>
{{ record["Birth Name Alt"] }}</li>
{% endunless %}
<li>
<b>Foster Name:</b>
{% unless record["Adopted Name First"] == empty and record["Adopted Name Middle"] == empty and record["Adopted Name Last"] == empty %}
{{ record["Adopted Name First"] }}
{{ record["Adopted Name Middle"] }} {{ record["Adopted Name Last"] }}
{% else %}
Unknown
{% endunless %}
</li>
{% unless record["Adopted Name Alt"] == empty %}
<li>
<b>Alternate Foster Name:</b>
{{ record["Adopted Name Alt"] }}
</li>
{% endunless %}
<li>
<b>Foster Family:</b>
{% unless record["Family Taking Child First"] == empty and record["Family Taking Child Middle"] == empty and record["Family Taking Child Last"] == empty %}
{{ record["Family Taking Child First"] }} {{ record["Family Taking Child Middle"] }} {{ record["Family Taking Child Last"] }}</li>
{% else %}
Unknown
{% endunless %}
{% unless record["Family Taking Child Alt"] == empty %}
<li>
<b>Foster Family Alt:
</b>
{{ record["Family Taking Child Alt"] }}
</li>
{% endunless %}
<li>
<b>Location of Family:</b>
{% unless record["Location of Family"] == empty %}
{{ record["Location of Family"] }}
{% else %}
Unknown
{% endunless %}
</li>
<li>
<b>Sending Organization:</b>
{% unless record["Sending Organization"] == empty %}
{{ record["Sending Organization"] }}
{% else %}
Unknown
{% endunless %}
</li>
<li>
<b>Arrival Place:</b>
{% unless record["Arrival Place"] == empty %}
{{ record["Arrival Place"] }}
{% else %}
Unknown
{% endunless %}
</li>
<li>
<b>Age on Arrival:</b>
{% unless record["Age on Arrival in Years"] == empty %}
{{ record["Age on Arrival in Years"] }}
{% else %}
Unknown
{% endunless %}
</li>
<li>
<b>Date of Birth:</b>
{% unless record["Date of Birth"] == empty and record["Place of Birth"] == empty %}
{{ record["Date of Birth"] }}{% unless record["Place of Birth"] == empty %}, {{ record["Place of Birth"] }}
{% endunless %}
{% else %}
Unknown
{% endunless %}
</li>
{% unless record["Date of Death"] == empty %}
<li>
<b>Date of Death:</b>
{{ record["Date of Death"] }}{% unless record["Place of Death"] == empty %}, {{ record["Place of Death"] }}
{% endunless %}
</li>
{% endunless %}
<li>
<b>Gender:</b>
{{ record["Gender"] }}</li>
{% unless record["Married Name Last"] == empty %}
<li>
<b>Married Name:</b>
{{ record["Married Name First"] }}
{% unless record["Married Name Alt"] == empty %}
({{ record["Married Name Alt"] }})
{% endunless %}
{{ record["Married Name Middle"] }} {{ record["Married Name Last"] }}</li>
{% endunless %}
{% unless record["Spouse Name Last"] == empty %}
<li>
<b>Spouse Name:</b>
{{ record["Spouse Name First"] }} {{ record["Spouse Name Middle"] }} {{ record["Spouse Name Last"] }}</li>
{% endunless %}
{% unless record["Additional Notes Public"] == empty %}
<li>
<b>Notes:
</b>
{{ record["Additional Notes Public"] }}
</li>
{% endunless %}
{% unless record["Sources Used"] == empty %}
<li>
<b>Source:
</b>
{{ record["Sources Used"] }}
</li>
{% endunless %}
</ol>
</div>
<a href={{baseRoot | append: "/table/index.html" }} class="clickHere">
Return to Passengers</a>
{% render 'footer', urlRoot: baseRoot %}
</body>
</html>