Skip to contents

Add a custom thumbnail with a label and button

Usage

thumbnail_label(image, label, content, button_link, button_label)

Arguments

image

a object of class character

label

a object of class character

content

a object of class character

a object of class character

button_label

a object of class character

Value

a HTML object to be included in the ui section of a shiny app

See also

Examples

 thumbnail_label(image = 'Rlogo.png', label = 'App 1', content = 'here we go again',
 button_link = 'http://getbootstrap.com/', button_label = 'Click me')
#> <div class="row">
#>   <div class="col-sm-14 col-md-12">
#>     <div class="thumbnail">
#>       <img src="Rlogo.png" alt="...">
#>         <div class="caption">
#>           <h3>App 1</h3>
#>           <p>here we go again</p>
#>           <p>
#>             <a href="http://getbootstrap.com/" class="btn btn-primary" role="button">Click me</a>
#>           </p>
#>         </div>
#>       </img>
#>     </div>
#>   </div>
#> </div>