diff options
Diffstat (limited to 'app/view/templates/timeline.php')
-rw-r--r-- | app/view/templates/timeline.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/view/templates/timeline.php b/app/view/templates/timeline.php index fcf8afd..874b953 100644 --- a/app/view/templates/timeline.php +++ b/app/view/templates/timeline.php @@ -14,6 +14,10 @@ <main class="timeline"> +<section> + +<article id="live"> + <h1>Timeline</h1> <ul> @@ -68,6 +72,12 @@ foreach ($groupedeventlist as $eventuser) { </ul> +</article> + +<article id="message"> + +<h2>Message</h2> + <form action="<?= $this->url('timelineadd') ?>" method="post"> <input type="hidden" name="type" value="message"> @@ -83,6 +93,10 @@ foreach ($groupedeventlist as $eventuser) { <?php } ?> +</article> + +</section> + </body> |