-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
359 lines (342 loc) · 15 KB
/
index.html
File metadata and controls
359 lines (342 loc) · 15 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<img src="Images/TopBannerHome.png"
alt="Mimetic Operators Library Enhanced (MOLE) - Open-source Software Ecosystem"
width="90%"/>
<!--<title>MOLE — Mimetic Operators Library Enhanced</title>-->
<link rel="icon" type="image/png" href="Images/mole-logo.png">
<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+Mono:wght@400;500&family=Syne:wght@400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap"
rel="stylesheet" />
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--green: #69b7c8;
--green-dark: #256371;
--green-light: #75bdce;
--green-mid: #458fa0;
--fnt-light: #09cdf9;
--bg: #F7F6F2;
--surface: #FFFFFF;
--text: #1A1A18;
--text-muted: #265059;
--border: rgba(26,26,24,0.1);
--border-strong: rgba(26,26,24,0.18);
--accent: #0e86a1;
--mono: 'DM Mono', monospace;
--sans: 'DM Sans', sans-serif;
--display: 'Syne', sans-serif;
}
html { scroll-behavior: smooth; }
body {
font-family: var(--sans);
background: var(--bg);
color: var(--text);
font-size: 16px;
line-height: 1.6;
overflow-x: hidden;
}
/* ── NAV ── */
nav {
position: sticky; top: 0; z-index: 100;
background: rgba(247,246,242,0.92);
backdrop-filter: blur(12px);
border-bottom: 1px solid var(--border);
display: flex; align-items: center; justify-content: space-between;
padding: 0 2.5rem; height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; }
.nav-logomark {
width: 38px; height: 38px; border-radius: 10px;
background: var(--green); display: flex; align-items: center; justify-content: center;
font-family: var(--display); font-size: 18px; font-weight: 700; color: #fff;
}
.nav-name { font-family: var(--display); font-size: 17px; font-weight: 600; letter-spacing: -0.3px; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
font-size: 18px; color: var(--text-muted); text-decoration: none;
font-family: var(--mono); font-weight: 400; letter-spacing: 0.02em;
transition: color 0.15s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
font-family: var(--mono); font-size: 13px; font-weight: 500;
padding: 8px 18px; border-radius: 8px;
background: var(--green); color: #fff;
border: none; cursor: pointer; text-decoration: none;
letter-spacing: 0.01em; transition: background 0.15s;
}
.nav-cta:hover { background: var(--green-mid); }
/* ── HERO ── */
.hero {
padding: 1rem 2.5rem 5rem;
border-bottom: 1px solid var(--border);
position: relative; overflow: hidden;
}
.hero::before {
content: '';
position: absolute; top: -80px; right: -100px;
/* width: 600px; height: 600px; border-radius: 50%; */
background: radial-gradient(circle, rgba(29,158,117,0.08) 0%, transparent 70%);
pointer-events: none;
}
.hero-badge {
display: inline-flex; align-items: center; gap: 6px;
font-family: var(--mono); font-size: 12px; letter-spacing: 0.05em;
/* padding: 5px 12px; border-radius: 99px; */
background: var(--green-light); color: var(--green-mid);
border: 1px solid rgba(29,158,117,0.2);
margin-bottom: 1.5rem;
}
.hero-badge::before {
content: ''; width: 6px; height: 6px; border-radius: 50%;
background: var(--green); display: block;
}
.hero h1 {
font-family: var(--display); font-size: clamp(30px, 5vw, 58px);
font-weight: 700; line-height: 1.08; letter-spacing: -1.5px;
margin-bottom: 1.0rem;
}
.hero h1 em { font-style: normal; color: var(--green); }
.hero-desc {
font-size: 17px; color: var(--text-muted);
line-height: 1.75; margin-bottom: 1.5rem; font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3.5rem; }
.btn-primary {
padding: 12px 26px; background: var(--green); color: #fff;
border: none; border-radius: 10px; font-size: 15px;
font-family: var(--sans); font-weight: 500; cursor: pointer;
text-decoration: none; display: inline-block; transition: background 0.15s;
}
.btn-primary:hover { background: var(--green-mid); }
.btn-outline {
padding: 12px 26px; background: transparent; color: var(--text);
border: 1px solid var(--border-strong); border-radius: 10px; font-size: 15px;
font-family: var(--sans); font-weight: 500; cursor: pointer;
text-decoration: none; display: inline-block; transition: border-color 0.15s, background 0.15s;
}
.btn-outline:hover { background: var(--surface); border-color: var(--text-muted); }
.hero-stats {
display: flex; gap: 0; flex-wrap: wrap;
border: 1px solid var(--border); border-radius: 14px;
background: var(--surface); overflow: hidden;
max-width: 680px;
}
.stat {
flex: 1; padding: 1.25rem 1.5rem;
border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num { font-family: var(--display); font-size: 24px; font-weight: 700; }
.stat-label { font-size: 12px; color: var(--text-muted); font-family: var(--mono); margin-top: 2px; }
/* ── SECTIONS ── */
section { padding: 2.5rem 2.5rem; }
/* border-bottom: 1px solid var(--border); } */
.section-header {
display: flex; align-items: baseline; justify-content: space-between;
margin-bottom: 1.75rem;
}
.section-header h2 {
font-family: var(--display); font-size: 22px; font-weight: 600;
letter-spacing: -0.3px;
}
.see-all {
font-family: var(--mono); font-size: 16px; color: var(--green);
text-decoration: none; letter-spacing: 0.04em;
}
.see-all:hover { text-decoration: underline; }
/* ── NEWS GRID ── */
.news-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (max-width: 640px) { .news-grid { grid-template-columns: 1fr; } }
.news-card {
background: var(--surface); border: 1px solid var(--border);
border-radius: 14px; padding: 1.25rem 1.5rem;
display: flex; gap: 16px; align-items: flex-start;
transition: border-color 0.15s;
}
.news-card:hover { border-color: var(--border-strong); }
.news-info { flex: 1; }
.news-title { font-family: var(--display); font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.news-meta { font-size: 18px; color: var(--text-muted); font-family: var(--mono); }
/* ── EVENTS GRID ── */
.events-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 640px) { .events-grid { grid-template-columns: 1fr; } }
.events-card {
background: var(--surface); border: 1px solid var(--border);
border-radius: 14px; padding: 1.25rem 1.5rem;
display: flex; gap: 16px; align-items: flex-start;
transition: border-color 0.15s;
}
.events-card:hover { border-color: var(--border-strong); }
.events-datebox {
min-width: 52px; height: 56px; border-radius: 10px;
background: var(--green-light); border: 1px solid rgba(29,158,117,0.2);
display: flex; flex-direction: column; align-items: center; justify-content: center;
flex-shrink: 0;
}
.events-datebox .month {
font-family: var(--mono); font-size: 16px; font-weight: 500;
color: var(--bg); letter-spacing: 0.08em; text-transform: uppercase;
}
.events-datebox .day {
font-family: var(--display); font-size: 18px; font-weight: 700;
color: var(--green-dark); line-height: 1;
}
.events-info { flex: 1; }
.events-title { font-family: var(--display); font-size: 20px; font-weight: 600; margin-bottom: 4px; }
.events-meta { font-size: 18px; color: var(--text-muted); font-family: var(--mono); }
.events-pill {
display: inline-block; margin-top: 8px;
font-family: var(--mono); font-size: 18px; padding: 3px 10px; border-radius: 99px;
}
.pill-upcoming { background: var(--green-light); color: var(--bg); }
.pill-past { background: var(--bg); color: var(--green-dark); border: 1px solid var(--border); }
/* ── FOOTER ── */
footer {
padding: 1.75rem 2.5rem;
display: flex; align-items: center; justify-content: space-between;
flex-wrap: wrap; gap: 1rem;
}
.footer-left { font-family: var(--mono); font-size: 12px; color: var(--text-muted); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
font-family: var(--mono); font-size: 12px; color: var(--text-muted);
text-decoration: none;
}
.footer-links a:hover { color: var(--text); }
/* ── RESPONSIVE NAV ── */
@media (max-width: 768px) {
.nav-links { display: none; }
.hero { padding: 4rem 1.5rem 3rem; }
section { padding: 5.5rem 1.5rem; }
nav { padding: 0 1.5rem; }
footer { padding: 1.5rem; }
}
</style>
</head>
<body>
<!-- NAV -->
<nav>
<a href="https://mole-docs.readthedocs.io/">
<img src="Images/mole-logo.png" alt="MOLE Library Information" height="50"/>
</a>
<ul class="nav-links">
<li><a href="https://mole-ose.org">Home</a></li>
<li><a href="https://mole-ose.org/gallery.html">Gallery</a></li>
<li><a href="https://mole-docs.readthedocs.io/en/main/index.html">Documentation</a></li>
<li><a href="Events/events.html"">Events</a></li>
<li><a href="https://mole-ose.org/collaborators.html">Collaborators</a></li>
<li><a href="https://mole-ose.org/sponsors.html">Sponsors</a></li>
</ul>
<!-- <a class="nav-cta" href="https://github.com/csrc-sdsu/mole" target="_blank">GitHub ↗</a> -->
</nav>
<!-- Home -->
<section id="Home">
<div class="hero">
<h1>MOLE Open-source Software Ecosystem (OSE)</h1>
<p class="hero-desc">
<span style="color: var(--text);font-weight: 700;">The MOLE Library </span> implements high-order mimetic difference operators to numerically
solve partial differential equations. It provides discrete analogs of
the most common vector calculus operators: Gradient, Divergence, Laplacian,
and Curl. These operators act on staggered grids (uniform, non-uniform,
and curvilinear) and preserve locally and globally quantities of interests
for systems of conservation laws.<br>
<span style="color: var(--text);font-weight: 700;">The MOLE OSE organization</span> was established to support
the MOLE library’s ecosystem as a sustainable, robust, secure, and more
readily available library of high-order mimetic differential operators.
The MOLE OSE serves academic and industrial communities that require
high-performance solvers for PDEs.</p>
<!-- NEWS AND UPCOMING EVENTS -->
<section id="events">
<p style="font-family: var(--sans); color:#265059; font-size: 32px; font-weight: 600; ">
MOLE News and Upcoming Events
</p>
<div class="news-grid" id="news-grid"></div><br>
<div class="events-grid" id="events-grid"></div><br>
<a class="see-all" href="Events/events.html">Full list of Events →</a>
</section>
<div class="hero-actions">
<a class="btn-primary" href="https://github.com/csrc-sdsu/mole" target="_blank">View on GitHub</a>
<a class="btn-outline" href="https://mole-docs.readthedocs.io/" target="_blank">Read the docs</a>
<a class="btn-outline" href="https://mole-docs.readthedocs.io/en/main/intros/ose_organization_wrapper.html"
target="_blank">MOLE OSE Organization</a>
<a class="btn-outline" href="https://mole-docs.readthedocs.io/en/main/intros/contributing_wrapper.html"
target="_blank">Contributing to MOLE</a>
<a class="btn-outline" href="https://mole-docs.readthedocs.io/en/main/intros/code_of_conduct_wrapper.html"
target="_blank">Code of Conduct</a>
<a class="btn-outline" href="https://mole-docs.readthedocs.io/en/main/intros/publications_wrapper.html"
target="_blank">Selected Publications</a>
</div>
<!-- the lines below are for future inclusion of KPIs and metrics-->
<!-- <div class="hero-stats">
<div class="stat">
<div class="stat-num">12+</div>
<div class="stat-label">applications</div>
</div -->
</div>
</section>
<!-- FOOTER -->
<footer>
<div class="footer-left">© 2008-2024 San Diego State University Research Foundation (SDSURF)</div>
<div class="footer-links">
<a href="https://www.csrc.sdsu.edu/" target="_blank">CSRC at SDSU</a>"
<a href="https://castillo.sdsu.edu/" target="_blank">Contact</a>
</div>
</footer>
</section>
<script>
/* ── DATA ── Edit this section to update content ── */
const EVENTS = [
{ month: "Apr", day: "30", title: "MOLE Users's Group Meeting 2026",
loc: "San Diego State University, CA", upcoming: true,
url: "Events/MUG20260430.html" },
{ month: "May", day: "12", title: "MOLE Library Tutorial",
loc: "San Diego State University, CA", upcoming: true,
url: "Events/MLTSP20260512.html" },
];
/* ── DATA ── Edit this section to update content ── */
const NEWS = [
{ title: "Current MOLE Library Release: v1.10", newstxt: false},
{ title: "Next MOLE Library Release: v1.2", newstxt:true,
txt: "The next MOLE release will include several new MATLAB/Octave and C++ features and improvements. The release date is planned for May 4, 2026" },
{ title: "Subscribe to the MOLE Users Mailing List", newstxt:true,
txt: "Stay updated with the latest news and announcements by subscribing to the MOLE Users Mailing List, send email to <a href='mailto:join@engr.sdsu.edu'>mole-join@engr.sdsu.edu</a>." },
];
/* ── RENDER: NEWS ── */
function renderNews() {
document.getElementById('news-grid').innerHTML = NEWS.map(nw => `
<div class="news-card">
<div class="news-info">
<div class="news-title">${nw.title}</div>
<span class="news-meta">${nw.newstxt ? nw.txt : ''}</span>
</div>
</div>
`).join('');
}
/* ── RENDER: EVENTS ── */
function renderEvents() {
document.getElementById('events-grid').innerHTML = EVENTS.map(ev => `
<div class="events-card">
<div class="events-datebox">
<span class="month">${ev.month}</span>
<span class="day">${ev.day}</span>
</div>
<div class="events-info">
<div class="events-title"><a href="${ev.url}" target="_blank">${ev.title}</a></div>
<div class="events-meta">${ev.loc}</div>
<span class="events-pill ${ev.upcoming ? 'pill-upcoming' : 'pill-past'}">${ev.upcoming ? 'Upcoming' : 'Past'}
</div>
</div>
`).join('');
}
/* ── INIT ── */
renderNews();
renderEvents();
</script>
</body>
</html>