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 class="row"> | |
| <div class="col-sm-12"> | |
| <div class="persondetails-group"> | |
| <header> | |
| <h1>Hallmark's Discipleship Pathway</h1> | |
| </header> | |
| </div><!-- .persondetails-group--> | |
| </div> |
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 class="panel panel-block"> | |
| <div class="panel-heading"> | |
| <h4 class="panel-title">Important Events</h4> | |
| </div> | |
| <div class=""> | |
| {% eventcalendaritem where:'EventCalendarId == 1' %} | |
| <ul class="list-group list-group-panel"> | |
| {% for eventcalendaritem in eventcalendaritemItems %} | |
| {% if eventcalendaritem.EventItem.IsActive == true %} | |
| {% assign level = eventcalendaritem | Attribute:'EventLevel' %} |
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
| {% assign previousSunday = 'Now' | SundayDate | DateAdd:-7 | Date:'M/dd/yyyy' %} | |
| Metric Date: {{ previousSunday }} | |
| <br /> | |
| {% group where:'ParentGroupId == 49 || ParentGroupId == 10603 && IsActive == true' %} | |
| {% for group in groupItems %} | |
| {% attendance where:'DidAttend == true && GroupId == {{ group.Id }} && SundayDate == "{{ previousSunday }}"' count:'true' %} | |
| {% if count > 0 %} | |
| Metric Partition: {{ group.Name }} | |
| <br /> | |
| Metric Value: {{ count }} |
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
| # BEGIN WordPress | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.php [L] | |
| # BEGIN THIS DL-FILE.PHP ADDITION |
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
| <?php | |
| /* | |
| * dl-file.php | |
| * | |
| * Protect uploaded files with login. | |
| * | |
| * @link http://wordpress.stackexchange.com/questions/37144/protect-wordpress-uploads-if-user-is-not-logged-in | |
| * @link https://gist.github.com/hakre/1552239 | |
| * | |
| * @author Nathan Parikh <https://ndzynes.com/> |
NewerOlder