-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
94 lines (87 loc) · 3.37 KB
/
index.html
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
---
title: LGSVL Simulator Content
description: Asset catalog for LGSVL Simulator.
---
<style>
h3 {
font-size: 1.6em;
}
h4 {
font-size: 1.17em;
}
@media only screen and (max-width:760px) {
h2 {
font-size: 2.0em;
}
h3 {
font-size: 1.4em;
}
p {
font-size: 1.1em;
}
}
</style>
<section class="hero">
<div class="container">
<img class="landing" src="/images/content-logo-two-line.png"/>
</div>
<div class="container" style="max-width: 600px;">
<p>A catalog of available assets and content for LGSVL Simulator</p>
</div>
<div class="cta button-primary alt" style="box-sizing: border-box;"><a href="https://www.lgsvlsimulator.com/docs" target="_blank">Get Started</a></div>
</section>
<div class="content">
<section style="max-width: 1140px; margin-left:auto;margin-right:auto;">
<div class="container flex">
<div class="text editable" style="height:35px; padding: 0 0">
<h2 style="margin: 0 0; float:left;"><strong>Maps</strong></h2>
<a href="/maps/" style="float:right; margin:10px 0;">View all</a>
</div>
</div>
<div class="container flex" style="max-width: 1140px; align-items: flex-start; justify-content:center;">
{% for item in site.maps limit:3 %}
<div class="container" style=" flex: 0 1 33%; padding: 0 0 5px 0; text-align: center; margin: 20px 20px 20px 20px; box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);">
<a class="nocolor" href="{{item.url}}">
<div>
<img src="{{site.baseurl}}{{ item.image_path }}" alt="{{item.name}}" style="max-width: 100%; display:block;"/>
<h4 style="text-overflow: ellipsis; white-space:nowrap; overflow: hidden;">{{ item.title }}</h4>
</div>
</a>
</div>
{% endfor %}
</div>
</section>
<section style="max-width: 1140px; margin-left:auto;margin-right:auto;">
<div class="container flex">
<div class="text editable" style="height:35px; padding: 0 0">
<h2 style="margin: 0 0; float:left;"><strong>Vehicles</strong></h2>
<a href="/vehicles/" style="float:right; margin:10px 0;">View all</a>
</div>
</div>
<div class="container flex" style="max-width: 1140px; align-items: flex-start; justify-content:center;">
{% for item in site.vehicles limit:3 %}
<div class="container" style=" flex: 0 1 33%; padding: 0 0 5px 0; text-align: center; margin: 20px 20px 20px 20px; box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.2);">
<a class="nocolor" href="{{item.url}}">
<div>
<img src="{{site.baseurl}}{{ item.image_path }}" alt="{{item.name}}" style="max-width: 100%; display:block;"/>
<h4 style="text-overflow: ellipsis; white-space:nowrap; overflow: hidden;">{{ item.title }}</h4>
</div>
</a>
</div>
{% endfor %}
</div>
</section>
<section>
<div class="container flex" style="min-height:54px;">
<div class="text editable">
<h4><a data-category="outbound" data-action="subscribe-bottom" href="http://eepurl.com/go_1w9" target="_blank">Subscribe</a> to our email newsletter for updates<h4>
</div>
<div class="text editable" style="min-height:54px;">
<h4><a data-category="download" data-action="content-bottom" href="https://github.com/lgsvl/simulator/releases/latest" target="_blank">Download</a> the latest release of LGSVL Simulator</h4>
</div>
<div class="text editable" style="min-height:54px;">
<h4>LGSVL Simulator <a href="https://www.lgsvlsimulator.com" target="_blank">website</a></h4>
</div>
</div>
</section>
</div>