Advertisement
exoticflower

exotic-02

Apr 28th, 2013
2,752
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.82 KB | None | 0 0
  1. <html>
  2. <head><script type="text/javascript"
  3. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  4.  
  5. <!-- exotic-02 by cigerettes.tumblr.com
  6. download @ exoticlayouts.tumblr.com -->
  7.  
  8. <!--this is a randomized grid theme & is strictly for photo posts only-->
  9.  
  10. <meta name="color:text" content="#000000">
  11. <meta name="color:link" content="#000000">
  12. <meta name="color:active" content="#000000">
  13. <meta name="color:hover" content="#838383">
  14. <meta name="color:blockquote" content="#000000">
  15.  
  16. <style type="text/css">
  17.  
  18. body {
  19. padding: 0px;
  20. margin: 0px;
  21. color:{color:text};
  22. background-color: #fff;
  23. font-family: georgia;
  24. font-size: 9px;
  25. color:{color:text};
  26. line-height:9px;
  27. }
  28.  
  29. a:link, a:visited{
  30. color: {color:link};
  31. text-decoration: none;
  32. }
  33.  
  34. a:active{
  35. color:{color:active};
  36. }
  37.  
  38. a:hover{
  39. color:{color:Hover};
  40. }
  41.  
  42. .entry {
  43. text-align:center;
  44. background-color: #fff;
  45. font-family: georgia;
  46. font-size: 9px;
  47. {block:PermalinkPage}width:800px; margin-top:80px;margin-left:160px;text-align:left;{/block:PermalinkPage}
  48. }
  49.  
  50. #entrytext { width:560px; text-align:justify; margin:auto; padding:10px; background-color:none; }
  51.  
  52.  
  53. img {border:0px; opacity:.9;padding: 25px;}
  54. img:hover {opacity:.85;}
  55.  
  56. blockquote {
  57. border-left: 3px solid;
  58. padding-left: 15px;
  59. margin-left: 10px;
  60. font-style: italic;
  61. color:{color:blockquote};
  62. }
  63.  
  64. #posts {
  65. padding-left:25px;
  66. text-align:center;
  67. background-color:white;
  68. left:315px;
  69. top:55px;
  70. {block:IndexPage}
  71. width:625px;
  72. {/block:IndexPage}
  73. {block:permalinkpage}
  74. width:500px;
  75. margin-left:175px;
  76. margin-top:100px;
  77. {/block:permalinkpage}
  78. }
  79.  
  80. .entry #perma{
  81. opacity:0;
  82. text-align:center;
  83. margin-top:-10px;
  84. font-size:9px;
  85. font-family:courier new;
  86. z-index:9999999999;
  87. line-height:9px;
  88. }
  89.  
  90. .entry #perma a{
  91. color:{color:link};
  92. }
  93.  
  94. .entry #perma blockquote{
  95. text-align:center;
  96. }
  97.  
  98. .entry:hover #perma{
  99. opacity:1;
  100. }
  101.  
  102. .blogtitle{
  103. text-align:center;
  104. font-family:courier new;
  105. font-size: 20px;
  106. background-color:transparent;
  107. margin-top:25px;
  108. text-transform:uppercase;
  109. position:fixed;
  110. z-index:99999;
  111. width:100%;
  112. }
  113.  
  114. .blogtitle a {background-color:transparent; padding-top:1px; padding-left:4px; padding-right:4px; padding-bottom:1px; border:1px solid #444;}
  115.  
  116. .blogtitle a:hover {backgound-color:#000; opacity:.5;}
  117.  
  118. .links{
  119. text-align:center;
  120. font-family:courier new;
  121. font-size: 10px;
  122. background-color:transparent;
  123. margin-top:55px;
  124. text-transform:lowercase;
  125. position:fixed;
  126. z-index:99999;
  127. width:100%;
  128. }
  129.  
  130. .links a {background-color:transparent; padding-top:1px; padding-left:4px; padding-right:4px; padding-bottom:1px; border-bottom:1px solid #444;}
  131.  
  132. .links a:hover {backgound-color:#000; opacity:.5;}
  133.  
  134. #title{
  135. font-size:larger;
  136. background-color:transparent; padding-top:1px; padding-left:4px; padding-right:4px; padding-bottom:1px; border-bottom:1px solid #444;}
  137. }
  138.  
  139. {CustomCSS}
  140. </style>
  141. {block:IndexPage}
  142. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  143. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  144.  
  145. <script type="text/javascript">
  146. $(window).load(function () {
  147. var $content = $('#posts');
  148. $content.masonry({itemSelector: '.entry'}),
  149. $content.infinitescroll({
  150. navSelector : '#pagination',
  151. nextSelector : '#pagination a#nextPage',
  152. itemSelector : '.entry',
  153. loading: {
  154. finishedMsg: 'you have reached the end',
  155. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  156. },
  157. bufferPx : 300,
  158. debug : false,
  159. },
  160. // call masonry as a callback.
  161. function( newElements ) {
  162. var $newElems = $( newElements );
  163. $newElems.hide();
  164. // ensure that images load before adding to masonry layout
  165. $newElems.imagesLoaded(function(){
  166. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  167.  
  168.  
  169. });
  170. });
  171. });
  172. </script>
  173. {/block:IndexPage}
  174.  
  175. <title>{title}</title>
  176.  
  177. <link rel="shortcut icon" href="{Favicon}">
  178. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  179. <meta name="viewport" content="width=820" />
  180.  
  181. </style>
  182.  
  183. </head>
  184.  
  185. <body>
  186. <div class="blogtitle"><a href="/">{title}</a></div>
  187. <div class="links">
  188. <a href="/">home</a>&nbsp;&nbsp;<a href="/ask">ask</a>{block:HasPages}
  189. {block:Pages}
  190. &nbsp;<a href="{URL}">{Label}</a>
  191. {/block:Pages}
  192. {/block:HasPages}&nbsp;<a href="http://cigerettes.tumblr.com/">themes</a>
  193. </div><div id="posts">
  194.  
  195. {block:Posts}
  196. <div class="entry">
  197.  
  198.  
  199.  
  200. {block:Photo}{block:IndexPage}
  201.  
  202. {block:Post1}
  203. <img src="{PhotoURL-HighRes}" width="230" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  204. {/block:Post1}
  205.  
  206. {block:Post2}
  207. <img src="{PhotoURL-HighRes}" width="230" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  208. {/block:Post2}
  209.  
  210. {block:Post3}
  211. <img src="{PhotoURL-HighRes}" width="510" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  212. {/block:Post3}
  213.  
  214. {block:Post4}
  215. <img src="{PhotoURL-HighRes}" width="230" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  216. {/block:Post4}
  217.  
  218. {block:Post5}
  219. <img src="{PhotoURL-HighRes}" width="230" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  220. {/block:Post5}
  221.  
  222. {block:Post6}
  223. <img src="{PhotoURL-HighRes}" width="510" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  224. {/block:Post6}
  225.  
  226. {block:Post7}
  227. <img src="{PhotoURL-HighRes}" width="230" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  228. {/block:Post7}
  229.  
  230. {block:Post8}
  231. <img src="{PhotoURL-HighRes}" width="230" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  232. {/block:Post8}
  233.  
  234. {block:Post9}
  235. <img src="{PhotoURL-HighRes}" width="510" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  236. {/block:Post9}
  237.  
  238. {block:Post10}
  239. <img src="{PhotoURL-HighRes}" width="230" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  240. {/block:Post10}
  241.  
  242. {block:Post11}
  243. <img src="{PhotoURL-HighRes}" width="230" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  244. {/block:Post11}
  245.  
  246. {block:Post12}
  247. <img src="{PhotoURL-HighRes}" width="510" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  248. {/block:Post12}
  249.  
  250. {block:Post13}
  251. <img src="{PhotoURL-HighRes}" width="230" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  252. {/block:Post13}
  253.  
  254. {block:Post14}
  255. <img src="{PhotoURL-HighRes}" width="230" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  256. {/block:Post14}
  257.  
  258. {block:Post15}
  259. <img src="{PhotoURL-HighRes}" width="510" alt="{PhotoAlt}"/><div id="perma">{block:Caption}{Caption}{/block:Caption}<br><a href="{reblogURL}" target="_blank">reblog</a></div>
  260. {/block:Post15}
  261.  
  262. {/block:IndexPage}
  263.  
  264. {block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-HighRes}" width="500" alt="{PhotoAlt}"/>{LinkCloseTag}
  265. {/block:PermalinkPage}
  266. {/block:Photo}
  267.  
  268. {block:Text}
  269. <br><br><br><br><br><br>
  270. <div id="entrytext">
  271. <a href="{Permalink}">
  272. <a href="{Permalink}"><div id="title">{Title}</div></a>
  273. {Body}
  274. </div>{block:permalinkpage}<br><br><br><br><br><br>
  275. {/block:PermalinkPage}
  276. {/block:Text}
  277.  
  278.  
  279.  
  280. {block:PermalinkPage}
  281.  
  282. {block:Date}
  283. <center>
  284. {block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</center>
  285. {/block:Date}
  286.  
  287. {/block:PermalinkPage}
  288. </div>
  289.  
  290.  
  291. {/block:Posts}
  292. </div>
  293. </div>
  294. {block:IndexPage}<br>
  295. {block:Pagination}
  296. <div id="pagination">
  297. {block:NextPage}
  298. <a id="nextPage" href="{NextPage}"></a>
  299. {/block:NextPage}
  300. {block:PreviousPage}
  301. <a href="{PreviousPage}"></a>
  302. {/block:PreviousPage}
  303. </div>
  304. {/block:Pagination}
  305. {/block:IndexPage}
  306. </div></div>
  307.  
  308.  
  309. </body>
  310.  
  311. <!-- i spent so much time and effort pls dont remove credits
  312. i tried to make them as out of the way as possible
  313. thank you dear -->
  314.  
  315. <div style="display:block;bottom:5px;right:-1px;font-size:25px;font-family:georgia;position:fixed;z-index:5;padding:3px;"><a href="http://cigerettes.tumblr.com/">▣</a>
  316. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement