Move PHP comments into PHP tags since they do not need to be on the website and were in front of the Doc Start tag.
This commit is contained in:
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<!--
|
|
||||||
Synonym for home page.
|
|
||||||
-->
|
|
||||||
<?php
|
<?php
|
||||||
|
/* Synonym for home page. */
|
||||||
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
||||||
$GLOBALS["HEADER_TITLE"] = "Apps";
|
$GLOBALS["HEADER_TITLE"] = "Apps";
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<!--
|
|
||||||
Alias for where Books menu item should go.
|
|
||||||
-->
|
|
||||||
<?php
|
<?php
|
||||||
|
/* Alias for where Books menu item should go. */
|
||||||
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
||||||
$GLOBALS["HEADER_TITLE"] = "Books";
|
$GLOBALS["HEADER_TITLE"] = "Books";
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<!--
|
|
||||||
Alias for the support page with a more common name.
|
|
||||||
-->
|
|
||||||
<?php
|
<?php
|
||||||
|
/* Alias for the support page with a more common name. */
|
||||||
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
||||||
$GLOBALS["HEADER_TITLE"] = "Donate";
|
$GLOBALS["HEADER_TITLE"] = "Donate";
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<!--
|
|
||||||
Page to provide links for Freedom eBook.
|
|
||||||
-->
|
|
||||||
<?php
|
<?php
|
||||||
|
/* Page to provide links for Freedom eBook. */
|
||||||
$GLOBALS["ADVISORY"] = false;
|
$GLOBALS["ADVISORY"] = false;
|
||||||
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
||||||
$GLOBALS["HEADER_TITLE"] = "Freedom";
|
$GLOBALS["HEADER_TITLE"] = "Freedom";
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<!--
|
|
||||||
Page to provide ways people can support me.
|
|
||||||
-->
|
|
||||||
<?php
|
<?php
|
||||||
|
/* Page to provide ways people can support me. */
|
||||||
//$GLOBALS["ADVISORY"] = false;
|
//$GLOBALS["ADVISORY"] = false;
|
||||||
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
||||||
$GLOBALS["HEADER_TITLE"] = "Health";
|
$GLOBALS["HEADER_TITLE"] = "Health";
|
||||||
|
@@ -1,13 +1,11 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<?php
|
<?php
|
||||||
|
/* Landing page, keeping it apps and development projects like old WordPress site. */
|
||||||
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
||||||
$GLOBALS["HEADER_TITLE"] = "Announcements";
|
$GLOBALS["HEADER_TITLE"] = "Announcements";
|
||||||
}
|
}
|
||||||
include "helpers/body_open.php";
|
include "helpers/body_open.php";
|
||||||
?>
|
?>
|
||||||
<!--
|
|
||||||
Landing page, keeping it apps and development projects like old WordPress site.
|
|
||||||
-->
|
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<h1 class="col-12 title">Welcome!</h1>
|
<h1 class="col-12 title">Welcome!</h1>
|
||||||
<?php if (isset($GLOBALS["SHOW_BANNER_PICS"])
|
<?php if (isset($GLOBALS["SHOW_BANNER_PICS"])
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<!--
|
|
||||||
Page for my video links.
|
|
||||||
-->
|
|
||||||
<?php
|
<?php
|
||||||
|
/* Page for my video links. */
|
||||||
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
||||||
$GLOBALS["HEADER_TITLE"] = "Media";
|
$GLOBALS["HEADER_TITLE"] = "Media";
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<!--
|
|
||||||
Lists of items which I'd like to share such as gear and frequently used apps.
|
|
||||||
-->
|
|
||||||
<?php
|
<?php
|
||||||
|
/* Lists of items which I'd like to share such as gear and frequently used apps. */
|
||||||
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
||||||
$GLOBALS["HEADER_TITLE"] = "Resources";
|
$GLOBALS["HEADER_TITLE"] = "Resources";
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<!--
|
|
||||||
Page for my resume and work skill links.
|
|
||||||
-->
|
|
||||||
<?php
|
<?php
|
||||||
|
/* Page for my resume and work skill links. */
|
||||||
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
||||||
$GLOBALS["HEADER_TITLE"] = "Resume";
|
$GLOBALS["HEADER_TITLE"] = "Resume";
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<!--
|
|
||||||
Page to provide ways people can support me.
|
|
||||||
-->
|
|
||||||
<?php
|
<?php
|
||||||
|
/* Page to provide ways people can support me. */
|
||||||
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
||||||
$GLOBALS["HEADER_TITLE"] = "Support";
|
$GLOBALS["HEADER_TITLE"] = "Support";
|
||||||
}
|
}
|
||||||
|
@@ -1,9 +1,9 @@
|
|||||||
#!/usr/bin/php
|
#!/usr/bin/php
|
||||||
<!--
|
<?php
|
||||||
|
/*
|
||||||
Old page for my video links.
|
Old page for my video links.
|
||||||
Deprecated 2024-03-06 for /media.
|
Deprecated 2024-03-06 for /media.
|
||||||
-->
|
*/
|
||||||
<?php
|
|
||||||
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
if (!isset($GLOBALS["HEADER_TITLE"])) {
|
||||||
$GLOBALS["HEADER_TITLE"] = "Videos";
|
$GLOBALS["HEADER_TITLE"] = "Videos";
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user