The article.php is usually opened when the user clicks the title of an article.
In this page the user has access to the whole article text and images.
Basically, what a magazine shows in this page, is the title of the article, the summary and
the text. Text and summary can include images, links, and everything is possible to include
in a web page.
Sometimes is nice to put ad the bottom of the title: the date of creation, the name of the
authors and a link to the comments page.
Accessible data:
An example of code:
<?= $this->article->getTitle() ?>
<?= $this->article->getCreatedFormatted() ?> by <? echo $this->article->auhorsNamesConcatenation(); ?><?= $this->article->getBody() ?><? $URL = URIMaker::comment($this->article); $comm_number = count($this->article->commentsPublished()); ?><? echo " comments ($comm_number) "; ?>