get_terms problem : related articles

get_the_term_list() is retrieving the terms attached to the post that are in the taxonomy “types”.

get_terms() is designed to retrieve all the terms within a taxonomy.

What you are trying to do is use get_terms() for a specific term in a taxonomy, not a taxonomy itself.

You need to do: $terms = get_terms('type');