X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=index.php;h=230b2f0cb8b554560b8ac1d2373421a5f7547dcb;hb=21c1ef32f4de2626d3c51aefc73b638969853f7f;hp=424f8504ab4d03fb8543098316d628ee6cafa134;hpb=ed22b7f1393fb7102beb9bbfad22864c2d4acb7a;p=dylansserver.git diff --git a/index.php b/index.php index 424f850..230b2f0 100644 --- a/index.php +++ b/index.php @@ -281,10 +281,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(); @@ -293,7 +300,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 ""; }