@;{ Remember that Twitter Bootstrap has a 12 cell model. The
            col-md-N classes should add up to 12.  For instance 3
            "col-md-4" divs, or 2 "col-md-6" divs. }
        
        
          @;{ To put something only on the home page, check for
              @uri-path being "/index.html" }
          @(when (string-ci=? uri-path
                              (string-append uri-prefix
                                             "/index.html"))
            @list{
              
Welcome
              })
          @;{ Index pages for posts have @tag that's not #f }
          @(when tag
            @list{Posts tagged @|tag|
})
          @;{ The main page contents are in @contents }
          @|contents|