Created
February 21, 2016 16:40
-
-
Save dgershman/6d496ebfa015bf791a70 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <div id="content"> | |
| <?php | |
| $day = pods('day', array( 'orderby' => 'dayoftheweek ASC' )); | |
| while ($day->fetch()) | |
| { | |
| ?> | |
| <a name="<?php echo $day->display('name'); ?>"></a> | |
| <div style="font-size: 24px; margin-bottom: 20px; clear: left; text-decoration: underline;"> | |
| <?php echo $day->display('name'); ?> | |
| </div> | |
| <?php | |
| echo pods('meeting')->find( array( 'where' => 'day.id = "'.$day->display('id').'" and hidden = "No"', 'orderby' => 'time ASC' ) )->template( 'Meetings' ); | |
| } | |
| ?> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment