diff options
author | Adam T. Carpenter <atc@53hor.net> | 2021-07-03 10:29:24 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2021-07-03 10:29:24 -0400 |
commit | 559601ff7ab6b1faeb9b024d3fc56c8c63955171 (patch) | |
tree | bc15ddb27989f25f20395ac80d107105aa8ba944 | |
parent | 677f2f1917b4e3c01b5c3a809ef322172b0b51ab (diff) | |
download | carpentertutoring-559601ff7ab6b1faeb9b024d3fc56c8c63955171.tar.xz carpentertutoring-559601ff7ab6b1faeb9b024d3fc56c8c63955171.zip |
added shebangs for php-cgi
-rw-r--r-- | about/index.php | 1 | ||||
-rw-r--r-- | footer.php | 1 | ||||
-rw-r--r-- | header.php | 1 | ||||
-rw-r--r-- | index.php | 1 | ||||
-rw-r--r-- | policies/index.php | 1 |
5 files changed, 5 insertions, 0 deletions
diff --git a/about/index.php b/about/index.php index 0b09bfc..a4f9f25 100644 --- a/about/index.php +++ b/about/index.php @@ -1,3 +1,4 @@ +#!/usr/bin/env php-cgi <?php include('../header.php'); ?> <section class="banner"> <h1>About Me</h1> @@ -1,3 +1,4 @@ +#!/usr/bin/env php-cgi </main> <footer> @@ -1,3 +1,4 @@ +#!/usr/bin/env php-cgi <!DOCTYPE html> <html lang="en"> @@ -1,3 +1,4 @@ +#!/usr/bin/env php-cgi <?php include('header.php'); ?> <!--banner--> <section class="banner"> diff --git a/policies/index.php b/policies/index.php index 1fdd037..acd0aae 100644 --- a/policies/index.php +++ b/policies/index.php @@ -1,3 +1,4 @@ +#!/usr/bin/env php-cgi <?php include('../header.php'); ?> <section class="banner"> <h1>Policies & Procedures</h1> |