index_OLD.html 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {% extends "marketplace/base.html" %}
  2. {% block title %}Local Business Directory | Penobcot Bay Press {% endblock %}
  3. {% block content %}
  4. <div style="width:100%; margin:0; padding:0">
  5. <div class="main_content_left">
  6. <div class="dirservhead">
  7. <h2 class="sectionhead_wide" style="margin-top:8px; margin-bottom:8px">Business Directory</h2>
  8. {% for guide in guides %}
  9. <div style="width:154px; height:120px; border:1px solid black; padding:5px; margin:2px; float:left;" align="left">
  10. <strong><a href="{{guide.get_absolute_url}}" class="guidehead">{{guide.tag_line}}</a></strong><br>
  11. {% if guide.logo_thumbnail %}
  12. <div style="float:right; padding:5px;"><img src="{{MEDIA_URL}}{{guide.logo_thumbnail}}"></div>
  13. {% endif %}
  14. <span class="guide_text">{{guide.brief_description}}</span>
  15. </div>
  16. {% endfor %}
  17. <div style="padding-bottom:5px; clear:both">
  18. </div>
  19. {% for cat in categories %}
  20. <p class="dirservindexhead" style="display:block; clear:both; padding:2px; text-align:center; margin-bottom:10px">{{cat}}</p>
  21. <p class="dirservindex">
  22. {% for subcat in cat.subcategory_set.all %}
  23. {% if subcat.business_set.all %}
  24. <div style="float:left; padding-bottom:5px"><span class="bullet_inline_dir">&bull;</span><a href="{{subcat.get_absolute_url}}" class="dirservlinks">{{ subcat }}</a></div>
  25. {% endif %}
  26. {% endfor %}
  27. </p>
  28. {% endfor %}
  29. </div>
  30. </div>
  31. </div>
  32. <div class="sidebar_right_media">
  33. <!-- Block Ad BEGIN -->
  34. {% load adzone_tags %}
  35. {% random_zone_ad '' 'cn-block' %}
  36. <!-- Block Ad END -->
  37. </div>
  38. {% endblock %}