Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Jekyll Tag List on a Page

Tags:

I'm attempting to display a list of tags using Jekyll. Here is what my HTML on the page looks like:

<ul>
  {% for tags in page.tags %}
    <li>{{ tags }}</li>
  {% endfor %}
</ul>

And this is the information in my front matter:

---
layout: template
title: Title
tags: all portfolio something
---

I am getting an output, but it is just creating a list like this:

  • all portfolio something

instead of what I am trying to acheive, which is this:

  • all
  • portfolio
  • something

Any troubleshooting on this would be much appreciated, thank you!