X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=index.php;h=1eb083bb0fb27cad1f272cb946b240be361200eb;hb=0184d096a76f47acb328c5e01fecf91190dfc5ab;hp=8381c1b505d45ca940673cf55518d21a004cac2d;hpb=99dc53dddd748917bef3d1d7d0ee847c785f6b26;p=dylansserver.git diff --git a/index.php b/index.php index 8381c1b..1eb083b 100644 --- a/index.php +++ b/index.php @@ -86,7 +86,7 @@ abstract class cms { $this->title - + $stylesheets $scripts @@ -276,10 +276,17 @@ class page extends cms { $month_posted = $date_posted[1]; $datetime_posted = explode(' ', $date_posted[2]); $day_posted = $datetime_posted[0]; - echo "
"; - echo "

$year_posted/$month_posted/$day_posted/$title

"; - echo $entry['text']; - echo "
"; + $text = $entry['text']; + echo << +

+ + $year_posted/$month_posted/$day_posted/ + $title +

+ $text + +END_NOTE; } echo ""; $this->write_navigation(); @@ -288,7 +295,7 @@ class page extends cms { private function write_navigation() { echo ""; } @@ -401,7 +408,7 @@ class note extends cms { private function display_note() { echo << -

$this->year_posted/$this->month_posted/$this->day_posted/$this->title

+

$this->year_posted/$this->month_posted/$this->day_posted/$this->title

$this->text END_OF_NOTE; @@ -411,14 +418,14 @@ END_OF_NOTE; echo << END_OF_NAVIGATION; } @@ -588,9 +595,9 @@ class archive extends cms { $datetime_posted = explode(' ', $date_posted[2]); $day_posted = $datetime_posted[0]; echo "
"; - echo "

"; + echo "

"; echo "$year_posted/$month_posted/$day_posted/"; - echo "$title

"; + echo "
$title

"; echo $entry['text']; echo "
"; } @@ -598,7 +605,7 @@ class archive extends cms { $this->write_navigation(); } else { echo "
"; - echo "

sorry, nothing here

"; + echo "

sorry, nothing here

"; echo "
Empty set (0.00 sec)
"; } $this->display_close(); @@ -607,9 +614,7 @@ class archive extends cms { private function write_navigation() { echo "
"; echo ""; }