{# # 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" %} {% set title = "blog" %} {% block content %}
{% for entry in craft.entries.section('blog').find() %} {% endfor %}
{% endblock %}