-
Notifications
You must be signed in to change notification settings - Fork 16
/
mailing-list.php
53 lines (48 loc) · 2.1 KB
/
mailing-list.php
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
<!DOCTYPE html>
<html>
<head>
<title>Simple DirectMedia Layer - Mailing Lists</title>
<?php require_once("include/meta.inc.php"); ?><?php $current_page = basename(__FILE__, '.php'); ?>
</head>
<body>
<div id="wrapper">
<?php require_once("include/header.inc.php"); ?>
<div id="left">
<?php require_once("include/sidebar.inc.php"); ?>
</div>
<div id="content">
<h1>SDL Discussion and Mailing Lists</h1>
<div class="col left">
<p><strong>
Discussion:
</strong>
<br />
This is a discussion forum for SDL, with categories for development,
announcements, games and repository commits. Sign up at:
<br />
<a href="https://discourse.libsdl.org">
https://discourse.libsdl.org</a>
<br />
</p>
<p><strong>
Announcement Mailing List:
</strong>
<br />
This mailing list is very low volume, and is used for announcing news and
new versions of SDL:
<br />
<a href="https://www.libsdl.org/announce-list.php">
https://www.libsdl.org/announce-list.php</a>
<br />
Announcements are also posted to the forum:
<br />
<a href="https://discourse.libsdl.org/c/sdl-announcements/5">
https://discourse.libsdl.org/c/sdl-announcements/5</a>
<br />
</p>
</div>
<div class="clearer"></div>
</div>
<?php require_once("include/footer.inc.php"); ?>
</body>
</html>