extends layout

block content
  div(class='container')
    div(class='row')
      h1 Welcome
    div(class='row')
      a(href='/users' class='btn btn-success') Go to Users' search page
    div(class='row')
      h3 MySQL Overview
      table(class='table table-bordered table-striped')
        thead
          tr
            th #
            th First Name
            th Last Name
            th Image
            th PDF
        each item in users
          tr
            td= item.id
            td= item.firstName
            td= item.lastName
            td= item.image
            td= item.pdf

