Files
blender-cloud/src/templates/mixins/components.pug

31 lines
567 B
Plaintext
Raw Normal View History

//- Category listing header (Learn, Libraries, etc).
mixin category_list_header(title, text, url)
.row.pt-2
.col-md-9
a.d-block.py-2.text-secondary(href=url, title=title)
h1.text-uppercase.font-weight-bold
=title
.lead
=text
if block
block
hr.my-4
//- List Item
mixin category_list_item(title, text, url, image)
.row.pb-2.my-2
.col-md-3
a(href=url, title=title)
img.img-fluid.rounded(alt=title, src=image)
.col-md-9
a(href=url, title=title)
h3.font-weight-bold
=title
.lead
=text
if block
block