/sites/all/themes/features/views-view--showsite-blogs--page-1.tpl.php

https://github.com/nbcutech/o3drupal · PHP · 210 lines · 173 code · 33 blank · 4 comment · 7 complexity · 90ae2e0f1847a959951bfc2b15c986e4 MD5 · raw file

  1. <style>
  2. <!--
  3. /* custom blog views : Earl Dunovant */
  4. .view-display-id-page {
  5. padding-left: 10px;
  6. padding-right: 10px;
  7. }
  8. .bloglist-row-image-frame {
  9. height: 102px;
  10. width:152px;
  11. float: left;
  12. background-color:white;
  13. background: url('/<?php print $directory; ?>/images/frame2_.png') no-repeat top
  14. }
  15. .bloglist-row-image {
  16. height: 89px;
  17. width:132px;
  18. margin-top: 8px;
  19. margin-left: 10px;
  20. background-color: silver;
  21. }
  22. .bloglist-row-text {
  23. width:475px;
  24. padding-left:10px;
  25. float: left;
  26. margin-top: 10px;
  27. }
  28. .bloglist-row-name {
  29. text-transform: uppercase;
  30. font-weight: bold;
  31. display: inline;
  32. }
  33. .bloglist-row-text a.sectColor-entertainment {
  34. background-color: #0894CF;
  35. color: #ffffff;
  36. display: inline;
  37. padding: 1px 8px;
  38. }
  39. .bloglist-row-title {
  40. font-weight: bold;
  41. font-size: 1.5em;
  42. margin-bottom: 2px;
  43. margin-top: 2px;
  44. }
  45. .bloglist-row-teaser {
  46. font-size: 1.1em;
  47. }
  48. .bloglist-row-read-more {
  49. }
  50. .bloglist-row-flag {
  51. }
  52. .bloglist-block-row-image-frame {
  53. height: 90px;
  54. width:120px;
  55. margin-right:6px;
  56. float: left;
  57. }
  58. .bloglist-block-row-text {
  59. height: 90px;
  60. width:auto;
  61. padding-left:3px;
  62. overflow: hidden;
  63. }
  64. .bloglist-block-row-title {
  65. font-weight: bold;
  66. color: fuchsia;
  67. }
  68. .bloglist-block-row-teaser {
  69. }
  70. .bloglist-block-row-date {
  71. }
  72. #wideLeft {
  73. background-image: none;
  74. background-color: #fff;
  75. }
  76. .bloglist-row-date {
  77. color: #999999;
  78. margin-bottom: 3px;
  79. }
  80. .bloglist-row-read-more, .bloglist-row-read-more a {
  81. background-color: #999999;
  82. padding: 0 2px;
  83. float: right;
  84. color: #ffffff;
  85. }
  86. .blog_section_title {
  87. color: #000000;
  88. font-size: 26px;
  89. font-weight: normal;
  90. padding-left: 10px;
  91. padding-top: 10px;
  92. }
  93. .feature_blog_item {
  94. width: 320px;
  95. float: left;
  96. height: 115px;
  97. margin: 5px auto;
  98. }
  99. .feature_blog_block {
  100. background-image: url(/<?php print $directory; ?>/images/feature_blog_bg.gif);
  101. background-repeat: no-repeat;
  102. background-position: 0px 0px;
  103. height: 300px;
  104. width: 680px;
  105. margin-bottom: 20px;
  106. }
  107. .more-blogs-row {
  108. margin-bottom: 12px;
  109. padding-bottom: 12px;
  110. border-bottom: 1px solid #ddd;
  111. }
  112. .feature-block-item {
  113. display: block;
  114. float: left;
  115. width: 150px;
  116. }
  117. #contentHeader {
  118. background: url("/sites/all/themes/features/images/out_loud_header.png") no-repeat scroll 0 0 transparent;
  119. width: 678px;
  120. }
  121. img.lol_blog_section_banner {
  122. position: absolute;
  123. left: 0;
  124. top: 20px;
  125. }
  126. .clearfloat {
  127. clear: both;
  128. font-size: 1px;
  129. height: 0;
  130. line-height: 0;
  131. }
  132. #wideLeft .copy {
  133. color: #000000;
  134. padding: 5px 0px;
  135. }
  136. -->
  137. </style>
  138. <img alt="" src="/<?php print $directory; ?>/images/entertainment_blogsBanner.gif" class="lol_blog_section_banner" />
  139. <br class="clearfloat" />
  140. <div class="clear-block view view-<?php print $css_name; ?> view-id-<?php print $name; ?> view-display-id-<?php print $display_id; ?> view-dom-id-<?php print $dom_id; ?>">
  141. <?php if ($header): ?>
  142. <div class="view-header">
  143. <?php print $header; ?>
  144. </div>
  145. <?php endif; ?>
  146. <?php if ($attachment_before): ?>
  147. <div class="attachment-before">
  148. <?php print $attachment_before; ?>
  149. </div>
  150. <?php endif; ?>
  151. <!-- <div class="bloglist-page-postby"><?php print $cast_member_name; ?> blogs</div> -->
  152. <?php if ($rows): ?>
  153. <div class="view-content">
  154. <?php print $rows; ?>
  155. </div>
  156. <?php elseif ($empty): ?>
  157. <div class="view-empty">
  158. <?php print $empty; ?>
  159. </div>
  160. <?php endif; ?>
  161. <?php if ($pager): ?>
  162. <?php print $pager; ?>
  163. <?php endif; ?>
  164. <?php if ($attachment_after): ?>
  165. <div class="attachment-after">
  166. <?php print $attachment_after; ?>
  167. </div>
  168. <?php endif; ?>
  169. <?php if ($more): ?>
  170. <?php print $more; ?>
  171. <?php endif; ?>
  172. <?php if ($footer): ?>
  173. <div class="view-footer">
  174. <?php print $footer; ?>
  175. </div>
  176. <?php endif; ?>
  177. </div> <?php // class view ?>