-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolution.html
199 lines (188 loc) · 9.13 KB
/
solution.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
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
---
layout: default
---
{% assign solution = page %}
{%- include solution-menu.html -%}
<style>
.feature-icon {
display: inline-flex;
align-items: center;
justify-content: center;
width: 4rem;
height: 4rem;
margin-bottom: 1rem;
font-size: 2rem;
color: #fff;
border-radius: .75rem;
}
.bi {
vertical-align: -.125em;
fill: currentColor;
}
.icon-square {
display: inline-flex;
align-items: center;
justify-content: center;
width: 3rem;
height: 3rem;
font-size: 1.5rem;
border-radius: .75rem;
}
</style>
{%- include github_link.html -%}
<svg xmlns="http://www.w3.org/2000/svg" style="display: none;">
<symbol id="toggles2" viewBox="0 0 16 16">
<path d="M9.465 10H12a2 2 0 1 1 0 4H9.465c.34-.588.535-1.271.535-2 0-.729-.195-1.412-.535-2z" />
<path
d="M6 15a3 3 0 1 0 0-6 3 3 0 0 0 0 6zm0 1a4 4 0 1 1 0-8 4 4 0 0 1 0 8zm.535-10a3.975 3.975 0 0 1-.409-1H4a1 1 0 0 1 0-2h2.126c.091-.355.23-.69.41-1H4a2 2 0 1 0 0 4h2.535z" />
<path d="M14 4a4 4 0 1 1-8 0 4 4 0 0 1 8 0z" />
</symbol>
</svg>
<div class="container" style="margin-top: 40px;">
<div>
<div class="row text-center" style="margin:0px;display: inherit;">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-centered" style="margin: 0px; padding: 0px;">
{%- if page.logo -%}
<div style="text-align: center;margin-bottom: 20px">
<img src="{{ page.logo }}">
</div>
{%- else -%}
<div style="text-align: center;margin-bottom: 20px">
<div
style="letter-spacing: 0;line-height: 1.42857143;margin-bottom: 0;color: #a4b1b2;text-transform: none;display: inline-block;text-align: left;">
<div
style="background: {{ page.main-color }};width: 280px;height: 280px;color: navajowhite;padding-left: 25px;font-size: 135px;font-weight: bolder;border-width: 8px;border-style: solid;-moz-border-radius: 52px;border-radius: 30px;box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19)">
<div
style="font-size: 35px;margin-top: 11px;margin-right: 25px;font-weight: lighter; text-align: right;">
{{ page.logo-section }}
</div>
<div style="margin-top: 4px;" id="shlogo">
<span>{{ page.logo-acronym }}</span>
</div>
</div>
</div>
</div>
{%- endif -%}
<div style="font-size:40px;text-align:center;line-height: 120%;">
<b>{{ page.full-name }}</b>
</div>
<div style="font-size:30px;text-align:center;line-height: 120%;margin-top:20px;margin-bottom:40px">
{{ page.description }}
</div>
<form class="form-inline text-center" style="margin:0px;margin-bottom:70px">
{%- if page.pdf-get-started -%}
<div class="btn-group">
<a href="{{ page.get-started }}" target="_blank" class="btn btn-lg"
style="width:168px;background: {{ page.main-color }};color:navajowhite !important">Get
Started</a>
<button type="button" class="btn dropdown-toggle dropdown-toggle-split"
data-bs-toggle="dropdown" aria-expanded="false"
style="background: {{ page.main-color }};color:navajowhite !important">
<span class="visually-hidden">Toggle Dropdown</span>
</button>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="{{ page.pdf-get-started }}" target="_blank">Developer
Guide (PDF)</a> </li>
</ul>
</div>
{%- else -%}
{%- if page.get-started -%}
<div class="btn-group">
<a href="{{ page.get-started }}" class="btn btn-lg"
style="margin: 7px;width:200px;background: {{ page.main-color }};color:navajowhite !important">Get
Started</a>
</div>
{%- endif -%}
{%- endif -%}
{%- if page.release -%}
<a href="download" class="btn btn-light btn-lg"
style="margin: 7px;color:#444;width:200px;border-color: {{ page.main-color }}; color: {{ page.main-color }};">Download
{{ page.release }}</a>
<a href="release-notes" class="btn btn-light btn-lg"
style="margin: 7px;color:#444;width:200px;border-color: {{ page.main-color }}; color: {{ page.main-color }};">Release
Notes</a>
{%- endif -%}
</form>
</div>
</div>
{%- if page.youtube-playlist-id -%}
{%- include videos.html -%}
{%- endif -%}
<div class="row text-center" style="margin:0px;display: inherit;">
<div class="col-lg-9 col-md-9 col-sm-9 col-xs-9 col-centered" style="text-align: left;">
{{ page.content }}
</div>
</div>
{% assign filtered_features = site.features | where:"solution", page.identifier %}
{%- if filtered_features.size > 0 -%}
<div class="row text-center" style="margin:0px;display: inherit">
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12 col-centered">
<div class="row text-center" style="margin:0px; display: flex;;width: 100%;">
<div class="col-lg-7 col-md-12 col-sm-12 col-xs-12 col-centered ">
<div>
{% for feature in filtered_features %}
<div class="p-2 mb-4 bg-light rounded-3">
<div class="container-fluid py-5">
<h1 class="display-5 fw-bold" style="color:{{ page.main-color }}">{{
feature.title }}</h1>
<p class="col-md-12 fs-4" style="color:black;line-height: 29px">{{
feature.content }}</p>
</div>
</div>
{% endfor %}
</div>
</div>
<div class="col-lg-5 col-centered vig-hide-md">
{%- if page.github -%}
<div id="vigletfeedbox" class="card mt-4" style="height: calc( 100% - 47px );">
<div class=" card-body">
<h5 class="card-title">
Track the progress of {{ page.short-name }} development
</h5>
<h6 class="card-subtitle">
{%- if page.github-ci-url -%}
<a href="{{ page.github-ci-url }}" target="_blank"><img
src="{{ page.github-ci-image }}"></a>
{%- endif -%}
</h6>
<div id="vigletfeed" class="panel-body"
style="text-align: left; overflow-y: auto; max-height: 800px">
</div>
</div>
</div>
{%- endif -%}
</div>
</div>
</div>
</div>
{%- endif -%}
{% assign filtered_modules = site.modules | where:"solution", page.identifier %}
{%- if filtered_modules.size > 0 -%}
<div class="container px-4 py-5">
<h2 class="pb-2 border-bottom">Integration</h2>
<div class="row g-4 py-5 row-cols-1 row-cols-lg-3">
{% for module in filtered_modules %}
{%- if module.github-url -%}
<a href="{{ module.github-url }}" target="_blank" style="text-decoration: none;color: inherit;">
{%- endif -%}
<div class="col d-flex align-items-start">
<div class="icon-square bg-light text-dark flex-shrink-0 me-3">
<svg class="bi" width="1em" height="1em">
<use xlink:href="#toggles2" />
</svg>
</div>
<div>
<h2>{{ module.title }}</h2>
<p>{{ module.description }}</p>
</div>
</div>
{%- if module.github-url -%}
</a>
{%- endif -%}
{% endfor %}
</div>
</div>
{%- endif -%}
</div>
</div>
{%- include solution-scripts.html -%}