Skip to content

Commit

Permalink
Merge pull request #9 from jonmcalder/fix_thumbnail_label
Browse files Browse the repository at this point in the history
Fix thumbnail_label
  • Loading branch information
jasdumas authored Apr 25, 2018
2 parents 6254411 + 5334577 commit f525771
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/thumbnail_label.R
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
#' button_link = 'http://getbootstrap.com/', button_label = 'Click me')
#' @export
thumbnail_label <- function(image, label, content, button_link, button_label ){
div(class="row",
div(class = "row",
div(class = "col-sm-14 col-md-12",
div(class = "thumbnail",
img(src = image, alt = "...",
div(class = "caption", h3(label), p(content), p(a(button_link, class = 'btn btn-primary', role='button', label = button_label)))))))
div(class = "caption", h3(label), p(content), p(a(href = button_link, class = 'btn btn-primary', role = 'button', button_label)))))))


}

0 comments on commit f525771

Please sign in to comment.