Changeset 1084 for sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/footer.php
- Timestamp:
- 01/05/2015 05:24:12 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-themes/footer.php
r887 r1084 3 3 * The template for displaying the footer. 4 4 * 5 * Contains the closing of the #content div and all content after6 *7 5 * @package wporg-themes 8 6 */ 9 ?>10 7 11 <div id="wporg-footer"> 12 <div class="wrapper"> 13 <ul> 14 <li><a href="//wordpress.org/about/" title="An introduction to the WordPress project">About</a></li> 15 <li><a href="//wordpress.org/news/" title="News and Updates">Blog</a></li> 16 <li><a href="//wordpress.org/hosting/" title="Recommended web hosting providers">Hosting</a></li> 17 <li><a href="http://jobs.wordpress.net/" title="Find or post WordPress jobs">Jobs</a></li> 18 </ul> 19 20 <ul> 21 <li><a href="//wordpress.org/support/" title="Forums, documentation, and other resources">Support</a></li> 22 <li><a href="//make.wordpress.org/" title="Give back to WordPress through code, support, translation and more">Get Involved</a></li> 23 <li><a href="//learn.wordpress.org/" title="Workshops and training materials">Learn</a></li> 24 </ul> 25 26 <ul> 27 <li><a href="//wordpress.org/showcase/" title="Some of the best WordPress sites on the Web">Showcase</a></li> 28 <li><a href="//wordpress.org/plugins/" title="Add extra functionality to WordPress">Plugins</a></li> 29 <li><a href="//wordpress.org/themes/" title="Make your WordPress pretty">Themes</a></li> 30 <li><a href="//wordpress.org/ideas/" title="Share your ideas for improving WordPress">Ideas</a></li> 31 </ul> 32 33 <ul> 34 <li><a href="http://central.wordcamp.org/" title="Find a WordPress event near you">WordCamp</a></li> 35 <li><a href="http://wordpress.tv/" title="Videos, tutorials, and WordCamp sessions">WordPress.TV</a></li> 36 <li><a href="//buddypress.org/" title="A set of plugins to transform your WordPress into a social network">BuddyPress</a></li> 37 <li><a href="//bbpress.org/" title="Fast, slick forums built on WordPress">bbPress</a></li> 38 </ul> 39 40 <ul> 41 <li><a href="http://wordpress.com/?ref=wporg-footer" title="Hassle-free WordPress hosting">WordPress.com</a></li> 42 <li><a href="http://ma.tt/" title="Co-founder of WordPress, an example of what WordPress can do">Matt</a></li> 43 <li><a href="//wordpress.org/about/privacy/" title="WordPress.org Privacy Policy">Privacy</a></li> 44 <li><a href="//wordpress.org/about/license/" title="WordPress is open source software">License / GPLv2</a></li> 45 </ul> 46 47 <ul> 48 <li> 49 <iframe allowtransparency="true" frameborder="0" scrolling="no" src="//platform.twitter.com/widgets/follow_button.html?screen_name=WordPress&show_count=false" style="width:135px; height:20px;"></iframe> 50 </li> 51 <li> 52 <iframe src="//www.facebook.com/plugins/like.php?app_id=121415197926116&href=http%3A%2F%2Fwww.facebook.com%2Fwordpress&send=false&layout=button_count&width=135&show_faces=false&action=like&colorscheme=light&font=lucida+grande&height=21" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:135px; height:21px;" allowTransparency="true"></iframe> 53 </li> 54 </ul> 55 </div> 56 57 <h6 class="aligncenter">Code is Poetry</h6> 58 </div> 59 60 61 <script type="text/javascript"> 62 var _qevents = _qevents || []; 63 (function() { 64 var elem = document.createElement('script'); 65 elem.src = (document.location.protocol == "https:" ? "https://secure" : "http://edge") 66 + ".quantserve.com/quant.js"; 67 elem.async = true; 68 elem.type = "text/javascript"; 69 var scpt = document.getElementsByTagName('script')[0]; 70 scpt.parentNode.insertBefore(elem, scpt); 71 })(); 72 </script> 73 <script type="text/javascript">_qevents.push( { qacct:"p-18-mFEk4J448M"} );</script> 74 <noscript><img src="//pixel.quantserve.com/pixel/p-18-mFEk4J448M.gif" style="display: none;" border="0" height="1" width="1" alt=""/></noscript> 75 <!-- --> 76 <script type="text/javascript" src="//gravatar.com/js/gprofiles.js"></script> 77 78 <script type="text/javascript"> 79 (function($){ 80 $(document).ready(function() { 81 $('#footer a').click(function() { 82 if (this.href.indexOf('wordpress.org') == -1 && this.href.indexOf('http') == 0) { 83 recordOutboundLink(this, 'Outbound Links', this.href); 84 return false; 85 } 86 }); 87 }); 88 })(jQuery); 89 </script> 90 91 <?php wp_footer(); ?> 92 </body> 93 </html> 8 require WPORGPATH . 'footer.php';
Note: See TracChangeset
for help on using the changeset viewer.