The Home Template
This template determines how your main portfolio page looks. This would be a good place to show your company description, contact info, and perhaps a few recent projects. When you are working with the home template, these variables are available:
company
- Returns a company variable for your company.
recentprojects
- Returns a collection containing the four most recent projects for your company. You can change the number of projects returned by specifying the limit argument. For example, to retrieve six projects you would use
{% recentprojects limit:8 %}. Each project is represented by a project variable. To use this variable, you iterate over it, marking the end of the block with the endrecentprojects tag:
{% recentprojects limit:8 %}
{{ project.title }}
{% endrecentprojects %}