-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathconnected.html
More file actions
76 lines (66 loc) · 3.16 KB
/
Copy pathconnected.html
File metadata and controls
76 lines (66 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
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>Important Dates | POLAR @ 2026</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet"/>
<link rel="stylesheet" href="assets/style.css"/>
</head>
<body>
<nav class="nav nav-tabs justify-content-center shadow-sm bg-white sticky-top">
<a class="nav-link" href="index.html#about">About</a>
<a class="nav-link" href="tasks.html">Tasks</a>
<a class="nav-link" href="participation.html">Participation</a>
<a class="nav-link" href="organizers.html">Organizers</a>
</nav>
<section class="stay-connected" style="margin-top: 2rem;">
<div class="container">
<h2>🌐 Stay Connected</h2>
<p>We’d love to hear from you! Whether you're a participant, researcher, or enthusiast, there are multiple ways to stay in the loop and engage with the POLAR shared task.</p>
<h3>📧 Mailing List</h3>
<p>Subscribe to our mailing list for key announcements, reminders, and dataset releases:<br>
<a href="#" style="font-weight: bold;">👉 Join the Mailing List</a>
</p>
<h3>💬 Join the Community</h3>
<ul>
<li><strong>GitHub Discussions</strong><br>
Ask questions, report issues, or suggest improvements.<br>
<a href="#" target="_blank" rel="noopener noreferrer">🔗 Visit our GitHub Repository</a>
</li>
<li><strong>Slack (Coming Soon)</strong><br>
We’ll launch a Slack workspace for real-time discussions and announcements. Stay tuned for the invite link!
</li>
</ul>
<h3>📱 Social Media</h3>
<p>Follow us for bite-sized updates, reminders, and shared resources:</p>
<ul>
<li><strong>Twitter/X:</strong> <a href="https://twitter.com/polar_task2026" target="_blank" rel="noopener noreferrer">@polar_task2026</a></li>
<li><strong>LinkedIn:</strong> <a href="#" target="_blank" rel="noopener noreferrer">POLAR Shared Task</a></li>
</ul>
<h3>🎙️ Events & Webinars</h3>
<p>We’ll host live Q&A sessions and webinars during major phases of the task:</p>
<ul>
<li>Kickoff Webinar – July 2025</li>
<li>Data Walkthrough – October 2025</li>
<li>Evaluation Prep – January 2026</li>
</ul>
<p>Register details will be shared on this site and via email.</p>
<h3>📮 Contact the Organizers</h3>
<p>Have a question or want to collaborate? Reach out to us directly:<br>
<strong>Email:</strong> <a href="mailto:polar.semeval2026@nlp-research.org">polar.semeval2026@nlp-research.org</a><br>
We usually respond within 2–3 business days.
</p>
</div>
</section>
<footer class="footer-section">
<div class="footer-container text-center">
<img src="assets/logo-small.png" alt="POLAR Task Logo" style="width: 80px; height: auto; margin-bottom: 10px;" />
<p>© 2026 POLAR Shared Task. All rights reserved.</p>
<p>Made with ❤️ by the POLAR Team</p>
</div>
</footer>
<!-- Bootstrap JS -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>