-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresentations.html
More file actions
75 lines (61 loc) · 3.16 KB
/
presentations.html
File metadata and controls
75 lines (61 loc) · 3.16 KB
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
<!-- Presentations Page -->
<!DOCTYPE html>
<html lang="en">
<!-- HEAD CONTENT-->
<head>
<!-- WEB PAGE TITLE-->
<title>Presentations – Romeo O. M.</title>
<!-- METADATA -->
<meta charset="UTF-8"/> <!-- Sets character encoding so symbols/text display correctly -->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/> <!-- Makes site mobile-friendly (scales properly on phones & tablets) -->
<meta name="author" content="Orlando M. Romeo" />
<meta name="description" content="Presentations by Orlando M. Romeo, both as first author and co-author, for international, national, and institutional conferences/meetings." />
<meta name="keywords" content="Orlando Romeo, Orlando M. Romeo, presentations, conferences, meetings, AGU" />
<!-- Open Graph -->
<meta property="og:title" content="Presentations – Romeo O. M.">
<meta property="og:description" content="Presentations by Orlando M. Romeo, both as first author and co-author, for international, national, and institutional conferences/meetings.">
<meta property="og:image" content="https://omromeo.com/images/OrlandoMRomeo.jpg">
<meta property="og:url" content="https://omromeo.com/presentations.html">
<meta property="og:type" content="website">
<!-- PAGE STYLINGS -->
<link rel="stylesheet" href="assets/css/style.css"> <!-- Links to your external stylesheet for custom styles -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css"> <!-- Font Awesome for icons -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<!-- Favicon -->
<link rel="icon" type="image/x-icon" href="/images/favicon.ico?v=2">
</head>
<!-- Main HTML Body visible on page -->
<body>
<!-- Top Navigation Menu -->
<nav class="top-nav" id="navbar"></nav>
<script src="assets/js/nav-menu.js"></script>
<!-- Sidebar -->
<div class="presentations-page">
<aside class="pres-sidebar">
<h2>Presentations</h2>
<div class="present-gallery"></div>
<!-- Start cycling the gallery -->
<script src="assets/js/present-gallery-cycle.js"></script>
<h4> </h4>
<h3>Presentation Highlights</h3>
<ul>
<p>⭐ Mentored Student Presentations</p>
<p>🌍 International Presentations</p>
<p>🎓 Ph.D. Exit Seminar</p>
</ul>
<div class="present-last-updated"><p><em>Last Updated: January 2026</em></p></div>
</aside>
<!-- Presentattions -->
<div class="page-header-right"></h1>
<div id="presentations-container">
<div id="presentations-list"></div>
</div>
</div> <!-- END .presentations-page -->
<!-- Bibtex Parser Code -->
<script src="assets/js/present-bibtex-parser.js"></script>
<!-- Main Footer Section -->
<script src="assets/js/main-footer.js"></script>
</body>
</html>