Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
Now that we have worked a bit on our admin zone, it's time for us to work on the frontpage of our component, just to make it look better. At the moment, our component only shows a list of news. If you take a look at the components/com_tinynews/views/tinynews/tmpl/default.php file, you will see our previous code:
defined('_JEXEC') or die('Restricted access');
frontpage, Joomla! componentworking onforeach($this->news as $new){
echo "<p><b>".$new->title."</b></p><br/><br/>";
echo "<p>".$new->text."</p><br/><br/>";
}