Skip to content

Instantly share code, notes, and snippets.

@ozee
Created November 1, 2012 15:53
Show Gist options
  • Save ozee/3994511 to your computer and use it in GitHub Desktop.
Save ozee/3994511 to your computer and use it in GitHub Desktop.
HTML: Bootstrap - month view calendar
<table class="table-condensed table-bordered table-striped">
<thead>
<tr>
<th colspan="7" class="btn-group" >
<a class="btn"> <i class="icon-chevron-left"></i>
</a>
<a class="btn">February 2012</a>
<a class="btn"> <i class="icon-chevron-right"></i>
</a>
</th>
</tr>
<tr>
<th>Su</th>
<th>Mo</th>
<th>Tu</th>
<th>We</th>
<th>Th</th>
<th>Fr</th>
<th>Sa</th>
</tr>
</thead>
<tbody>
<tr>
<td class="muted">29</td>
<td class="muted">30</td>
<td class="muted">31</td>
<td>1</td>
<td>2</td>
<td>3</td>
<td>4</td>
</tr>
<tr>
<td>5</td>
<td>6</td>
<td>7</td>
<td>8</td>
<td>9</td>
<td>10</td>
<td>11</td>
</tr>
<tr>
<td>12</td>
<td>13</td>
<td>14</td>
<td>15</td>
<td>16</td>
<td>17</td>
<td>18</td>
</tr>
<tr>
<td>19</td>
<td> <strong>20</strong>
</td>
<td>21</td>
<td>22</td>
<td>23</td>
<td>24</td>
<td>25</td>
</tr>
<tr>
<td>26</td>
<td>27</td>
<td>28</td>
<td>29</td>
<td class="muted">1</td>
<td class="muted">2</td>
<td class="muted">3</td>
</tr>
</tbody>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment