Advertisement
maryaciolli

sorry, i'm not sorry theme

Sep 19th, 2013
310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.15 KB | None | 0 0
  1. <!-- -->
  2. <!-- -->
  3. <!-- THEME BY CLEVELLAND -->
  4. <!-- CLEVELLAND.TUMBLR.COM -->
  5. <!-- DON'T COPY BITCH! -->
  6. <!-- -->
  7. <!-- -->
  8.  
  9.  
  10. <html>
  11. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  12. <html xmlns="http://www.w3.org/1999/xhtml">
  13. <head>
  14.  
  15. <title>{title}</title>
  16. <link rel="shortcut icon" href="{Favicon}"/>
  17. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  18. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  19.  
  20. <meta name="color:Background" content="#ffffff"/>
  21. <meta name="color:Text" content="#4d4242"/>
  22. <meta name="color:Link" content="#a56f6f"/>
  23. <meta name="color:Link Hover" content="#e7b0b0"/>
  24. <meta name="if:2 Column" content="1"/>
  25. <meta name="image:Sidebar" content="http://static.tumblr.com/64d54e9739bab1869d539f7942b1089d/hb9qx6v/5M9mte7fn/tumblr_static_17453870.png"/>
  26. <meta name="text:sidetitle" content="" />
  27. <meta name="text:Link1" content="/" />
  28. <meta name="text:Link1 Title" content="" />
  29. <meta name="text:Link2" content="/" />
  30. <meta name="text:Link2 Title" content="" />
  31. <meta name="text:Link3" content="/" />
  32. <meta name="text:Link3 Title" content="" />
  33.  
  34. <style type="text/css">
  35.  
  36. body{
  37. color:{color:Text};
  38. font-family:verdana;
  39. font-size:10px;
  40. background-color:{color:Background};
  41. width:1000px;
  42. margin-left:auto;
  43. margin-right:auto;
  44. }
  45.  
  46. #post{
  47. {block:If2Column}
  48. width:600px;{/block:If2Column}
  49. {block:IfNot2Column}width:508px;{block:IfNot2Column}
  50. margin-left:auto;
  51. margin-right:auto;
  52. background-color:#fff;
  53. padding:5px;
  54. }
  55.  
  56. .linkss {border-top:1px solid #eee;
  57. border-bottom:1px solid #eee;
  58. padding-top:2px;
  59. padding-bottom:2px;
  60. font-size:9px;}
  61.  
  62. a{color:{color:Link};text-decoration:none;} a:hover{color:{color:Link Hover};}
  63.  
  64. .entry{
  65. padding:2px;
  66. background-color:#fff;
  67. {block:If2Column}width:250px;{block:If2Column}
  68. {block:IfNot2Column}width:500px;{block:IfNot2Column}
  69. float:left;
  70. margin:2px;
  71. }
  72.  
  73. .entry .perma{
  74. background:#fff;
  75. padding:2px;
  76. text-align:center;
  77. border-radius:0px;
  78. margin-top:3px;
  79. margin-left:-30px;
  80. position:absolute;
  81. opacity:0.0;
  82. width:239px;
  83. -webkit-transition: opacity 0.5s linear;
  84. -webkit-transition: all 0.5s linear;
  85. -moz-transition: all 0.5s linear;
  86. }
  87.  
  88. .entry:hover .perma{opacity:.8;margin-left:4px; -webkit-transition: opacity 0.5s linear;
  89. -webkit-transition: all 0.5s linear;
  90. -moz-transition: all 0.5s linear;}
  91.  
  92. .sidetitle{font-size:15px;
  93. font-family:new york;
  94. font-style:italic;
  95. line-height:100%;
  96. text-align:center;
  97. height:auto;
  98. letter-spacing:1px;
  99. word-spacing:0px;
  100. margin-bottom:6px;
  101. border-bottom:1px solid #eee;}
  102.  
  103. #sidebar{
  104. background-color:#fff;
  105. width:160px;
  106. margin-top:100px;
  107. margin-left:0px;
  108. position:fixed;
  109. padding:3px;
  110. text-align:justify;
  111. float:center;
  112. }
  113.  
  114. #sidebar img{border:1px solid #eee;width:140px;height:auto;padding:10px; margin-bottom:8px;}
  115.  
  116. .pagination {
  117. display: none;
  118. }
  119. {CustomCSS]</style>
  120.  
  121. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  122.  
  123. <script src="http://static.tumblr.com/6hsqxdt/vmwm2rb4g/infinitescrolling.js"></script><script src="http://static.tumblr.com/6hsqxdt/QBym35odk/jquery.masonry.js"></script>
  124.  
  125. <script>
  126. $(function(){
  127. var $container = $('#post');
  128. $container.imagesLoaded(function(){
  129. $container.masonry({
  130. itemSelector: '.entry',
  131. });
  132. });
  133. $container.infinitescroll({
  134. itemSelector : ".entry",
  135. navSelector : "div.pagination",
  136. nextSelector : ".pagination a#next",
  137. loadingImg : "",
  138. loadingText : "<em></em>",
  139. bufferPx : 10000,
  140. extraScrollPx: 12000,
  141. },
  142. // trigger Masonry as a callback
  143. function( newElements ) {
  144. var $newElems = $( newElements ).css({ opacity: 0 });
  145. // ensure that images load before adding to masonry layout
  146. $newElems.imagesLoaded(function(){
  147. $newElems.animate({ opacity: 1 });
  148. $container.masonry( 'appended', $newElems, true );
  149. });
  150. }
  151. );
  152. });
  153. </script>
  154.  
  155. </head>
  156. <body>
  157.  
  158. <div id="sidebar">
  159.  
  160. <img src="{image:Sidebar}">
  161.  
  162. <div class="sidetitle">{text:sidetitle}</div>
  163.  
  164. {description}<br><br>
  165.  
  166. <div class="linkss">
  167. <center>
  168. <a href="/">home</a>
  169. <a href="/ask">mail</a>
  170. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  171. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}
  172. {block:ifLink3}<a href="{text:Link2}">{text:Link3 Title}</a>{/block:ifLink3}
  173. </center>
  174. </div>
  175.  
  176. </div>
  177. </div></div><!--Sidebar End-->
  178.  
  179. <div id="post">
  180. {block:Posts}
  181. <div class="entry">
  182.  
  183. <div class="perma"><a href="{Permalink}"> <a href="{Permalink}">{DayOfMonthWithZero} {ShortMonth} โ˜… </a><a href="{Permalink}">{NoteCount} notes โ˜… </a><a href="{ReblogURL}" target="_blank"> reblog </a></div>
  184.  
  185. {block:Title}<h1>{Title}</h1>{/block:Title}
  186.  
  187. {block:Text}{Body}{/block:Text}
  188.  
  189. {block:Photo}
  190. {block:If2Column}
  191. <a href="{permalink}"><img src="{PhotoURL-500}" width="250"/></a>{/block:If2Column}
  192.  
  193. {block:IfNot2Column}
  194. <a href="{permalink}"><img src="{PhotoURL-500}" width="500"/></a>{/block:IfNot2Column}
  195. {/block:Photo}
  196.  
  197. {block:Photoset}
  198.  
  199. {block:If2Column}
  200. {Photoset-250}
  201. {/block:If2Column}
  202.  
  203. {block:IfNot2Column}
  204. {Photoset-500}
  205. {/block:IfNot2Column}
  206.  
  207. {/block:Photoset}
  208.  
  209.  
  210. {block:Quote}
  211. {Quote}
  212. <div align="right">
  213. {block:Source}-{Source}{/block:Source}
  214. </div>
  215. {/block:Quote}
  216.  
  217.  
  218. {block:Video}
  219. {block:If2Column}
  220. {Video-250}
  221. {/block:If2Column}
  222.  
  223. {block:IfNot2Column}
  224. {Video-500}
  225. {/block:IfNot2Column}<br>
  226. {PlayCountWithLabel}
  227. {/block:Video}
  228.  
  229.  
  230. {block:Link}
  231. <h1><a href="{URL}" class="link" {Target}>{Name}</a></h1>
  232. {block:Description}{Description}{/block:Description}
  233. {/block:Link}
  234.  
  235. {block:Chat}
  236. {block:Lines}
  237. {block:Label}
  238. <br>{Label}
  239. {/block:Label}
  240. &nbsp;{Line}
  241. {/block:Lines}
  242. {/block:Chat}
  243.  
  244. {block:Audio}
  245. {AudioPlayerGrey}
  246. <br><div align="right">{block:Artist}
  247. Artist: {Artist}</div>
  248. {/block:Artist}<br>
  249. {block:Caption}{Caption}{/block:Caption}
  250. {/block:Audio}
  251.  
  252.  
  253. {block:Answer}
  254. {Asker} asked <b>{Question}</b><Br>
  255. {Answer}
  256. {/block:Answer}
  257.  
  258. {block:PermalinkPage}
  259. {block:Caption}
  260. {Caption}
  261. {/block:Caption}
  262. <br>
  263. {block:NoteCount}
  264. {NoteCount} notes
  265. {/block:NoteCount}
  266. <Br>
  267. {block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  268. {/block:PermalinkPage}
  269. </div>
  270.  
  271. {/block:Posts}
  272.  
  273. </div>
  274. <div class="pagination">
  275. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">previous</a> &middot;{/block:PreviousPage} {block:NextPage}<a href="{NextPage}" id="next">next</a>{/block:NextPage}{/block:Pagination}
  276. </div>
  277.  
  278.  
  279. <div style="bottom:10px;right:10px;position:fixed;font-size:12px;"><img src="http://25.media.tumblr.com/tumblr_lysnmc9LZK1r2mytio1_400.gif"</div>
  280.  
  281. <div style="bottom:15px;LEFT:15px;position:fixed;font-size:10px;"><a href="http://clevelland.tumblr.com" title="THEME BY CLEVELLAND (C)">THEME</a></div>
  282. </body>
  283. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement