<ol class="ol">
    <li>Top 3 Albums May 22, 2010</li>
    <li>'The Oracle' - Godsmack</li>
    <li>'Need You Now' - Lady Antebellum</li>
    <li>'The Generous Mr. Lovewell' - MercyMe</li>
</ol>
<ol class="ol">
    {% for ol_item in ol_items %}
        <li>{{ ol_item.content }}</li>
    {% endfor %}
</ol>
{
  "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"
    }
  },
  "ol_items": {
    "1": {
      "content": "Top 3 Albums May 22, 2010"
    },
    "2": {
      "content": "'The Oracle' - Godsmack"
    },
    "3": {
      "content": "'Need You Now' - Lady Antebellum"
    },
    "4": {
      "content": "'The Generous Mr. Lovewell' - MercyMe"
    }
  }
}
  • 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.