Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Start the rework
Signed-off-by: falkTX <falktx@falktx.com>
- Loading branch information
Showing
4 changed files
with
51 additions
and
125 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
Options -Indexes | ||
|
||
# RewriteEngine On | ||
# RewriteCond %{REQUEST_FILENAME} !-f | ||
# RewriteCond %{REQUEST_FILENAME} !-d | ||
# RewriteCond %{REQUEST_FILENAME}\.php -f | ||
# RewriteRule ^(.*)$ $1.php [L,QSA] | ||
RewriteEngine On | ||
RewriteCond %{REQUEST_FILENAME} !-f | ||
RewriteCond %{REQUEST_FILENAME} !-d | ||
RewriteCond %{REQUEST_FILENAME}\.php -f | ||
RewriteRule ^(.*)$ $1.php [L,QSA] | ||
|
||
Redirect 301 /news https://distrho.sourceforge.io/news.php | ||
Redirect 301 /plugins https://distrho.sourceforge.io/plugins.php | ||
Redirect 301 /ports https://distrho.sourceforge.io/ports.php | ||
Redirect 301 /about https://distrho.sourceforge.io/about.php | ||
# Redirect 301 /news https://distrho.sourceforge.io/news.php | ||
# Redirect 301 /plugins https://distrho.sourceforge.io/plugins.php | ||
# Redirect 301 /ports https://distrho.sourceforge.io/ports.php | ||
# Redirect 301 /about https://distrho.sourceforge.io/about.php |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,46 @@ | ||
a, abbr, acronym, address, applet, article, aside, audio, | ||
b, blockquote, big, body, | ||
center, canvas, caption, cite, code, command, | ||
datalist, dd, del, details, dfn, dl, div, dt, | ||
datalist, dd, del, details, dfn, dl, div, dt, | ||
em, embed, | ||
fieldset, figcaption, figure, font, footer, form, | ||
fieldset, figcaption, figure, font, footer, form, | ||
h1, h2, h3, h4, h5, h6, header, hgroup, html, | ||
i, iframe, img, ins, | ||
kbd, | ||
kbd, | ||
keygen, | ||
label, legend, li, | ||
label, legend, li, | ||
meter, | ||
nav, | ||
object, ol, output, | ||
p, pre, progress, | ||
q, | ||
q, | ||
s, samp, section, small, span, source, strike, strong, sub, sup, | ||
table, tbody, tfoot, thead, th, tr, tdvideo, tt, | ||
u, ul, | ||
var{ | ||
background: transparent; | ||
border: 0 none; | ||
font-size: 100%; | ||
margin: 0; | ||
padding: 0; | ||
border: 0; | ||
outline: 0; | ||
vertical-align: top; | ||
u, ul, | ||
var { | ||
background:transparent; | ||
border:0 none; | ||
font-size:100%; | ||
margin:0; | ||
padding:0; | ||
border:0; | ||
outline:0; | ||
vertical-align:top; | ||
} | ||
|
||
ol, ul { | ||
list-style: none; | ||
list-style:none; | ||
} | ||
blockquote, q { | ||
quotes: none; | ||
quotes:none; | ||
} | ||
table, table td { | ||
padding:0; | ||
border:none; | ||
border-collapse:collapse; | ||
table, table td { | ||
padding:0; | ||
border:none; | ||
border-collapse:collapse; | ||
} | ||
img { | ||
vertical-align:top; | ||
vertical-align:top; | ||
} | ||
embed { | ||
vertical-align:top; | ||
} | ||
embed { | ||
vertical-align:top; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,21 @@ | ||
<footer> | ||
<div class="container"> | ||
<div class="wrapper"> | ||
<div style="position:relative; top: 0px;left: 0px;"> | ||
<form class="formleftside" action="<?php echo $_server["script_name"]; ?>" method="post"> | ||
<input type="submit" name="changeColorNow" value="Switch Color Theme"/> | ||
</form> | ||
</div> | ||
<div> | ||
<p style="font-size: 90%;"> | ||
© | ||
2012-2018 DISTRHO | ||
| ||
<span style="float:right;"> | ||
Sponsored by | ||
<a href="https://kxstudio.linuxaudio.org" target="_blank">KXStudio</a> | ||
| | ||
All the plugins and Linux ports here are free, please consider a | ||
<a href="https://kxstudio.linuxaudio.org/Donations" target="_blank">donation</a> | ||
if possible. | ||
</span> | ||
</p> | ||
</div> | ||
<div class="container"> | ||
<div class="wrapper"> | ||
<p> | ||
© | ||
2012-2021 DISTRHO | ||
| ||
<span style="float:right;"> | ||
Hosted and maintained by | ||
<a href="https://kx.studio/" target="_blank">KXStudio</a> | ||
| | ||
All the plugins and Linux/LV2 ports here are free and open-source, please consider a | ||
<a href="https://kx.studio/Donations" target="_blank">donation</a> | ||
if possible. | ||
</span> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters