<ul class="ul">
    <li>Top 3 Albums May 23, 2009</li>
    <li>'Epiphany' - Chrisette Michele</li>
    <li>'Hannah Montana: The Movie Soundtrack'</li>
    <li>'Fantasy Ride' - Ciara</li>
</ul>
<ul class="ul">
    {% for ul_item in ul_items %}
        <li>{{ ul_item.content }}</li>
    {% endfor %}
</ul>
{
  "ul_items": {
    "1": {
      "content": "Top 3 Albums May 23, 2009"
    },
    "2": {
      "content": "'Epiphany' - Chrisette Michele"
    },
    "3": {
      "content": "'Hannah Montana: The Movie Soundtrack'"
    },
    "4": {
      "content": "'Fantasy Ride' - Ciara"
    }
  }
}
  • Content:
    .ol.u_alpha {
        list-style-type: upper-alpha;
    
        &.l_alpha {
            list-style-type: lower-alpha;
        }
    
        &.u_roman {
            list-style-type: upper-roman;
        }
    
        &.l_roman {
            list-style-type: lower-roman;
        }
    }
    
  • URL: /components/raw/lists/lists.scss
  • Filesystem Path: components/01-elements/02-lists/lists.scss
  • Size: 233 Bytes

No notes defined.