The current syntax is running normally. Is there a way to write it similar to "switch"? If I add more, I am worried that the performance will be poor.
{% if post.one_show.value == 'album' %}
{% include 'one_album' %}
{% elseif post.one_show.value == 'download' %}
{% include 'one_download' %}
{% elseif post.one_show.value == 'faq' %}
{% include 'one_faq' %}
{% elseif post.one_show.value == 'video' %}
{% include 'one_video' %}
{% elseif post.one_show.value == 'link' %}
{% include 'one_link' %}
{% elseif post.one_show.value == 'area' %}
{% include 'one_area' %}
{% else %}
<p>沒有設置任何功能</p>
{% endif %}