sdlweb: Updated SDL website with Git source snapshot

From 39f88c632be7be7674abfabd53f00788ccc159ad Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Sat, 24 Jul 2021 07:14:17 +0000
Subject: [PATCH] Updated SDL website with Git source snapshot

---
 hg.php => git.php       | 121 ++++++++++++++++++++--------------------
 include/sidebar.inc.php |   2 +-
 2 files changed, 60 insertions(+), 63 deletions(-)
 rename hg.php => git.php (68%)

diff --git a/hg.php b/git.php
similarity index 68%
rename from hg.php
rename to git.php
index 2980b78..2340a08 100644
--- a/hg.php
+++ b/git.php
@@ -1,62 +1,59 @@
-<!DOCTYPE html>
-<html>
-    <head>        
-        <title>Simple DirectMedia Layer - SDL source snapshots</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 source snapshots</h1>
-                <div>
-
-                    <p>
-                        The latest development version of SDL is available via <a href="https://www.mercurial-scm.org">Mercurial</a>.
-                    </p>
-                    <p>
-                        Mercurial allows you to get up-to-the-minute fixes and enhancements;
-                        as a developer works on a source tree, you can mirror it instead of waiting
-                        for an official release.
-                    </p>
-                    <p>
-                        If you're new to Mercurial, check out the great tutorial at <a href="http://hginit.com">hginit.com</a>!
-                    </p>
-		</div>
-
-                <div class="col left">
-<h2>SDL 2.0</h2>
-<blockquote>
-<pre>
-hg clone <a href="http://hg.libsdl.org/SDL">http://hg.libsdl.org/SDL</a>
-</pre>
-</blockquote>
-The TODO list for the next release is available <a href="todo.php">here</a>.
-</p>
-
-<hr/>
-
-<p><font color="#414141">
-Source snapshot for SDL 2.0 (Updated
-<!-- SDL 2.0 DATE --> Thu Feb  4
-)</p>
-<blockquote>
-<!-- SDL 2.0 ZIP --><a href="tmp/SDL-2.0.15-14858.zip">SDL-2.0.15-14858.zip</a><!-- -->
-<br/>
-<!-- SDL 2.0 TGZ --><a href="tmp/SDL-2.0.15-14858.tar.gz">SDL-2.0.15-14858.tar.gz</a><!-- -->
-</blockquote>
-                  </div>
-                <div class="clearer"></div>            
-                <div>
-<strong>Note: These are not official releases and may be unstable!</strong>
-                </div>
-            </div>
-            <div class="clearer"></div>            
-        </div>
-        <?php require_once("include/footer.inc.php"); ?> 
-
-    </body>
-</html>
+<!DOCTYPE html>
+<html>
+    <head>        
+        <title>Simple DirectMedia Layer - SDL source snapshots</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 source snapshots</h1>
+                <div>
+
+                    <p>
+                        The latest development version of SDL is available via <a href="https://git-scm.com/">Git</a>.
+                    </p>
+                    <p>
+                        Git allows you to get up-to-the-minute fixes and enhancements;
+                        as a developer works on a source tree, you can mirror it instead of waiting
+                        for an official release.
+                    </p>
+		</div>
+
+                <div class="col left">
+<h2>SDL 2.0</h2>
+<blockquote>
+<pre>
+git clone https://github.com/libsdl-org/SDL.git
+</pre>
+</blockquote>
+The TODO list for the next release is available <a href="todo.php">here</a>.
+</p>
+
+<hr/>
+
+<p><font color="#414141">
+Source snapshot for SDL 2.0 (Updated
+<!-- SDL 2.0 DATE --> Sat Jul 24
+)</p>
+<blockquote>
+<!-- SDL 2.0 ZIP --><a href="tmp/SDL-2.0.15-669714c.zip">SDL-2.0.15-669714c.zip</a><!-- -->
+<br/>
+<!-- SDL 2.0 TGZ --><a href="tmp/SDL-2.0.15-669714c.tar.gz">SDL-2.0.15-669714c.tar.gz</a><!-- -->
+</blockquote>
+                  </div>
+                <div class="clearer"></div>            
+                <div>
+<strong>Note: These are not official releases and may be unstable!</strong>
+                </div>
+            </div>
+            <div class="clearer"></div>            
+        </div>
+        <?php require_once("include/footer.inc.php"); ?> 
+
+    </body>
+</html>
diff --git a/include/sidebar.inc.php b/include/sidebar.inc.php
index 944cfdb..0b09058 100644
--- a/include/sidebar.inc.php
+++ b/include/sidebar.inc.php
@@ -22,7 +22,7 @@
     <ul class="menu">
         <li<?php if($current_page=="download-2.0") echo" class=\"active\"";?>><a href="/download-2.0.php">SDL Releases</a></li>
         <!--<li<?php if($current_page=="download-1.2") echo" class=\"active\"";?>><a href="/download-1.2.php">SDL 1.2</a></li>-->
-        <li<?php if($current_page=="hg") echo" class=\"active\"";?>><a href="/hg.php">SDL Mercurial</a></li>
+        <li<?php if($current_page=="git") echo" class=\"active\"";?>><a href="/git.php">SDL Git</a></li>
         <li<?php if($current_page=="languages") echo" class=\"active\"";?>><a href="/languages.php">Bindings</a></li>
     </ul>
 </div>