## Datepicker

We've integrated the excellent [Bootstrap Datepicker](https://bootstrap-datepicker.readthedocs.org/en/latest/) plugin for your convenience. You can initiate this simply with data-attributes or for more advanced applications use the javascript API. Refer to [their docs for more information](https://bootstrap-datepicker.readthedocs.org/en/latest/).

{% example html %}
<div class="input-group">
  <span class="input-group-addon">
    <span class="icon icon-calendar"></span>
  </span>
  <input type="text" value="01/01/2015" class="form-control" data-provide="datepicker" style="width: 200px;">
</div>
{% endexample %}
