Display single product collection in Shopify

Here is how to display a single product collection in a template.

<ul>
{% for product in collection-product-list %}
<li><a href="{{ product.url}}">{{ product.title}}</a>
{% endfor %}
</ul>