Ignore:
Timestamp:
07/14/08 22:15:37 (4 years ago)
Author:
kimparsell
Message:

All themes:
+ All pages validate XHTML Strict (ticket #166 -  http://dev.plogger.org/ticket/166)
+ Stylesheet validates to CSS level 2.1
+ Changed code for action= in comments form tag (original code would not validate due to the ampersand (&) in the url not being shown as & in the code)
+ Added alt tag for large image in picture.php per ticket #171 ( http://dev.plogger.org/ticket/171)
+ Added actions class to stylesheets for moderation message
+ Removed generate_slideshow_interface function from slideshow.php (now in plog-functions.php)
+ Reworked markup to conform to new theme code requirements
+ Cleaned up markup
Air theme - Added function to comments.php, if comments are moderated, to show moderation message
Lucid theme:
+ Added function to comments.php, if comments are moderated, to show moderation message
+ Cleaned up markup
+ Hyperlinked collection and album names per ticket #172 ( http://dev.plogger.org/ticket/172)
Default theme:
+ Confirmed fix in place to resolve ticket #163 ( http://dev.plogger.org/ticket/163)
+ Reorganized/commented gallery.css
+ Cleaned up markup
plog-functions.php:
+ Function added to provide meta-tags with keywords and descriptions using collection name/description, album name/description, image caption/description (default keyword is gallery name, default description is "This is my Plogger gallery" and can be changed by end user) (original code by sidetheduck in  http://plogger.org/forum/discussion/1954/how-to-get-dynamic-contents/#Item_9) (requested in per ticket #172 ( http://dev.plogger.org/ticket/172)
+ Added generate_slideshow_interface function (previously in slideshow.php in each theme)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/plog-content/themes/air/footer.php

    r552 r557  
    11 
    2 <div id="footer" class="clearfix"> 
     2        <div id="footer" class="clearfix"> 
    33 
    4         <?php if (plogger_pagination_control() != '') { ?> 
    5         <div id="pagination"> 
    6                 <?php echo plogger_pagination_control(); ?> 
    7         </div> 
    8         <?php } ?> 
     4<?php if (plogger_pagination_control() != '') { ?> 
     5                <div id="pagination"> 
     6                        <?php echo plogger_pagination_control(); ?> 
     7                </div><!-- /pagination --> 
     8<?php } ?> 
     9<?php if (plogger_download_selected_button() != '') { ?> 
     10                <div id="download-selected"><?php echo plogger_download_selected_button(); ?></div><!-- /download-selected --> 
     11<?php } ?> 
     12<?php if (generate_jump_menu() != '') { ?> 
     13                <div id="navigation-container"> 
     14                                <?php echo generate_jump_menu(); ?> 
     15                </div><!-- /navigation-container --> 
     16<?php } ?> 
     17<?php if (plogger_sort_control() != '') { ?> 
     18                <div id="sort-control"> 
     19<?php echo plogger_sort_control(); ?> 
     20                </div><!-- /sort-control --> 
     21<?php } ?> 
     22<?php if (plogger_rss_feed_button() != '') { ?> 
     23                <div id="rss-tag-container"><?php echo plogger_rss_feed_button(); ?></div><!-- /rss-tag-container --> 
     24<?php } ?> 
     25                <?php echo plogger_link_back(); ?> 
     26                <div class="credit"><a href="http://www.ardamis.com/"><?php echo plog_tr('Design by')?> ardamis.com</a></div> 
    927 
    10         <?php if (plogger_download_selected_button() != '') { ?> 
    11         <div id="download-selected"> 
    12                 <?php echo plogger_download_selected_button(); ?> 
    13         </div> 
    14         <?php } ?> 
    15  
    16         <?php if (generate_jump_menu() != '') { ?> 
    17         <div id="navigation-container"> 
    18                 <?php echo generate_jump_menu(); ?> 
    19         </div> 
    20         <?php } ?> 
    21  
    22         <?php if (plogger_sort_control() != '') { ?> 
    23         <div id="sort-control"> 
    24                 <?php echo plogger_sort_control(); ?> 
    25         </div> 
    26         <?php } ?> 
    27  
    28         <?php if (plogger_rss_feed_button() != '') { ?> 
    29         <div id="rss-tag-container"> 
    30                 <?php echo plogger_rss_feed_button(); ?> 
    31         </div> 
    32         <?php } ?> 
    33  
    34         <?php echo plogger_link_back(); ?> 
    35         <div class="credit"><a href="http://www.ardamis.com/"><?php echo plog_tr('Design by')?> ardamis.com</a></div> 
    36  
    37 </div> 
    38  
     28        </div><!-- /footer --> 
    3929<?php echo plogger_download_selected_form_end(); ?> 
    4030 
    41 </div> 
     31</div><!-- /wrapper --> 
Note: See TracChangeset for help on using the changeset viewer.