PageRenderTime 49ms CodeModel.GetById 23ms RepoModel.GetById 1ms app.codeStats 0ms

/wp-content/themes/the-go-green-theme/index.php

https://bitbucket.org/aqge/deptandashboard
PHP | 43 lines | 35 code | 8 blank | 0 comment | 4 complexity | e319657e392dc5a5656f2ccbdfefd8f1 MD5 | raw file
Possible License(s): AGPL-1.0, GPL-2.0, LGPL-2.1
  1. <?php get_header(); ?>
  2. <div id="content" class="narrowcolumn">
  3. <div class="aqge-chart-widget-area">
  4. <?php
  5. $model = new AqgeChartQuery();
  6. $model->showTableList();
  7. ?>
  8. </div>
  9. <?php if (have_posts()) : ?>
  10. <?php while (have_posts()) : the_post(); ?>
  11. <div class="post" id="post-<?php the_ID(); ?>">
  12. <div class="postdate"><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></div>
  13. <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
  14. <div class="postentry"><?php the_content('Read the rest of this entry &raquo;'); ?></div>
  15. <div class="postmetadata">
  16. <?php the_tags(); ?><br />
  17. Posted in <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?> <?php comments_popup_link('No Comments &#187;', '1 Comment &#187;', '% Comments &#187;'); ?></div>
  18. </div>
  19. <?php endwhile; ?>
  20. <div class="navigation">
  21. <div class="alignleft"><?php next_posts_link('&laquo; Previous Entries') ?></div>
  22. <div class="alignright"><?php previous_posts_link('Next Entries &raquo;') ?></div>
  23. </div>
  24. <?php else : ?>
  25. <h2 class="center">Not Found</h2>
  26. <p class="center">Sorry, but you are looking for something that isn't here.</p>
  27. <?php include (TEMPLATEPATH . "/searchform.php"); ?>
  28. <?php endif; ?>
  29. </div>
  30. <?php get_sidebar(); ?>
  31. <?php get_footer(); ?>