Card

The main layout feature we use. 99% of all content is in a card.


Example

News
The news are bad news!

Code

1
2
3
4
5
6
7
8
9
.card
  .card-header.d-flex.justify-content-between
    %h5
      News
    .float-right
      %a{href: '/main/news.rss', title: 'RSS Feed'}
        %i.fa.fa-rss
  .card-body
    The news are bad news!