-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·996 lines (933 loc) · 44.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
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>YMMOR 2025 - Young Mathematicians in Model Order Reduction Conference</title>
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/bootstrap.min.css" >
<!-- Icon -->
<link rel="stylesheet" type="text/css" href="assets/fonts/line-icons.css">
<!-- Slicknav -->
<link rel="stylesheet" type="text/css" href="assets/css/slicknav.css">
<!-- Nivo Lightbox -->
<link rel="stylesheet" type="text/css" href="assets/css/nivo-lightbox.css" >
<!-- Animate -->
<link rel="stylesheet" type="text/css" href="assets/css/animate.css">
<!-- Main Style -->
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<!-- Responsive Style -->
<link rel="stylesheet" type="text/css" href="assets/css/responsive.css">
<!-- Add this in the <head> section -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" />
<!-- Add this in the <head> section, after your other CSS links -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css">
</head>
<body>
<!-- Header Area wrapper Starts -->
<header id="header-wrap">
<!-- Navbar Start -->
<nav class="navbar navbar-expand-lg fixed-top scrolling-navbar navbar-transparent">
<div class="container">
<a href="index.html" class="navbar-brand">
<img src="assets/img/logo.png" alt="YMMOR 2025" class="logo">
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#main-navbar">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="main-navbar">
<ul class="navbar-nav ml-auto">
<li class="nav-item" style="--item-number: 1"><a class="nav-link active" href="#header-wrap">Home</a></li>
<li class="nav-item" style="--item-number: 2"><a class="nav-link" href="#about">About</a></li>
<li class="nav-item" style="--item-number: 3"><a class="nav-link" href="#registration">Registration</a></li>
<li class="nav-item" style="--item-number: 4"><a class="nav-link" href="#schedules">Program</a></li>
<li class="nav-item" style="--item-number: 5"><a class="nav-link" href="#venue">Venue & Accommodation</a></li>
<li class="nav-item" style="--item-number: 6"><a class="nav-link" href="#gallery">Gallery</a></li>
<li class="nav-item" style="--item-number: 7"><a class="nav-link" href="#contact">Contact</a></li>
</ul>
</div>
</div>
</nav>
<!-- Navbar End -->
<!-- Main Carousel Section Start -->
<div id="main-slide" class="carousel slide" data-ride="carousel">
<div class="carousel-inner">
<div class="carousel-item active">
<img class="d-block w-100" src="assets/img/slider/slide1.png" alt="SISSA">
<div class="carousel-caption d-md-block">
<h1 class="wow fadeInDown heading" data-wow-delay=".4s">Young Mathematicians in Model Order Reduction Conference</h1>
<p class="fadeInUp wow" data-wow-delay=".6s">May 5-9, 2025 in Trieste, Italy</p>
<div class="buttons-group">
<a href="#registration" class="fadeInLeft wow btn btn-common btn-lg" data-wow-delay=".6s">Register Now</a>
<a href="#about" class="fadeInRight wow btn btn-border btn-lg" data-wow-delay=".6s">Learn More</a>
</div>
</div>
</div>
</div>
</div>
<!-- Main Carousel Section End -->
</header>
<!-- Header Area wrapper End -->
<!-- Coundown Section Start -->
<section class="countdown-timer section-padding">
<div class="container">
<div class="row text-center">
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="heading-count">
<h2 class="wow fadeInDown" data-wow-delay="0.2s">Conference Will Start In</h2>
</div>
</div>
<div class="col-md-12 col-sm-12 col-xs-12">
<div class="row time-countdown justify-content-center wow fadeInUp" data-wow-delay="0.2s">
<div id="clock" class="time-count"></div>
</div>
<a href="#registration" class="btn btn-common wow fadeInUp" data-wow-delay="0.3s">Register Now</a>
</div>
</div>
</div>
</section>
<!-- Coundown Section End -->
<!-- About Section Start -->
<section id="about" class="section-padding bg-light">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">About YMMOR 2025</h1>
<p class="wow fadeInDown" data-wow-delay="0.2s">Bringing Together Early Career Researchers in Model Order Reduction</p>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12 col-md-6 col-lg-4">
<div class="about-item">
<img class="img-fluid" src="assets/img/about/img1.jpg" alt="">
<div class="about-text">
<h3>Conference Aims</h3>
<p>The Young Mathematicians in Model Order Reduction conference aims at bringing together early career researchers working in the broad field of Model Order Reduction and related topics.</p>
</div>
</div>
</div>
<div class="col-xs-12 col-md-6 col-lg-4">
<div class="about-item">
<img class="img-fluid" src="assets/img/about/img2.jpg" alt="">
<div class="about-text">
<h3>Conference Format</h3>
<p>Every participant is expected to give a talk about their research or a topic of interest. Small introductory sessions will facilitate communication across different specializations.</p>
</div>
</div>
</div>
<div class="col-xs-12 col-md-6 col-lg-4">
<div class="about-item">
<img class="img-fluid" src="assets/img/about/img4.jpg" alt="">
<div class="about-text">
<h3>Who Should Attend?</h3>
<p>The conference is designed for PhD students, master students, and early postdocs with basic knowledge in Model Order Reduction and related fields.</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- About Section End -->
<!-- Previous Editions Section Start -->
<section id="previous-editions" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Previous Editions</h1>
<p class="wow fadeInDown" data-wow-delay="0.2s">History of YMMOR Conferences</p>
<!-- Add link to general YMMOR site -->
<p class="mt-3">
<a href="https://ymmor-conferences.github.io" target="_blank" class="btn btn-common">
<i class="lni-world"></i> YMMOR Conferences Homepage
</a>
</p>
</div>
</div>
</div>
<div class="row">
<!-- Stuttgart 2024 -->
<div class="col-lg-6 col-md-12 mb-4">
<div class="card h-100 wow fadeInLeft" data-wow-delay="0.3s">
<div class="card-body">
<h3 class="card-title">YMMOR 2024 - Stuttgart</h3>
<h6 class="card-subtitle mb-2 text-muted">March 4-8, 2024</h6>
<p class="card-text">The third edition of YMMOR was held at the University of Stuttgart, Germany, funded by Simtech.</p>
<a href="https://opencms.uni-stuttgart.de/konferenz/ymmor2024/" class="btn btn-common btn-sm" target="_blank">
<i class="lni-world"></i> View Conference Website
</a>
</div>
</div>
</div>
<!-- Ulm 2023 -->
<div class="col-lg-6 col-md-12 mb-4">
<div class="card h-100 wow fadeInRight" data-wow-delay="0.3s">
<div class="card-body">
<h3 class="card-title">YMMOR 2023 - Ulm</h3>
<h6 class="card-subtitle mb-2 text-muted">March 20-24, 2023</h6>
<p class="card-text">The second edition took place at the University of Ulm, Germany, continuing the success of the inaugural event.</p>
<a href="https://www.uni-ulm.de/mawi/institut-fuer-numerische-mathematik/forschung/ymmor-workshop-2023/" class="btn btn-common btn-sm" target="_blank">
<i class="lni-world"></i> View Conference Website
</a>
</div>
</div>
</div>
<!-- Münster 2022 -->
<div class="col-lg-6 col-md-12 mb-4 mx-auto">
<div class="card h-100 wow fadeInUp" data-wow-delay="0.3s">
<div class="card-body">
<h3 class="card-title">YMMOR 2022 - Münster</h3>
<h6 class="card-subtitle mb-2 text-muted">July 18-22, 2022</h6>
<p class="card-text">The inaugural YMMOR conference was held in Münster, Germany, funded by Mathematics Münster, Cluster of Excellence. The event featured interesting talks, discussions, and social activities.</p>
<a href="https://www.uni-muenster.de/MathematicsMuenster/events/2022/YMCN-model-order-reduction.shtml" class="btn btn-common btn-sm" target="_blank">
<i class="lni-world"></i> View Conference Website
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Previous Editions Section End -->
<!-- Counter Area Start-->
<section class="counter-section section-padding">
<div class="container">
<div class="row">
<div class="col-md-6 col-lg-3 col-xs-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="0.3s">
<div class="icon"><i class="lni-map"></i></div>
<p>SISSA, Trieste</p>
<span>Via Bonomea, 265</span>
</div>
</div>
<div class="col-md-6 col-lg-3 col-xs-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="0.6s">
<div class="icon"><i class="lni-timer"></i></div>
<p>May 5-9, 2025</p>
<span>Five Full Days</span>
</div>
</div>
<div class="col-md-6 col-lg-3 col-xs-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="0.9s">
<div class="icon"><i class="lni-users"></i></div>
<p>Limited Participants</p>
<span>Register early, the number of participants is restricted (up to 40)</span>
</div>
</div>
<div class="col-md-6 col-lg-3 col-xs-12 work-counter-widget text-center">
<div class="counter wow fadeInRight" data-wow-delay="1.2s">
<div class="icon"><i class="lni-ticket-alt"></i></div>
<p>FREE Registration</p>
<span>Lunch, coffee breaks and a conference dinner will be free of charge for all participants.</span>
</div>
</div>
</div>
</div>
</section>
<!-- Counter Area End-->
<!-- Important Dates Section -->
<section id="important-dates" class="section-padding bg-light">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Important Dates</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-6 col-lg-3">
<div class="price-block-wrapper wow fadeInLeft" data-wow-delay="0.2s">
<div class="icon">
<i class="lni-calendar"></i>
</div>
<div class="colmun-title">
<h5>Registration Opens</h5>
</div>
<div class="price">
<h2>Nov 18</h2>
<p>2024</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="price-block-wrapper wow fadeInLeft" data-wow-delay="0.3s">
<div class="icon">
<i class="lni-timer"></i>
</div>
<div class="colmun-title">
<h5>Registration Deadline</h5>
</div>
<div class="price">
<h2>Jan 15</h2>
<p>2025</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="price-block-wrapper wow fadeInLeft" data-wow-delay="0.4s">
<div class="icon">
<i class="lni-envelope"></i>
</div>
<div class="colmun-title">
<h5>Notification</h5>
</div>
<div class="price">
<h2>February</h2>
<p>2025</p>
</div>
</div>
</div>
<div class="col-md-6 col-lg-3">
<div class="price-block-wrapper wow fadeInLeft" data-wow-delay="0.5s">
<div class="icon">
<i class="lni-flag"></i>
</div>
<div class="colmun-title">
<h5>Conference Dates</h5>
</div>
<div class="price">
<h2>May 5-9</h2>
<p>2025</p>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Rest of the sections (Venue, Registration, etc.) would continue here -->
<!-- Registration Section with Collapsible Form -->
<section id="registration" class="section-padding">
<div class="container">
<div class="row justify-content-center">
<div class="col-12 text-center">
<h2 class="section-title">Registration</h2>
<button class="btn btn-common mb-4" type="button" data-toggle="collapse" data-target="#registrationForm" aria-expanded="false" aria-controls="registrationForm">
<i class="lni-pencil"></i> Click to Register
</button>
</div>
<div class="col-lg-8">
<div class="collapse" id="registrationForm">
<div class="registration-card">
<!-- Download Template Button - Prominent placement -->
<div class="text-center mb-4">
<a href="assets/templates/ymmor2025_abstract.zip" class="btn btn-primary btn-lg" download>
<i class="lni-download"></i> Download Abstract Template
</a>
<p class="mt-3">Please download the template, prepare your abstract, and include it in your registration email.</p>
</div>
<!-- Email Registration Button -->
<div class="text-center mt-4">
<a href="mailto:[email protected]?subject=YMMOR%202025%20Registration&body=Dear%20Organizers%2C%0A%0APlease%20find%20my%20registration%20details%20below%3A%0A%0AFull%20Name%3A%0AInstitution%3A%0AAcademic%20Status%20(PhD%2FMaster%20Student%2FPostDoc%2FOther)%3A%0A%0AThank%20you."
class="btn btn-common btn-lg">
<i class="lni-envelope"></i> Send Registration Email
</a>
<p class="mt-3">Click the button above to open your email client with a pre-filled registration template.<br>
<strong>Don't forget to attach your abstract (PDF format and latex source tex file) before sending!</strong></p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Registration Section End -->
<!-- Schedule Section Start -->
<section id="schedules" class="section-padding bg-light">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Program</h1>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 text-center">
<div class="coming-soon-box wow fadeInUp" data-wow-delay="0.3s">
<i class="lni-timer" style="font-size: 48px; margin-bottom: 20px;"></i>
<h2>Coming Soon!</h2>
<p class="lead">The detailed program will be announced closer to the event date.</p>
</div>
</div>
</div>
</div>
</section>
<!-- Schedule Section End -->
<!-- JavaScript files remain the same as in original template -->
<script src="assets/js/jquery-min.js"></script>
<script src="assets/js/jquery.countdown.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>
<!-- Venue & Accommodation Section Start -->
<section id="venue" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Venue & Accommodation</h1>
<p class="wow fadeInDown" data-wow-delay="0.2s">Conference Location and Travel Information</p>
</div>
</div>
</div>
<!-- Venue Map -->
<div class="row mb-5">
<div class="col-12">
<div class="venue-map card wow fadeInUp" data-wow-delay="0.3s">
<div class="card-body">
<div class="row">
<div class="col-md-4 col-sm-12">
<div class="venue-info">
<h3>SISSA</h3>
<p><i class="lni-map-marker"></i> Via Bonomea, 265<br>34136 Trieste TS, Italy</p>
<p><i class="lni-world"></i> <a href="https://www.sissa.it" target="_blank">www.sissa.it</a></p>
<div class="venue-direction">
<a href="https://www.google.com/maps/dir//SISSA" class="btn btn-common" target="_blank">
<i class="lni-direction"></i> Get Directions
</a>
</div>
</div>
</div>
<div class="col-md-8 col-sm-12">
<div id="map" style="height: 400px;"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Travel Cards -->
<div class="row mb-5">
<!-- Airports Card -->
<div class="col-12 col-lg-6 mb-4">
<div class="card h-100">
<div class="card-header">
<h4><i class="fa-solid fa-plane"></i> Airports</h4>
</div>
<div class="card-body">
<div class="travel-option mb-4">
<h5>Trieste Airport (TRS)</h5>
<p>Direct flights from:</p>
<ul>
<li>Rome (4 daily flights - ITA Airways)</li>
<li>Milano Linate (2 daily flights - ITA Airways)</li>
<li>Frankfurt (2 daily flights - Lufthansa)</li>
</ul>
<p><strong>Connections to city:</strong></p>
<ul>
<li><a href="https://www.trenitalia.com/" target="_blank">Train (Trenitalia)</a></li>
<li><a href="https://www.flixbus.it/" target="_blank">FlixBus</a></li>
<li><a href="https://www.goopti.com/en/" target="_blank">GO-OPTI Shuttle</a></li>
<li><a href="https://www.science-bus.com/user/index.php?l=en" target="_blank">Science Bus</a></li>
</ul>
</div>
<div class="travel-option mb-4">
<h5>Venice Airport (VCE)</h5>
<p>Major international gateway with frequent connections.</p>
<p><strong>Getting to Trieste:</strong></p>
<ol>
<li>Take shuttle/bus to Venezia Mestre station (20 min)</li>
<li>Then choose:
<ul>
<li><a href="https://www.trenitalia.com/" target="_blank">Train (Trenitalia)</a></li>
<li><a href="https://www.flixbus.it/" target="_blank">FlixBus</a></li>
<li><a href="https://www.goopti.com/en/" target="_blank">GO-OPTI Shuttle</a></li>
</ul>
</li>
</ol>
</div>
</div>
</div>
</div>
<!-- Local Transport Card -->
<div class="col-12 col-lg-6 mb-4">
<div class="card h-100">
<div class="card-header">
<h4><i class="lni-bus"></i> Local Transportation</h4>
</div>
<div class="card-body">
<div class="travel-option">
<h5>Public Bus Service</h5>
<p><strong>Line 38: City Center ↔ SISSA</strong></p>
<ul>
<li>Route: Piazza Oberdan ↔ SISSA</li>
<li>Frequency: Every 20 minutes</li>
<li>Journey time: Approximately 20-25 minutes</li>
<li>Operating hours: 6:00 - 21:00</li>
</ul>
<p class="mt-4"><strong>Ticket Information:</strong></p>
<ul>
<li>Single ticket: €1.45 (valid for 60 minutes)</li>
<li>Daily ticket: €4.35</li>
<li>Purchase locations:
<ul>
<li>On bus (credit card only)</li>
<li>Tobacco shops and newsstands in city center</li>
<li>Trieste Trasporti ticket offices</li>
<li>SISSA vending machines</li>
</ul>
</li>
</ul>
<p class="mt-4"><strong>Useful Links:</strong></p>
<ul>
<li><a href="https://www.triestetrasporti.it/" target="_blank">Trieste Trasporti Website</a></li>
<li><a href="https://www.triestetrasporti.it/sites/default/files/attachments/Trieste_linea_38_invernale_2024_2025_23set.pdf?_gl=1*t2iad4*_up*MQ..*_ga*MTU4OTc0ODY4OC4xNzMxMDc3MDg1*_ga_HPVR177Q09*MTczMTA3NzA4NC4xLjAuMTczMTA3NzA4NC4wLjAuMA.." target="_blank"> Bus 38 Timetable</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- Hotels -->
<div class="row">
<div class="col-12">
<h3 class="text-center mb-4"><i class="lni-home"></i> Accommodation</h3>
<p class="text-center mb-3">Special rates available for SISSA visitors - mention during booking</p>
<!-- Expandable Button -->
<div class="text-center">
<button class="btn btn-common mb-4" type="button" data-toggle="collapse" data-target="#hotelList" aria-expanded="false" aria-controls="hotelList">
<i class="lni-hotel"></i> View Hotels List
</button>
<!-- Collapsible Hotel List -->
<div class="collapse" id="hotelList">
<div class="card card-body">
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>Hotel</th>
<th>Location</th>
<th>Website</th>
<th>Email</th>
</tr>
</thead>
<tbody>
<tr>
<td>Hotel Abbazia</td>
<td>Via della Geppa 20, 34132 Trieste</td>
<td>www.hotelabbaziatrieste.it</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Albergo Alla Posta</td>
<td>Piazza Guglielmo Oberdan 1, 34122 Trieste</td>
<td>www.albergopostatrieste.it</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Hotel Colombia</td>
<td>Via della Geppa, 18, 34132 Trieste</td>
<td>www.hotelcolombia.it</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Hotel Continentale</td>
<td>Via San Nicolò, 25, 34121 Trieste</td>
<td>www.continentalehotel.com</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Grand Hotel Duchi D'Aosta Trieste</td>
<td>Piazza dell'Unità d'Italia, 2/1, 34121 Trieste</td>
<td>www.duchi.eu</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Hotel NH Trieste</td>
<td>Corso Camillo Benso Conte di Cavour, 7, 34132 Trieste</td>
<td>www.nh-hotels.it</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Hotel Milano</td>
<td>Via Carlo Ghega, 17, 34132 Trieste</td>
<td>www.hotel-milano.com</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Hotel Miramare</td>
<td>Viale Miramare, 325/1, 34136 Trieste</td>
<td>www.hotelmiramaretrieste.it</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Novo Hotel Impero</td>
<td>Via Sant'Anastasio, 1, 34132 Trieste</td>
<td>www.hotelimperotrieste.it</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Hotel Roma</td>
<td>Via Carlo Ghega, 7, 34132 Trieste</td>
<td>www.hotelroma-trieste.it</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Starhotels Savoia Excelsior Palace</td>
<td>Riva del Mandracchio, 4, 34124 Trieste</td>
<td>www.starhotels.com</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Tre Merli Beach Hotel</td>
<td>Viale Miramare, 44, 34100 Trieste</td>
<td>www.tremerlibeachhotel.com</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Urban Hotel Design</td>
<td>Androna Chiusa, 4, 34121 Trieste</td>
<td>www.urbanhotel.it</td>
<td>[email protected]</td>
</tr>
<tr>
<td>DoubleTree by Hilton Hotel</td>
<td>Piazza della Repubblica, 1, 34122 Trieste</td>
<td>www.hiltonhotels.it</td>
<td>[email protected]</td>
</tr>
<tr>
<td>The modernist Hotel</td>
<td>Corso Italia, 12, 34121 Trieste</td>
<td>www.themodernisthotel.it</td>
<td>[email protected]</td>
</tr>
<tr>
<td>Residence del Mare</td>
<td>Via della Madonna del Mare, 4, 34127 Trieste</td>
<td>www.residencedelmare.it</td>
<td>[email protected]</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Venue & Accommodation Section End -->
<!-- Gallary Section Start -->
<section id="gallery" class="section-padding bg-light">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Photo Gallery</h1>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 text-center">
<a href="gallery.html" class="btn btn-common btn-lg wow fadeInUp" data-wow-delay="0.3s">
<i class="lni-camera"></i> Browse Photo Gallery
</a>
</div>
</div>
</div>
</section>
<!-- Gallary Section End -->
<!-- Team Section Start -->
<section id="team" class="section-padding">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Organizers</h1>
<p class="wow fadeInDown" data-wow-delay="0.2s">YMMOR 2025 Organizing Committee</p>
</div>
</div>
</div>
<div class="row justify-content-center">
<!-- First Row -->
<div class="row mb-4 justify-content-center" style="max-width: 800px; margin: auto;">
<!-- Anna Ivagnes -->
<div class="col-sm-12 col-md-6 mb-4">
<div class="team-item wow fadeInUp" data-wow-delay="0.2s">
<div class="team-img-wrapper">
<div class="team-img">
<img class="img-fluid rounded" src="assets/img/team/anna.jpg" alt="Anna Ivagnes">
<div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="mailto:[email protected]" class="social-icon"><i class="lni-envelope" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/in/anna-ivagnes-2904521b6/" class="social-icon"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="info-text mt-3">
<h3>Anna Ivagnes</h3>
<p>PhD Student, SISSA</p>
</div>
</div>
</div>
<!-- Moaad Khamlich -->
<div class="col-sm-12 col-md-6 mb-4">
<div class="team-item wow fadeInUp" data-wow-delay="0.4s">
<div class="team-img-wrapper">
<div class="team-img">
<img class="img-fluid rounded" src="assets/img/team/moaad.jpg" alt="Moaad Khamlich">
<div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="mailto:[email protected]" class="social-icon"><i class="lni-envelope" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/in/moaad-khamlich-236a672a2/" class="social-icon"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="info-text mt-3">
<h3>Moaad Khamlich</h3>
<p>PhD Student, SISSA</p>
</div>
</div>
</div>
</div>
<!-- Second Row -->
<div class="row justify-content-center" style="max-width: 800px; margin: auto;">
<!-- Ivan Prusak -->
<div class="col-sm-12 col-md-6 mb-4">
<div class="team-item wow fadeInUp" data-wow-delay="0.6s">
<div class="team-img-wrapper">
<div class="team-img">
<img class="img-fluid rounded" src="assets/img/team/ivan.jpg" alt="Ivan Prusak">
<div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="mailto:[email protected]" class="social-icon"><i class="lni-envelope" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/in/ivan-prusak/" class="social-icon"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="info-text mt-3">
<h3>Ivan Prusak</h3>
<p>PostDoc, SISSA</p>
</div>
</div>
</div>
<!-- Pierfrancesco Siena -->
<div class="col-sm-12 col-md-6 mb-4">
<div class="team-item wow fadeInUp" data-wow-delay="0.8s">
<div class="team-img-wrapper">
<div class="team-img">
<img class="img-fluid rounded" src="assets/img/team/pier.jpg" alt="Pierfrancesco Siena">
<div class="team-overlay">
<div class="overlay-social-icon text-center">
<ul class="social-icons">
<li><a href="mailto:[email protected]" class="social-icon"><i class="lni-envelope" aria-hidden="true"></i></a></li>
<li><a href="https://www.linkedin.com/in/pierfrancesco-siena-80420b203/" class="social-icon"><i class="lni-linkedin-filled" aria-hidden="true"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="info-text mt-3">
<h3>Pierfrancesco Siena</h3>
<p>PhD Student, SISSA</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Team Section End -->
<!-- Sponsors Section Start -->
<section id="sponsors" class="section-padding bg-light">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Sponsors</h1>
</div>
</div>
</div>
<div class="row mb-30 text-center wow fadeInDown align-items-center" data-wow-delay="0.3s">
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="spnsors-logo">
<a href="https://www.sissa.it">
<img class="img-fluid" src="assets/img/sponsors/sissa.png" alt="SISSA" style="height: 300px; width: auto; object-fit: contain;">
</a>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="spnsors-logo">
<a href="https://mathlab.sissa.it">
<img class="img-fluid" src="assets/img/sponsors/mathlab.png" alt="SISSA mathLab" style="height: 300px; width: auto; object-fit: contain;">
</a>
</div>
</div>
<div class="col-md-4 col-sm-4 col-xs-12">
<div class="spnsors-logo">
<a href="https://www.consorzioinest.it/en/">
<img class="img-fluid" src="assets/img/sponsors/inest.png" alt="iNEST" style="height: 300px; width: auto; object-fit: contain;">
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Sponsors Section End -->
<!-- Contact Section Start -->
<section id="contact" class="section-padding">
<div class="container">
<div class="row justify-content-center">
<div class="col-12">
<div class="section-title-header text-center">
<h1 class="section-title wow fadeInUp" data-wow-delay="0.2s">Contact Us</h1>
<p class="wow fadeInDown" data-wow-delay="0.2s">Get in touch with the organizing committee</p>
</div>
</div>
<div class="col-lg-8 col-md-10">
<div class="contact-card wow fadeInUp" data-wow-delay="0.3s">
<div class="text-center">
<i class="lni-envelope" style="font-size: 48px; color: #3d60f4; margin-bottom: 20px;"></i>
<h3 class="mb-4">Send us an email</h3>
<p class="mb-4">For any questions about the conference, please don't hesitate to contact us at:</p>
<a href="mailto:[email protected]" class="btn btn-common btn-lg">
<i class="lni-envelope"></i> [email protected]
</a>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Footer Section Start -->
<footer class="footer-area section-padding">
<div class="container">
<div class="row">
<div class="col-md-6 col-lg-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-delay="0.2s">
<h3>YMMOR 2025</h3>
<p>
SISSA International School for Advanced Studies<br>
Via Bonomea, 265<br>
34136 Trieste TS, Italy
</p>
</div>
<div class="col-md-6 col-lg-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-delay="0.4s">
<h3>Quick Links</h3>
<ul>
<li><a href="#about">About Conference</a></li>
<li><a href="#program">Program</a></li>
<li><a href="#registration">Registration</a></li>
<li><a href="#venue">Venue</a></li>
</ul>
</div>
<div class="col-md-6 col-lg-3 col-sm-6 col-xs-12 wow fadeInUp" data-wow-delay="0.6s">
<h3>Contact</h3>
<ul>
<li><i class="lni-envelope"></i> <a href="mailto:[email protected]">[email protected]</a></li>
</ul>
</div>
</div>
</div>
</footer>
<!-- Footer Section End -->
<div id="copyright">
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="site-info">
<p>© Designed and Developed by <a href="http://uideck.com" rel="nofollow">UIdeck</a></p>
</div>
</div>
</div>
</div>
</div>
<!-- Go to Top Link -->
<a href="#" class="back-to-top">
<i class="lni-chevron-up"></i>
</a>
<div id="preloader">
<div class="sk-circle">
<div class="sk-circle1 sk-child"></div>
<div class="sk-circle2 sk-child"></div>
<div class="sk-circle3 sk-child"></div>
<div class="sk-circle4 sk-child"></div>
<div class="sk-circle5 sk-child"></div>
<div class="sk-circle6 sk-child"></div>
<div class="sk-circle7 sk-child"></div>
<div class="sk-circle8 sk-child"></div>
<div class="sk-circle9 sk-child"></div>
<div class="sk-circle10 sk-child"></div>
<div class="sk-circle11 sk-child"></div>
<div class="sk-circle12 sk-child"></div>
</div>
</div>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="assets/js/jquery-min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
<script src="assets/js/jquery.countdown.min.js"></script>
<script src="assets/js/jquery.nav.js"></script>
<script src="assets/js/jquery.easing.min.js"></script>
<script src="assets/js/wow.js"></script>
<script src="assets/js/jquery.slicknav.js"></script>
<script src="assets/js/nivo-lightbox.js"></script>
<script src="assets/js/main.js"></script>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"></script>
<script>
$(document).ready(function(){
$('.lightbox').nivoLightbox({
effect: 'fadeScale',
keyboardNav: true,
clickOverlayToClose: true,
errorMessage: 'The requested content cannot be loaded. Please try again later.'
});
});
</script>
<script>
document.addEventListener('DOMContentLoaded', function() {
// SISSA coordinates
const sissa = [45.679760, 13.775040];
// Initialize map
const map = L.map('map').setView(sissa, 15);
// Add OpenStreetMap tiles
L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png', {
attribution: '© <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors'
}).addTo(map);
// Add marker for SISSA
const marker = L.marker(sissa).addTo(map);
// Add popup with info
marker.bindPopup(`
<div style="padding: 5px;">
<h5 style="margin: 0 0 5px 0;">SISSA</h5>
<p style="margin: 0;">Via Bonomea, 265<br>34136 Trieste TS, Italy</p>
</div>
`).openPopup();
});
</script>
<script>
document.addEventListener('DOMContentLoaded', function() {
// Handle registration button clicks from other sections
const registerButtons = document.querySelectorAll('a[href="#registration"]');
registerButtons.forEach(button => {
button.addEventListener('click', function(e) {
e.preventDefault();
// Scroll to registration section
document.querySelector('#registration').scrollIntoView({ behavior: 'smooth' });
// Show the form after a brief delay to allow for scrolling
setTimeout(() => {
const registrationForm = document.querySelector('#registrationForm');
const bsCollapse = new bootstrap.Collapse(registrationForm, { show: true });
}, 500);
});
});
});
</script>
</body>
</html>