-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
394 lines (327 loc) · 17.2 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
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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>EVT - Edition Visualization Technology</title>
<meta content="" name="description">
<meta content="" name="keywords">
<!-- Favicons -->
<link href="assets/img/favicon.png" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Fonts -->
<link href="https://fonts.googleapis.com" rel="preconnect">
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<!-- Main CSS File -->
<link href="assets/css/main.css" rel="stylesheet">
<!-- =======================================================
* Template Name: Eterna
* Template URL: https://bootstrapmade.com/eterna-free-multipurpose-bootstrap-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
======================================================== -->
</head>
<body class="index-page">
<header id="header" class="header sticky-top">
<div class="topbar d-flex align-items-center dark-background">
<div class="container d-flex justify-content-center justify-content-md-between">
<div class="contact-info d-flex align-items-center">
<i class="bi bi-envelope d-flex align-items-center"><a href="mailto:[email protected]">[email protected]</a></i>
</div>
<div class="social-links d-none d-md-flex align-items-center">
<a href="https://github.com/evt-project" target="_blank" class="github"><i class="bi bi-github"></i></a>
<a href="#" class="facebook"><i class="bi bi-facebook"></i></a>
</div>
</div>
</div><!-- End Top Bar -->
<div class="branding">
<div class="container position-relative d-flex align-items-center justify-content-between">
<a href="index.html" class="logo d-flex align-items-center">
<!-- Uncomment the line below if you also wish to use an image logo -->
<!-- <img src="assets/img/logo.png" alt=""> -->
<h1 class="sitename">EVT - Edition Visualization Technology<br></h1>
</a>
<nav id="navmenu" class="navmenu">
<ul>
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
<i class="mobile-nav-toggle d-xl-none bi bi-list"></i>
</nav>
</div>
</div>
</header>
<main class="main">
<!-- Hero Section -->
<section id="hero" class="hero section">
<div id="hero-carousel" class="carousel slide carousel-fade" data-bs-ride="carousel" data-bs-interval="5000">
<div class="carousel-item active">
<img src="assets/img/hero-carousel/hero-carousel-1.jpg" alt="">
<div class="carousel-container">
<h2><span>EVT</span> - Edition Visualization Technology</h2>
<p>A light-weight, open source tool specifically designed to create digital editions from XML-encoded texts, freeing the scholar from the burden of web programming and enabling the final user to browse, explore and study digital editions by means of a user-friendly interface</p>
<a href="about.html" class="btn-get-started">Get Started</a>
</div>
</div><!-- End Carousel Item -->
<a class="carousel-control-prev" href="#hero-carousel" role="button" data-bs-slide="prev">
<span class="carousel-control-prev-icon bi bi-chevron-left" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#hero-carousel" role="button" data-bs-slide="next">
<span class="carousel-control-next-icon bi bi-chevron-right" aria-hidden="true"></span>
</a>
</div>
<div class="featured container">
<div class="row gy-4">
<div class="col-lg-4 d-flex" data-aos="fade-up" data-aos-delay="100">
<div class="featured-item position-relative">
<div class="icon"><i class="bi bi-1-square icon"></i></div>
<h4><a href="" class="stretched-link">EVT Version 1</a></h4>
<p>An XSLT 2.0 transformation chain is started and the end result is a web-based application – a mix of HTML 5, CSS3 and JavaScript – which can be easily shared on the Web. </p>
</div>
</div><!-- End Featured Item -->
<div class="col-lg-4 d-flex" data-aos="fade-up" data-aos-delay="200">
<div class="featured-item position-relative">
<div class="icon"><i class="bi bi-2-square icon"></i></div>
<h4><a href="" class="stretched-link">EVT Version 2</a></h4>
<p>A set of JavaScript parsers specifically written to retrieve edition content directly from the XML file</p>
</div>
</div><!-- End Featured Item -->
<div class="col-lg-4 d-flex" data-aos="fade-up" data-aos-delay="300">
<div class="featured-item position-relative">
<div class="icon"><i class="bi bi-3-square icon"></i></div>
<h4><a href="" class="stretched-link">EVT Version 3</a></h4>
<p>The current version, written in Angular</p>
</div>
</div><!-- End Featured Item -->
</div>
</div>
</section><!-- /Hero Section -->
<!-- About Section -->
<section id="about" class="section about">
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="row gy-4">
<div class="col-lg-6 order-1 order-lg-2">
<img src="assets/img/about.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 order-2 order-lg-1 content">
<h3>About</h3>
<p>
EVT was born in the context of the <a href="http://vbd.humnet.unipi.it/beta2/" target="_blank">Digital Vercelli Book project</a>, which has been available in beta form for more than one year, but it has evolved in a tool suitable to fit different texts and needs. For example, it is now being used to publish <a href="http://pelavicino.labcd.unipi.it/evt/" target="_blank">the digital edition of the Codice Pelavicino</a> manuscript, a medieval codex preserving charters dating back to the XIII century. The continuous development and need to adapt it to different types of documents and TEI-encoded texts has shifted the development focus towards creation of a more general tool for the web publication of TEI-based documents, able to cater for multiple use cases.
</p>
<ul>
<li><i class="bi bi-check2-all"></i> <span>Full TEI support</span></li>
<li><i class="bi bi-check2-all"></i> <span>???</span></li>
</ul>
</div>
</div>
</div>
</section><!-- /About Section -->
<!-- Services Section -->
<section id="services" class="services section">
<div class="container">
<div class="row gy-4">
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="100">
<div class="service-item position-relative">
<div class="icon">
<i class="bi bi-book"></i>
</div>
<a href="#" class="stretched-link">
<h3>Critical edition support</h3>
</a>
<p>Enlarged critical apparatus, variant heat map, witnesses collation and variant filtering are some of the main features developed for the critical edition support.</p>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="200">
<div class="service-item position-relative">
<div class="icon">
<i class="bi bi-bookmarks"></i>
</div>
<a href="#" class="stretched-link">
<h3>Bookmark</h3>
</a>
<p>Direct reference to the current view of the web application, considering view mode, current document, page and edition level, eventual collated witnesses and selected apparatus entry.</p>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="300">
<div class="service-item position-relative">
<div class="icon">
<i class="bi bi-stars"></i>
</div>
<a href="#" class="stretched-link">
<h3>High level of customization</h3>
</a>
<p>The editor can customize both the user interface layout and the appearance of the graphical components.</p>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="400">
<div class="service-item position-relative">
<div class="icon">
<i class="bi bi-cc-circle"></i>
</div>
<a href="#" class="stretched-link">
<h3>Open source</h3>
</a>
<p>EVT is distributed as open source software, all the current code base is available on <a href="https://github.com/evt-project/evt-viewer/" class="stretched-link">GitHub</a>.</p>
<a href="#" class="stretched-link"></a>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="500">
<div class="service-item position-relative">
<div class="icon">
<i class="bi bi-calendar4-week"></i>
</div>
<a href="#" class="stretched-link">
<h3>Velit Doloremque</h3>
</a>
<p>Cumque et suscipit saepe. Est maiores autem enim facilis ut aut ipsam corporis aut. Sed animi at autem alias eius labore.</p>
<a href="#" class="stretched-link"></a>
</div>
</div><!-- End Service Item -->
<div class="col-lg-4 col-md-6" data-aos="fade-up" data-aos-delay="600">
<div class="service-item position-relative">
<div class="icon">
<i class="bi bi-chat-square-text"></i>
</div>
<a href="#" class="stretched-link">
<h3>Dolori Architecto</h3>
</a>
<p>Hic molestias ea quibusdam eos. Fugiat enim doloremque aut neque non et debitis iure. Corrupti recusandae ducimus enim.</p>
<a href="#" class="stretched-link"></a>
</div>
</div><!-- End Service Item -->
</div>
</div>
</section><!-- /Services Section -->
<!-- Clients Section -->
<section id="clients" class="section clients">
<!-- Section Title -->
<div class="container section-title" data-aos="fade-up">
<h2>Users</h2>
<p>Universities and research groups that used <span class="fst-italic">Edition Visualization Technology</span> in their pojects</p>
</div><!-- End Section Title -->
<div class="container" data-aos="fade-up" data-aos-delay="100">
<div class="swiper init-swiper">
<script type="application/json" class="swiper-config">
{
"loop": true,
"speed": 600,
"autoplay": {
"delay": 5000
},
"slidesPerView": "auto",
"pagination": {
"el": ".swiper-pagination",
"type": "bullets",
"clickable": true
},
"breakpoints": {
"320": {
"slidesPerView": 2,
"spaceBetween": 40
},
"480": {
"slidesPerView": 3,
"spaceBetween": 60
},
"640": {
"slidesPerView": 4,
"spaceBetween": 80
},
"992": {
"slidesPerView": 6,
"spaceBetween": 120
}
}
}
</script>
<div class="swiper-wrapper align-items-center">
<div class="swiper-slide"><img src="assets/img/clients/client-1.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-2.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-3.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-4.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-5.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-6.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-7.png" class="img-fluid" alt=""></div>
<div class="swiper-slide"><img src="assets/img/clients/client-8.png" class="img-fluid" alt=""></div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</section><!-- /Clients Section -->
</main>
<footer id="footer" class="footer position-relative dark-background">
<div class="container footer-top">
<div class="row gy-4">
<div class="col-lg-4 col-md-6 footer-about">
<a href="index.html" class="d-flex align-items-center">
<span class="sitename">Edition Visualization Technology</span>
</a>
<div class="footer-contact pt-3">
<p>Via Sant'Ottavio, 20</p>
<p>10124 Torino TO (Italy)</p>
<p><strong>Email:</strong> <span>[email protected]</span></p>
</div>
</div>
<div class="col-lg-4 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="bi bi-chevron-right"></i> <a href="#">Home</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">About us</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">Features</a></li>
<li><i class="bi bi-chevron-right"></i> <a href="#">Portfolio</a></li>
</ul>
</div>
<div class="col-lg-4 col-md-12">
<h4>Follow Us</h4>
<p>Discover the EVT project updates</p>
<div class="social-links d-flex">
<a href="https://github.com/evt-project" target="_blank" class="github"><i class="bi bi-github"></i></a>
<a href=""><i class="bi bi-twitter-x"></i></a>
<a href=""><i class="bi bi-facebook"></i></a>
<a href=""><i class="bi bi-instagram"></i></a>
<a href=""><i class="bi bi-linkedin"></i></a>
</div>
</div>
</div>
</div>
<div class="container copyright text-center mt-4">
<p>© <span>Copyright</span> <strong class="px-1 sitename">Eterna</strong> <span>All Rights Reserved</span></p>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you've purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: [buy-url] -->
Designed by <a href="https://bootstrapmade.com/">BootstrapMade</a>
</div>
</div>
</footer>
<!-- Scroll Top -->
<a href="#" id="scroll-top" class="scroll-top d-flex align-items-center justify-content-center"><i class="bi bi-arrow-up-short"></i></a>
<!-- Preloader -->
<div id="preloader"></div>
<!-- Vendor JS Files -->
<script src="assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="assets/vendor/php-email-form/validate.js"></script>
<script src="assets/vendor/aos/aos.js"></script>
<script src="assets/vendor/swiper/swiper-bundle.min.js"></script>
<script src="assets/vendor/purecounter/purecounter_vanilla.js"></script>
<script src="assets/vendor/waypoints/noframework.waypoints.js"></script>
<script src="assets/vendor/glightbox/js/glightbox.min.js"></script>
<script src="assets/vendor/imagesloaded/imagesloaded.pkgd.min.js"></script>
<script src="assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
<!-- Main JS File -->
<script src="assets/js/main.js"></script>
</body>
</html>