-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
76 lines (76 loc) · 3.13 KB
/
contact.html
File metadata and controls
76 lines (76 loc) · 3.13 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Contact | Open TOPAS</title>
<link rel="stylesheet" href="assets/styles.css" />
</head>
<body>
<header>
<div class="navbar">
<h1>
<a class="logo-mark" href="index.html" aria-label="Open TOPAS home">
<img src="assets/img/Logo.png" alt="" />
</a>
</h1>
<button class="menu-toggle" type="button" aria-label="Toggle navigation" aria-expanded="false">
<span></span>
<span></span>
<span></span>
</button>
<nav id="primary-nav" class="nav-links" aria-label="Main navigation">
<a href="about.html">About</a>
<a href="download.html">Download</a>
<a href="documentation.html">Documentation</a>
<a href="https://github.com/OpenTOPAS/OpenTOPAS/discussions" target="_blank" rel="noopener">
User Forum <span class="external-icon" aria-hidden="true">↗</span>
</a>
<a href="publications.html">Publications</a>
<a href="contact.html" aria-current="page">Contact</a>
</nav>
</div>
</header>
<main>
<section class="section-inner" style="padding:4rem 1.5rem 3rem;">
<h2>Contact & Support</h2>
<p>
Reach the OpenTOPAS community via our public forum or contact the current project supervisors directly.
</p>
<div class="grid">
<article class="card link-card" data-href="https://github.com/OpenTOPAS/topas/discussions" tabindex="0">
<h4>User Forum</h4>
<p>
Join the GitHub Discussions board to ask questions, share workflows, or browse previously answered
threads.
</p>
<p><a href="https://github.com/OpenTOPAS/topas/discussions" target="_blank" rel="noopener">OpenTOPAS User Forum →</a></p>
</article>
<article class="card link-card" data-href="https://github.com/OpenTOPAS/OpenTOPAS/issues" tabindex="0">
<h4>Bug Reports</h4>
<p>
Report vulnerabilities via the main issue tracker—use the security template, include reproduction steps,
and reference affected commits or configurations.
</p>
<p><a href="https://github.com/OpenTOPAS/OpenTOPAS/issues" target="_blank" rel="noopener">OpenTOPAS Issues →</a></p>
</article>
<article class="card">
<h4>Collaborations & Inquiries</h4>
<p>
For other matters, please contact the current OpenTOPAS project supervisors:
</p>
<ul class="contact-list">
<li>José Ramos-Méndez · UCSF</li>
<li>Jan Schuemann · MGH</li>
</ul>
<p>Email introductions via the user forum or your existing collaboration channels.</p>
</article>
</div>
</section>
</main>
<footer>
<small>© <span id="year"></span> The TOPAS Collaboration</small>
</footer>
<script src="assets/site.js"></script>
</body>
</html>