<ol class="ol u_roman">
<li>Top 3 Albums May 26, 1984</li>
<li>'Footloose' - Soundtrack</li>
<li>'Can't Slow Down' - Lionel Richie</li>
<li>'Thriller' - Michael Jackson</li>
</ol>
<ol class="ol u_roman">
{% for ol_ur_item in ol_ur_items %}
<li>{{ ol_ur_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_ur_items": {
"1": {
"content": "Top 3 Albums May 26, 1984"
},
"2": {
"content": "'Footloose' - Soundtrack"
},
"3": {
"content": "'Can't Slow Down' - Lionel Richie"
},
"4": {
"content": "'Thriller' - Michael Jackson"
}
}
}
.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;
}
}
No notes defined.