@@ 202-206 (lines=5) @@ | ||
199 | data-event-bubble-trigger="<?php echo $calendar->event_bubble_trigger; ?>"> |
|
200 | <thead class="simcal-calendar-head"> |
|
201 | <tr> |
|
202 | <?php if ( ! $calendar->static ) { ?> |
|
203 | <th class="simcal-nav simcal-prev-wrapper" colspan="<?php echo apply_filters( 'simcal_prev_cols', '1' ); ?>"> |
|
204 | <button class="simcal-nav-button simcal-month-nav simcal-prev" title="<?php _e( 'Previous Month', 'google-calendar-events' ); ?>"><i class="simcal-icon-left"></i></button> |
|
205 | </th> |
|
206 | <?php } ?> |
|
207 | <th colspan="<?php echo apply_filters( 'simcal_current_cols', $calendar->static ? '7' : '5' ); ?>" |
|
208 | class="simcal-nav simcal-current" |
|
209 | data-calendar-current="<?php echo $calendar->start; ?>"> |
|
@@ 233-237 (lines=5) @@ | ||
230 | ||
231 | ?> |
|
232 | </th> |
|
233 | <?php if ( ! $calendar->static ) { ?> |
|
234 | <th class="simcal-nav simcal-next-wrapper" colspan="<?php echo apply_filters( 'simcal_next_cols', '1' ); ?>"> |
|
235 | <button class="simcal-nav-button simcal-month-nav simcal-next" title="<?php _e( 'Next Month', 'google-calendar-events' ); ?>"><i class="simcal-icon-right"></i></button> |
|
236 | </th> |
|
237 | <?php } ?> |
|
238 | </tr> |
|
239 | <tr> |
|
240 | <?php |