2011-01-28, 04:37:40
You can also use the DynPages plugin (http://get-simple.info/extend/plugin/dynpages/81/).
Just put the code to show the news, e.g.
in a component named "news" and put the following place holder on any page where you want to show news:
This way you could include content before and after the news, for example:
Just put the code to show the news, e.g.
Code:
<?php show_articles(); ?>
in a component named "news" and put the following place holder on any page where you want to show news:
Code:
{% news %}
This way you could include content before and after the news, for example:
Code:
<p>Some text...</p>
<p>And now the news:</p>
<p>{% news %}</p>
<p>An now back to other topics...</p>