Commit of old slackware.uk site content (before themes).
This commit is contained in:
commit
085631e3d3
34 changed files with 3091 additions and 0 deletions
375
html/header.php
Normal file
375
html/header.php
Normal file
|
|
@ -0,0 +1,375 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
|
||||
<html>
|
||||
<head>
|
||||
<?php
|
||||
# 20200707 bkw: this breadcrumbs() function is loosely based on one
|
||||
# from stackoverflow, but it's been simplified some.
|
||||
function breadcrumbs($sep = ' » ', $home = 'Home') {
|
||||
$pages = explode("/", $_SERVER['REQUEST_URI']);
|
||||
|
||||
# get rid of leading empty element, which will always be
|
||||
# present since we split (exploded) on "/" and the URI
|
||||
# always starts with a /. shift removes & returns the
|
||||
# first (leftmost) element.
|
||||
array_shift($pages);
|
||||
|
||||
# last dir shouldn't be a link, handled separately below.
|
||||
# pop removes & returns the last (rightmost) element.
|
||||
$last = array_pop($pages);
|
||||
if($last == "") {
|
||||
# if we got an empty $last, it means the URL ended
|
||||
# with a /, so get the last non-empty path element
|
||||
$last = array_pop($pages);
|
||||
}
|
||||
|
||||
# links are server-relative, e.g. "/foo/bar" without the
|
||||
# protocol or domain name. Build them in $url.
|
||||
$url = "";
|
||||
|
||||
# home link is always visible and always a link. Doesn't
|
||||
# matter on slackware.uk because the home page doesn't
|
||||
# include breadcrumbs (no use for them there anyway).
|
||||
$result = Array("<a href=\"/\">" . $home . "</a> ");
|
||||
|
||||
# PHP syntax note: $foo[] = "bar" is the same as Perl's
|
||||
# push @foo, "bar".
|
||||
foreach($pages as $dir) {
|
||||
$url = $url . "/" . $dir;
|
||||
$result[] = "<a href=\"" . $url . "\">" . $dir . "</a> ";
|
||||
}
|
||||
|
||||
# add last (current) dir, but not as a link.
|
||||
$result[] = $last;
|
||||
|
||||
# perl: return join($sep, @result);
|
||||
return implode($sep, $result);
|
||||
}
|
||||
?>
|
||||
<?php $titleprefix = "Slackware UK: ";
|
||||
if ($_SERVER['REQUEST_URI'] == "/") {
|
||||
$title = "Index";
|
||||
$description = "UK Slackware Linux and Slackware based project hosting & mirror service";
|
||||
$keywords = "Linux, mirror, mirrors, hosting, Slackware, Slackware64, Slackware UK, Slackware64 UK";
|
||||
} elseif (preg_match (":^/absolute/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Absolute Linux";
|
||||
$description = "Absolute Linux";
|
||||
$keywords = "Absolute Linux, Absolute, Absolute Linux mirror, Absolute mirror";
|
||||
} elseif (preg_match (":^/csb/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Cinnamon SlackBuild (CSB)";
|
||||
$description = "Cinnamon desktop environment for Slackware";
|
||||
$keywords = "Cinnamon SlackBuild, Cinnamon Slackware, CSB, Cinnamon desktop Slackware, Cinnamon desktop environment Slackware";
|
||||
} elseif (preg_match (":^/cumulative/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Cumulative Archive";
|
||||
$description = "Cumulative archive of Slackware and alienBOB's multilib trees";
|
||||
$keywords = "Slackware cumulative, Slackware64 cumulative, multilib cumulative, Slackware archive, Slackware64 archive, multilib archive";
|
||||
} elseif (preg_match (":^/freeslack/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Freeslack";
|
||||
$description = "Slackware with all proprietary components removed";
|
||||
$keywords = "Freeslack, Slackware unencumbered, Slackware non-proprietary";
|
||||
} elseif (preg_match (":^/gfs/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "GNOME From Scratch (GFS)";
|
||||
$description = "GNOME desktop environment for Slackware";
|
||||
$keywords = "GNOME Slackware, GFS, GNOME desktop Slackware, GNOME desktop environment Slackware";
|
||||
} elseif (preg_match (":^/gsb/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "GNOME SlackBuild (GSB)";
|
||||
$description = "GSB desktop environment for Slackware";
|
||||
$keywords = "GNOME SlackBuild, GSB Slackware, GSB, GNOME desktop Slackware, GNOME desktop environment Slackware";
|
||||
} elseif (preg_match (":^/microlinux/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Microlinux";
|
||||
$description = "Microlinux Enterprise Desktop and Server";
|
||||
$keywords = "Microlinux, Microlinux Enterprise, Microlinux Enterprise Desktop, Microlinux Enterprise Server, MLED, MLES, Microlinux Slackware";
|
||||
} elseif (preg_match (":^/msb/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "MATE SlackBuild (MSB)";
|
||||
$description = "MATE desktop environment for Slackware";
|
||||
$keywords = "MATE SlackBuild, MATE Slackware, MATE, MATE desktop Slackware, MATE desktop environment Slackware";
|
||||
} elseif ($_SERVER['REQUEST_URI'] == "/people/") {
|
||||
$title = "SlackBuilds and packages from people";
|
||||
$description = "SlackBuilds and packages from individual people";
|
||||
$keywords = "Slackware people, alienBOB, alienBOB Slackware, rworkman, rworkman Slackware, rlworkman, rlworkman Slackware, alphageek, alphageek Slackware";
|
||||
} elseif (preg_match (":^/people/alien-arm/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "AlienBOB's Slackware ARM CPU Build";
|
||||
$description = "AlienBOB's Slackware ARM tree";
|
||||
$keywords = "alienBOB, alienBOB ARM, alienBOB Slackware ARM";
|
||||
} elseif (preg_match (":^/people/alien-current-iso/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "AlienBOB's Slackware-current ISOs";
|
||||
$description = "AlienBOB's Slackware-current ISOs";
|
||||
$keywords = "alienBOB, alienBOB current ISO, alienBOB slackware current, alienBOB slackware64 current, alienBOB slackware-current, alienBOB slackware64-current, alienBOB slackware current ISO, alienBOB slackware64 current ISO, alienBOB slackware-current ISO, alienBOB slackware64-current ISO, Slackware current ISO, Slackware64 current ISO, current ISO";
|
||||
} elseif (preg_match (":^/people/alien-kde/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "AlienBOB's 'Ktown' KDE Builds";
|
||||
$description = "AlienBOB's 'ktown' KDE builds";
|
||||
$keywords = "alienBOB, alienBOB KDE, alienBOB ktown, alienBOB Slackware KDE, alienBOB Slackware ktown, Slackware KDE, Slackware ktown";
|
||||
} elseif (preg_match (":^/people/alien-openvz/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "AlienBOB's OpenVZ Container Template";
|
||||
$description = "AlienBOB's OpenVZ container template images";
|
||||
$keywords = "alienBOB, alienBOB OpenVZ, alienBOB Slackware OpenVZ, Slackware OpenVZ";
|
||||
} elseif (preg_match (":^/people/alien-slacklive/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "AlienBOB's Slackware Live (slaklive)";
|
||||
$description = "AlienBOB's Slackware Live (slaklive) ISOs";
|
||||
$keywords = "AlienBOB, alienBOB Slackware Live, alienBOB Slackware Live ISO, alienBOB slaklive, alienBOB slaklive ISO, Slackware Live, Slackware Live ISO, slaklive ISO, slaklive";
|
||||
} elseif (preg_match (":^/people/alien/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "AlienBOB's SlackBuilds and Packages";
|
||||
$description = "AlienBOB's SlackBuilds and packages";
|
||||
$keywords = "alienBOB, alienBOB Slackware, AlienBOB SlackBuild, alienBOB SlackBuilds, AlienBOB packages";
|
||||
} elseif (preg_match (":^/people/alphageek/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Alphageek's SlackBuilds and Packages";
|
||||
$description = "Alphageek's SlackBuilds and packages";
|
||||
$keywords = "alphageek, alphageek Slackware, alphageek SlackBuild, alphageek SlackBuilds, alphageek packages";
|
||||
} elseif (preg_match (":^/people/rlworkman/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "rworkman's SlackBuilds and Packages";
|
||||
$description = "rworkman's SlackBuilds and packages";
|
||||
$keywords = "rworkman, rworkman Slackware, rworkman SlackBuild, rworkman SlackBuilds, rworkman packages";
|
||||
} elseif (preg_match (":^/people/rworkman/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "rworkman's SlackBuilds and Packages";
|
||||
$description = "rworkman's SlackBuilds and packages";
|
||||
$keywords = "rworkman, rworkman Slackware, rworkman SlackBuild, rworkman SlackBuilds, rworkman packages";
|
||||
} elseif (preg_match (":^/porteus/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Porteus";
|
||||
$description = "Porteus - Portable Linux";
|
||||
$keywords = "Porteus, portable Linux";
|
||||
} elseif (preg_match (":^/salix/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Salix";
|
||||
$description = "Salix";
|
||||
$keywords = "Salix, Salix OS";
|
||||
} elseif (preg_match (":^/sarpi/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "SARPi";
|
||||
$description = "Slackware ARM for the Raspberry Pi";
|
||||
$keywords = "Slackware ARM, Slackware Raspberry Pi, SARPi, Slackware Pi";
|
||||
} elseif (preg_match (":^/sbosrcarch/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "SlackBuilds.org Sources Archive";
|
||||
$description = "SlackBuilds.org Sources Archive";
|
||||
$keywords = "SlackBuilds.org, SBo, SlackBuilds source, SlackBuilds sources, SlackBuilds archive";
|
||||
} elseif (preg_match (":^/slackbuilds.org/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "SlackBuilds.org (SBo)";
|
||||
$description = "SlackBuilds.org (SBo) build scripts";
|
||||
$keywords = "SlackBuilds.org, SBo";
|
||||
} elseif (preg_match (":^/slackintosh/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Slackintosh";
|
||||
$description = "Slackware for Power PC";
|
||||
$keywords = "Slackware Mac, Slackware Power PC, Slackware PowerPC, Slackware PPC";
|
||||
} elseif (preg_match (":^/slackonly/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "SlackOnly";
|
||||
$description = "SlackOnly's pre-built packages from SBo";
|
||||
$keywords = "SlackOnly, Slackbuilds.org, SBo";
|
||||
} elseif (preg_match (":^/slackvirt/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "SlackVirt's QEMU based virtualization platform";
|
||||
} elseif (preg_match (":^/slackware/slackware-iso/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Slackware Linux ISOs";
|
||||
} elseif (preg_match (":^/slackware/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Slackware Linux";
|
||||
} elseif (preg_match (":^/slackwarearm/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "SlackwareARM";
|
||||
} elseif (preg_match (":^/slacky/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Slacky";
|
||||
} elseif (preg_match (":^/slamd64/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Slamd64 Linux";
|
||||
} elseif (preg_match (":^/slarm64/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Slarm64";
|
||||
} elseif (preg_match (":^/slaxbmc/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "SlaXBMC Project";
|
||||
} elseif (preg_match (":^/slint/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Slint Project";
|
||||
} elseif (preg_match (":^/sls/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Softlanding Linux System (SLS)";
|
||||
} elseif (preg_match (":^/smlinux/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Smlinux";
|
||||
} elseif (preg_match (":^/splack/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Splack";
|
||||
} elseif (preg_match (":^/studioware/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Studioware";
|
||||
} elseif (preg_match (":^/truva/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Truva Linux";
|
||||
} elseif (preg_match (":^/zenwalk/.*:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Zenwalk";
|
||||
$description = "Zenwalk Linux";
|
||||
$keywords = "Zenwalk, Zenwalk Linux";
|
||||
} elseif (preg_match (":^/s(earch)?$:", $_SERVER['REQUEST_URI'])) {
|
||||
$title = "Search Results";
|
||||
$description = "Slackware UK Search Results";
|
||||
$keywords = "Linux, mirror, mirrors, hosting, Slackware, Slackware64, Slackware UK, Slackware64 UK";
|
||||
} else {
|
||||
$title = "Index of " . $_SERVER['REQUEST_URI'];
|
||||
$description = "UK Slackware Linux and Slackware based project hosting & mirror service";
|
||||
$keywords = "Linux, mirror, mirrors, hosting, Slackware, Slackware64, Slackware UK, Slackware64 UK";
|
||||
}
|
||||
print ( " <title>" . $titleprefix . $title . "</title>" . "\n" );
|
||||
?>
|
||||
<link rel="stylesheet" href="/html/index.css" type="text/css">
|
||||
<link rel="shortcut icon" href="/html/favicon.ico">
|
||||
<meta name="author" content="Darren 'Tadgy' Austin">
|
||||
<meta name="description" content="UK Slackware Linux and Slackware based project hosting & mirror service.">
|
||||
<meta name="keywords" content="Slack,Slack64,Slackware,Slackware64,Slackware Linux,Slack UK,Slack64 UK,Slackware UK,Slackware64 UK,Slackware Linux UK,Slack mirror,Slack64 mirror,Slackware mirror,Slackware64 mirror,Slackware Linux mirror,Slack mirrors,Slack64 mirrors,Slackware mirrors,Slackware64 mirrors,Slackware Linux mirrors,Slack mirror UK,Slack64 mirror UK,Slackware mirror UK,Slackware64 mirror UK,Slackware Linux mirror UK,Linux,Linux UK,Linux mirror,Linux mirrors,CSB,Slackware CSB,FreeSlack,MSB,MSB Slackware,alienBOB,alienBOB mirror,alien mirror,alienBOB multilib,alien multilib,alienBOB KDE,alienBOB Ktown,alien KDE,alien ktown,rworkman,rworkman mirror,sbosrcarch,slackbuilds.org,slackbuilds.org mirror,SBo,SBo mirror,slackwareARM">
|
||||
<meta name="google-site-verification" content="NrTA5svYU1fXFm6RMVkVvsCXF84mkwfKTckHfsTUyVM">
|
||||
<meta name="msvalidate.01" content="9E9AFC7E738EB5E9FF87F0EEBE1BDE8A">
|
||||
</head>
|
||||
<body>
|
||||
<?php if ($_SERVER['REQUEST_URI'] == "/") { ?>
|
||||
<center>
|
||||
<p><img src="/html/slackwareuk.png" alt="** Slackware UK **" title="Slackware UK" border=0 align=center></p>
|
||||
<p>
|
||||
<b>is kindly sponsored by:</b>
|
||||
<div align="center">
|
||||
<a href="http://mailg.ukservers.com/c/eJxVjDkOwyAQAF8DJYLlLijS-B8LbGTLdhKBE5TfhzajKUdTk0fnNN8SSADplVETAGFUVqWCCmBiDETMyPfeqX2odVGeJ18TeQXag9W2uoAaCLyNeC9GZp-drfxI63W9OtM3Bst0jCH-Jy31b8d6bo_57weWfWCjGf0AmK0uIA" title="UK Servers"><img src="/html/ukservers.png" alt="- UK Servers -" title="UK Servers" border="0" align="center" hspace="50"></a>
|
||||
<a href="http://www.uk2.net/" title="UK2"><img src="/html/uk2.png" alt="- UK2 -" title="UK2" border="0" align="center" hspace="50"></a>
|
||||
</div>
|
||||
<br>
|
||||
<b>Please take a moment to visit the sponsors using the links above!</b>
|
||||
</p>
|
||||
<hr width="90%">
|
||||
<table width="90%" cellspacing="5">
|
||||
<tr>
|
||||
<td align="left" valign="top" width="15%">
|
||||
<b>Access:</b>
|
||||
</td>
|
||||
<td align="left" valign="top">
|
||||
This service can be accessed via:<br>
|
||||
HTTP: <a href="http://slackware.uk/" title="HTTP URI" alt="HTTP URI">http://slackware.uk/</a><br>
|
||||
HTTPS: <a href="https://slackware.uk/" title="HTTPS URI" alt="HTTPS URI">https://slackware.uk/</a><br>
|
||||
FTP: <a href="ftp://slackware.uk/" title="FTP URI" alt="FTP URI">ftp://slackware.uk/</a><br>
|
||||
Rsync: <a href="rsync://slackware.uk/" title="Rsync URI" alt="Rsync URI">rsync://slackware.uk/</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" valign="top" width="15%">
|
||||
<b>Notice:</b>
|
||||
</td>
|
||||
<td align="left" valign="top">
|
||||
All connections and transfers are logged. By accessing this service you implicitly agree to our collecting your IP address for analytics purposes.<br>
|
||||
We do not collect or hold any user identifying data.<br>
|
||||
Do not use multiple concurrent connections or "make your downloads faster" applications.<br>
|
||||
Access to this service is a privilege, not a right - abusive users will be firewalled without warning.
|
||||
</td>
|
||||
</tr>
|
||||
<!-- <tr>
|
||||
<td align="left" valign="top" width="15%">
|
||||
<b>Notice to mirrors:</b>
|
||||
</td>
|
||||
<td align="left" valign="top">
|
||||
If you are running a mirroring service and pulling data from multiple repositories on a regular basis, please email for access to the top-level repo - so you can pull everything in one go. We do not operate any blacklisting or whitelisting on access to repositories at this time.
|
||||
!-- If you are running a mirroring service and pulling data from us on a regular basis, please email for access to the un-capped, non-bandwidth limited module - your updates will then be unaffected by bandwidth limitations and user-level capping. --
|
||||
</td>
|
||||
</tr> -->
|
||||
<tr>
|
||||
<td align="left" valign="top" width="15%">
|
||||
<b>Mirroring requests:</b>
|
||||
</td>
|
||||
<td align="left" valign="top">
|
||||
This service is primarily intended to provide a mirror service for <a href="http://www.slackware.com/" title="Slackware Linux" alt="Slackware Linux">Slackware Linux</a> based projects. If you run a Slackware based project, or have a suggestion for a project which may benefit from being mirrored here, please message with full details.
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="left" valign="top" width="15%">
|
||||
<b>Patronage & donations:</b>
|
||||
</td>
|
||||
<td align="left" valign="top">
|
||||
If you use the Slackware UK services on a regular basis, and would like to contribute to running costs, make a continuing patronage (and receive special benefits), or make a one off PayPal payment, please use one of the following buttons:
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
</td>
|
||||
<td>
|
||||
<table width="100%" cellpadding="5">
|
||||
<tr>
|
||||
<!-- <td align="center" valign="center">
|
||||
<a href="https://gofund.me/c1434479"><img src="/html/gofundme.png" alt="GoFundMe Campaign" title="GoFundMe"></a>
|
||||
</td> -->
|
||||
<td align="center" valign="center">
|
||||
<a href="https://www.patreon.com/slackwareUK"><img src="/html/patreon.png" alt="Patreon Page" title="Patreon"></a>
|
||||
</td>
|
||||
<td align="center" valign="center">
|
||||
<a href="https://paypal.me/DonateToSlackwareUK"><img src="/html/paypal.png" alt="PayPal Donation" title="PayPal"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
</td>
|
||||
<td align="left" valign="top">
|
||||
All <a href="/html/project_supporters.html" title="Donations" alt="Donations">donations</a> will be gratefully received - thank you!
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td align="right" valign="top" colspan="2">
|
||||
<b>Darren 'Tadgy' Austin</b><br>
|
||||
<b>Email:</b> <a href="mailto:mirrors (at) slackware.uk" title="Send email" alt="Send email">mirrors (at) slackware.uk</a><br>
|
||||
<b>IRC:</b> On <a href="http://libera.chat/" title="Libera.Chat IRC Network" alt="Libera.Chat IRC Network">Libera.Chat</a>, join #slackware.uk channel or PM 'Tadgy'
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
<br>
|
||||
<table width="95%">
|
||||
<tr>
|
||||
<td class="navbar">
|
||||
</td>
|
||||
<td class="search" align="right" valign="bottom">
|
||||
<form action="/search">
|
||||
<?php echo "<input type=\"hidden\" name=\"p\" value=\"$_SERVER[REQUEST_URI]\">\n"; ?>
|
||||
<input class="searchinput" alt="Search:" title="Search" type="text" name="q" placeholder="Search">
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<?php } else { ?>
|
||||
<center><p><a href="/" title="Slackware UK" alt="** Slackware UK **"><img src="/html/slackwareuk.png" alt="** Slackware UK **" title="Slackware UK" border=0 align=center></a></p></center>
|
||||
<hr width="90%">
|
||||
<table width="75%" cellspacing="0" align="center">
|
||||
<tr>
|
||||
<td align="center" valign="top">
|
||||
<font size="+2"><b>Patronage & donations</b></font><br>
|
||||
If you use the Slackware UK services on a regular basis, and would like to contribute to running costs, make a continuing patronage (and receive special benefits), or make a one off PayPal payment, please use one of the following buttons:
|
||||
<table width="100%" cellpadding="5">
|
||||
<tr>
|
||||
<!-- <td align="center" valign="center">
|
||||
<a href="https://gofund.me/c1434479"><img src="/html/gofundme.png" alt="GoFundMe Campaign" title="GoFundMe"></a>
|
||||
</td> -->
|
||||
<td align="center" valign="center">
|
||||
<a href="https://www.patreon.com/slackwareUK"><img src="/html/patreon.png" alt="Patreon Page" title="Patreon"></a>
|
||||
</td>
|
||||
<td align="center" valign="center">
|
||||
<a href="https://paypal.me/DonateToSlackwareUK"><img src="/html/paypal.png" alt="PayPal Donation" title="PayPal"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
All <a href="/html/project_supporters.html" title="Donations" alt="Donations">donations</a> will be gratefully received - thank you!
|
||||
</td>
|
||||
</tr>
|
||||
<?php if (preg_match (":^/slackware/slackware-iso/.*:", $_SERVER['REQUEST_URI'])) { ?>
|
||||
<tr>
|
||||
<td align="center" valign="top">
|
||||
<hr width="100%">
|
||||
<font size="+2"><b>A Faster Way to Download Slackware Linux ISOs</b></font><br>
|
||||
Slackware UK now offers a <a href="https://seedbox.slackware.uk/" title="Bittorrent seeding service" alt="Bittorrent seeding service">Bittorrent seeding service</a> which may allow you to download the Slackware ISOs at a much faster speed (<b>especially immediately following a new stable release</b>) - all that is required is a Bittorrent client.
|
||||
</td>
|
||||
</tr>
|
||||
<?php } ?>
|
||||
</table>
|
||||
<br>
|
||||
<table width="95%">
|
||||
<tr>
|
||||
<td class="navbar" align="center" valign="bottom">
|
||||
<code class="breadcrumbs">
|
||||
<?php
|
||||
// Default options - Home » Page Title
|
||||
echo breadcrumbs(' » ', 'Index');
|
||||
// Change » to >
|
||||
// echo breadcrumbs(' > ');
|
||||
// Change 'Home' to 'Index' and » to ^^
|
||||
// echo breadcrumbs(' ^^ ', 'Index');
|
||||
?>
|
||||
</code>
|
||||
</td>
|
||||
<td class="search" align="right" valign="bottom">
|
||||
<form action="/search">
|
||||
<?php echo "<input type=\"hidden\" name=\"p\" value=\"$_SERVER[REQUEST_URI]\">\n"; ?>
|
||||
<input class="searchinput" alt="Search:" title="Search" type="text" name="q" placeholder="Search">
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<?php } ?>
|
||||
<table width="90%" align="center">
|
||||
<tr>
|
||||
<td>
|
||||
Loading…
Add table
Add a link
Reference in a new issue