{# # News index template # ------------------- # # This template is loaded whenever http://example.com/news is # requested, because it is located at news/index.html in your # craft/templates/ folder. # # See this page for more details on how Craft routes requests: # http://craftcms.com/docs/routing #} {% extends "_layout/main-layout.html" %} {% set title = "News" %} {% block content %}

News

{% for entry in craft.entries.section('news').find() %}

{{ entry.title }}

Posted on {{ entry.postDate.format('F d, Y') }}

{{ entry.body.getPage(1) }}

Continue reading

{% endfor %} {% endblock %}