Advertisement
Guest User

Untitled

a guest
Jan 27th, 2013
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.20 KB | None | 0 0
  1. <!--doctype html-->
  2. <html>
  3. <head>
  4. <title>{Title}</title>
  5. <link rel="shortcut icon" href="{Favicon}">
  6. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  7. {block:Description}
  8. <meta name="description" content="{MetaDescription}" />
  9. {/block:Description}
  10. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  11. <style>
  12. html, body, div, span, applet, object, iframe,
  13. h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  14. a, abbr, acronym, address, big, cite, code,
  15. del, dfn, em, img, ins, kbd, q, s, samp,
  16. small, strike, strong, sub, sup, tt, var,
  17. b, u, i, center,
  18. dl, dt, dd, ol, ul, li,
  19. fieldset, form, label, legend,
  20. table, caption, tbody, tfoot, thead, tr, th, td,
  21. article, aside, canvas, details, embed,
  22. figure, figcaption, footer, header, hgroup,
  23. menu, nav, output, ruby, section, summary,
  24. time, mark, audio, video {
  25. margin: 0;
  26. padding: 0;
  27. border: 0;
  28. font-size: 100%;
  29. font: inherit;
  30. vertical-align: baseline;
  31. }
  32. /* HTML5 display-role reset for older browsers */
  33. article, aside, details, figcaption, figure,
  34. footer, header, hgroup, menu, nav, section {
  35. display: block;
  36. }
  37. body {
  38. line-height: 1;
  39. font-family: sans-serif;
  40. background: #EFEFEF;
  41. font-size: 12px;
  42. }
  43. a{
  44. color: #545454;
  45. }
  46. a:visited{
  47. color: #545454;
  48. }
  49. a:hover{
  50. color: #414141;
  51. }
  52. p{
  53. line-height: 1.6;
  54. margin: 10px 0;
  55. }
  56. ol, ul {
  57. list-style: none;
  58. }
  59. blockquote, q {
  60. quotes: none;
  61. }
  62. blockquote:before, blockquote:after,
  63. q:before, q:after {
  64. content: '';
  65. content: none;
  66. }
  67. table {
  68. border-collapse: collapse;
  69. border-spacing: 0;
  70. }
  71. article{
  72. position: relative;
  73. }
  74. article img{
  75. width: 100%;
  76. margin-bottom: -5px;
  77. }
  78. .permalinkdesc{
  79. width: 500px;
  80. margin: 25px auto;
  81. }
  82. ol.notes {
  83. padding: 0px;
  84. width: 500px;
  85. margin: 25px auto;
  86. list-style-type: none;
  87. }
  88.  
  89. ol.notes li.note {
  90. padding: 10px 10px;
  91. background: #FFF;
  92. display: inline-block;
  93. margin-bottom: 4px;
  94. border-radius: 3px;
  95. }
  96.  
  97. .note:even{
  98. background: #F7F7F7;
  99. }
  100.  
  101. ol.notes li.note img.avatar {
  102. vertical-align: -4px;
  103. margin-right: 10px;
  104. width: 16px;
  105. height: 16px;
  106. }
  107. ol.notes li.note .answer_content {
  108. font-weight: normal;
  109. }
  110.  
  111. ol.notes li.note blockquote {
  112. border-color: #eee;
  113. padding: 4px 10px;
  114. margin: 10px 0px 0px 25px;
  115. }
  116.  
  117. ol.notes li.note blockquote a {
  118. text-decoration: none;
  119. }
  120. p.footer{
  121. font-style: italic;
  122. }
  123. .tags{
  124. margin: 25px 0;
  125. }
  126. .tags li{
  127. display: inline;
  128. background: #FFF;
  129. border-radius: 2px;
  130. padding: 4px;
  131. margin: 5px 5px 0 0;
  132. }
  133. .tags li:hover{
  134. background: #f8f8f8;
  135. }
  136. .tags li a{
  137. text-decoration: none;
  138. color: #545454;
  139. }
  140. .caption{
  141. font-size: 18px;
  142. font-weight: bold;
  143. }
  144. .anchorNext{
  145. width:10%;
  146. height:100%;
  147. position:fixed;
  148. top:0;
  149. right:0;
  150. float:left;
  151. overflow:none;
  152. text-decoration: none;
  153. border-right: 0px solid #efefef;
  154. }
  155. .anchorPrev{
  156. width:10%;
  157. height:100%;
  158. position:fixed;
  159. top:0;
  160. left:0;
  161. float:left;
  162. overflow:none;
  163. text-decoration: none;
  164. border-left: 0px solid #efefef;
  165. }
  166. .anchorPrev:hover{
  167. border-left: 10px solid #efefef;
  168. }
  169. .anchorNext:hover{
  170. border-right: 10px solid #efefef;
  171. }
  172.  
  173. .previous, .next{
  174. font-size: 14px;
  175. color: #000;
  176. position: absolute;
  177. top: 50%;
  178. margin-top: -20px;
  179. background-color: #efefef;
  180. padding:10px 20px;
  181. opacity: 0;
  182. }
  183. .next{
  184. right: 0;
  185. }
  186. .anchorPrev:hover .previous, .anchorNext:hover .next{
  187. background-color: #efefef;
  188. opacity: 1;
  189. }
  190. .next, .previous, .anchorNext, .anchorPrev{
  191. -webkit-transition: all .2s ease-in-out;
  192. -moz-transition: all .2s ease-in-out;
  193. -o-transition: all .2s ease-in-out;
  194. transition: all .2s ease-in-out;
  195. }
  196.  
  197. b{
  198. font-size:12px;
  199. weight:normal;
  200. }
  201.  
  202. .permalinkdesc img{
  203. width:500px
  204. }
  205. </style>
  206.  
  207. </head>
  208. <body>
  209.  
  210. <div class="content">
  211. <div class = "autopagerize_page_element" >
  212. {block:Posts}
  213. {block:Photo}
  214. <article>
  215. <a href="{Permalink}">
  216. {block:HighRes}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" />{/block:HighRes}
  217. </a>
  218. </article>
  219.  
  220. {block:PermalinkPagination}
  221.  
  222. {block:PreviousPost}
  223. <a href="{PreviousPost}" class="anchorPrev"><div class="previous">Older</div></a>
  224. {/block:PreviousPost}
  225.  
  226. {block:NextPost}
  227. <a href="{NextPost}" class="anchorNext"><div class="next">Newer</div></a>
  228. {/block:NextPost}
  229.  
  230. {/block:PermalinkPagination}
  231. {block:PermalinkPage}
  232.  
  233. <section class="permalinkdesc">
  234.  
  235. {block:HasTags}
  236. <ul class="tags">
  237. {block:Tags}
  238. <li>
  239. <a href="{TagURL}">#{Tag}</a>
  240. </li>
  241. {/block:Tags}
  242. </ul>
  243. {/block:HasTags}
  244.  
  245. <div class="caption">{Caption}</div>
  246.  
  247.  
  248.  
  249. </section>
  250. {/block:PermalinkPage}
  251.  
  252. {block:PostNotes}{PostNotes}{/block:PostNotes}
  253.  
  254. {/block:Photo}
  255. {/block:Posts}
  256. </div>
  257. </div>
  258.  
  259. </body>
  260. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement