Advertisement
shanelanne

st-uckinreverse tweaked theme #1

May 21st, 2012
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.88 KB | None | 0 0
  1. <!--
  2. TWEAKED THEME BY ST-UCKINREVERSE
  3. FIRST MADE BY -SHROOMS AND BITZERS
  4. Please don't remove the credits xxx
  5. -->
  6.  
  7. <head>
  8.  
  9. <script type="text/javascript"
  10. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  11. <script>
  12. $(document).ready(function() {
  13. //
  14. $('a.poplight[href^=#]').click(function() {
  15. var popID = $(this).attr('rel'); //Get Popup Name
  16. var popURL = $(this).attr('href'); //Get Popup href to define size
  17. var query= popURL.split('?');
  18. var dim= query[1].split('&');
  19. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  20. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://images.findicons.com/files/icons/1030/windows_7/32/close.png" class="btn_close" title="Close" alt="Close!!" /></a>');
  21. var popMargTop = ($('#' + popID).height() + 80) / 2;
  22. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  23. //Apply Margin to Popup
  24. $('#' + popID).css({
  25. 'margin-top' : -popMargTop,
  26. 'margin-left' : -popMargLeft
  27. });
  28. $('body').append('<div id="fade"></div>');
  29. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  30. return false;
  31. });
  32. $('a.close, #fade').live('click', function() {
  33. $('#fade , .popup_block').fadeOut(function() {
  34. $('#fade, a.close').remove(); //fade them both out
  35. });
  36. return false;
  37. });
  38. });
  39. </script>
  40.  
  41. <title>{Title}</title>
  42. <!-- DEFAULT VARIABLES -->
  43. <meta name="color:Background" content="#eee"/>
  44. <meta name="color:Link" content="#000"/>
  45. <meta name="color:Text" content="#000"/>
  46. <meta name="color:Title" content="#000"/>
  47. <meta name="color:Scrollbar" content="#DDD"/>
  48. <meta name="image:Sidebar" content="http://k005.kiwi6.com/hotlink/o7rzfc1m7i/logan.gif"/>
  49. <meta name="text:Link 1 URL" content="">
  50. <meta name="text:Link 2 URL" content="">
  51. <meta name="text:Link 3 URL" content="">
  52. <meta name="text:Link 4 URL" content="">
  53. <meta name="text:Link 5 URL" content="">
  54. <meta name="image:Background" content=""/>
  55. <meta name="if: Custom Scrollbar" content="0"/>
  56. <meta name="if:Enable small cursor" content="0"/>
  57. <style type="text/css">
  58.  
  59. {block:ifcustomscrollbar}::-webkit-scrollbar-thumb:vertical {background-color: {color:Scrollbar}; height:auto; border: 0px solid #000; border-radius:6px;}
  60. ::-webkit-scrollbar-thumb:horizontal {background-color: #565758; height:10px !important;}
  61. ::-webkit-scrollbar {height:7px; width:8px ; background-color:{color:background};}
  62. .tumblrAutoPager_page_info, .tumblrAutoPager_page_separator {display:none;}{/block:ifcustomscrollbar}
  63.  
  64. a:hover {
  65. color:{color:Hover};
  66. text-decoration: none;
  67. font-style: none;
  68. -webkit-transition-duration: 0.8s;
  69. }
  70.  
  71. ul#drawers {width: 100px; list-style: none; margin: 0 auto; padding: 0px; border-top: 0px; color: #000;}
  72.  
  73. ul#drawers a {text-decoration: none; color: #000;}
  74.  
  75. ul#drawers li h4 {margin: 0; padding: 1px; text-transform: Camelcase; font-size: 10px; text-align: center; background-color: #363835; background: rgba(255, 255, 255, 0.0); -webkit-transition: background-color 0.5s ease-out; -moz-transition: background-color 0.5s ease-out;
  76. transition: background-color 0.5s ease-out;}
  77.  
  78. h4.small {display: table-cell; width: 100px; margin: 0px; height: 100%;}
  79.  
  80. li.drawer h4.open {background-color: #121213; border-top: 0px;}
  81.  
  82. li.drawer div {padding: 2px; margin: 0px; line-height: 12px; background-color: #363835; background: rgba(255, 255, 255, 0.0);}
  83.  
  84. li.drawer div li {list-style-type: disc;}
  85.  
  86. li.drawer div ul {-webkit-padding-start: 12px;}
  87.  
  88. .pops {
  89. font-size: 11px;
  90. line-height:13px;
  91. font-family: Arial;
  92. }
  93.  
  94. #fade { /*--Transparent background layer--*/
  95. display: none; /*--hidden by default--*/
  96. background: #000000;
  97. position: fixed; left: 0; top: 0;
  98. width: 100%; height: 100%;
  99. opacity: .80;
  100. z-index: 9999;
  101. }
  102. .popup_block{
  103. display: none; /*--hidden by default--*/
  104. background: #ffffff;
  105. padding: 10px;
  106. border: 1px solid #555;
  107. float: left;
  108. position: fixed;
  109. top: 50%; left: 50%;
  110. z-index: 99999;
  111. /*--CSS3 Box Shadows--*/
  112. -webkit-box-shadow: 0px 0px 20px #000;
  113. -moz-box-shadow: 0px 0px 20px #000;
  114. box-shadow: 0px 0px 20px #000;
  115. /*--CSS3 Rounded Corners--*/
  116. -webkit-border-radius: 10px;
  117. -moz-border-radius: 10px;
  118. border-radius: 10px;
  119. }
  120. img.btn_close {
  121. float: right;
  122. margin: -5px -5px 0px 0px;
  123. padding:none;
  124. }
  125. /*--Making IE6 Understand Fixed Positioning--*/
  126. *html #fade {
  127. position: absolute;
  128. }
  129. *html .popup_block {
  130. position: absolute;
  131. }
  132.  
  133.  
  134. </style>
  135.  
  136. <style type="text/css">
  137. body {
  138. margin:0px;
  139. background-color: {color:Background};
  140. background-image:url({image:Background});
  141. background-attachment: fixed;
  142. background-repeat: repeat;
  143. }
  144.  
  145. body, div, p, textarea, submit, input{ font-family: consolas; font-size: 10px; line-height:11px; letter-spacing:0px; color:{color:Text};}
  146.  
  147. p { margin:0px; margin-top:0px;}
  148.  
  149. a:link, a:active, a:visited{ color: {color:Link}; text-decoration: none;}
  150.  
  151. a:hover {color:{color:Hover}; text-decoration: none;}
  152.  
  153. div#center{
  154. margin:auto;
  155. position:relative;
  156. width:840px;
  157. background-color:;
  158. overflow:auto;
  159. overflow-y:hidden;}
  160.  
  161. div#content{
  162. float:right;
  163. width:400px;
  164. padding:2px;
  165. padding-top: 2px;
  166. margin-right: 170px;
  167. background:;
  168. }
  169.  
  170. #entry{
  171. background-color: #FFF;
  172. margin-top:3px;
  173. padding-top:2px;
  174. padding-right:1px;
  175. padding-bottom:1.75px;
  176. moz border-radius: 0px;
  177. border-radius: 0px;
  178. box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  179. -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  180. -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  181. }
  182.  
  183. .permalink {
  184. opacity:0;
  185. margin-left:90px;
  186. position:absolute;
  187. overflow:hidden;
  188. background-image:url(http://30.media.tumblr.com/tumblr_ls0w5txuft1r3vazto4_250.png);
  189. width:400px;
  190. height:20px;
  191. line-height: 20px;
  192. overflow:hidden;
  193. text-align:center;
  194. font-family:consolas;
  195. text-transform:uppercase;
  196.  
  197. -webkit-transition-timing-function: ease-out;
  198.  
  199. -webkit-transition-duration: .5s;
  200.  
  201. -moz-transition-timing-function: ease-out;
  202.  
  203. -moz-transition-duration: .5s;
  204.  
  205. }
  206.  
  207. #entry:hover .permalink {
  208. margin-left:2px;
  209. text-align:center;
  210. width:395px;
  211. background-image:url (http://27.media.tumblr.com/tumblr_ltqq73Kh5g1qhvdofo10_100.png);
  212. opacity:.8;
  213. overflow:visible;
  214. -webkit-transition-timing-function: ease-out;
  215.  
  216. -webkit-transition-duration: .7s;
  217.  
  218. -moz-transition-timing-function: ease-out;
  219.  
  220. -moz-transition-duration: .7s;
  221.  
  222. }
  223.  
  224. #entry.permalink a {
  225. color:#000;
  226. }
  227.  
  228. #entry.permalink a:hover {
  229. color:#eee;
  230. }
  231.  
  232. #askbox {
  233. background-color:#eee;
  234. padding-left: 5px;
  235. line-height:5px;
  236. color:#999;
  237. text-align:center;
  238. margin-top:3px;
  239. font-family: consolas;
  240. font-size:8px;
  241. text-transform:uppercase;
  242. height:15px;
  243. }
  244.  
  245. #sidebar{
  246. position:fixed !important;
  247. width: 180px;
  248. height:120px;
  249. margin: 215px 0px 0px 30px;
  250. padding: 1px; font-size: 10px;
  251. line-height:8px;
  252. letter-spacing:0px;
  253. margin-bottom: 5px;
  254. background-color: #FFF;
  255. box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  256. -webkit-box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  257. -moz-box-shadow: 0px 5px 20px rgba(0,0,0,0.35);
  258. }
  259.  
  260. #linkside {
  261. Position:fixed;
  262. width:180px;
  263. height:auto;
  264. margin-top:-340px;
  265. background-color:transparent
  266. }
  267.  
  268. #linkside:hover {
  269. opacity:.5;
  270. background-color: transparent;
  271. color:#fff;
  272. padding-top: 300px;
  273. letter-spacing:3px;
  274. -webkit-transition: all 0.7s ease-out;
  275. -moz-transition: all 0.7s ease-out;
  276. -o-transition: all 0.7s ease-out;
  277. border-radius: 0px 0px 0px 0px;
  278. }
  279.  
  280. #links {
  281. background-color: #eee;
  282. color:#aaa;
  283. text-transform:uppercase;
  284. line-height:50px;
  285. text-align:center;
  286. font-family:consolas;
  287. padding:6px;
  288. border-radius: 0px;
  289. font-family:2px;
  290. margin-left:0px;
  291. -webkit-transition: all 0.3s ease-out;
  292. -moz-transition: all 0.3s ease-out;
  293. -o-transition: all 0.3s ease-out;
  294. }
  295.  
  296. #link1 {
  297. color:#000;
  298. background-color:#eee;
  299. width:35px;
  300. position:absolute;
  301. height:25px;
  302. margin-top:-293.50px;
  303. margin-left:-125px;
  304. z-index:999;
  305. opacity:0.9;
  306. padding:5px
  307. font-size:8px;
  308. font-family:consolas;
  309. text-align:center;
  310. text-transform:uppercase;
  311. -webkit-transition: all 0.7s ease-out;
  312. -moz-transition: all 0.7s ease-out;
  313. -o-transition: all 0.7s ease-out;
  314. border-radius:25px 25px 25x 25px;
  315. }
  316.  
  317. #link2 {
  318. color:#000;
  319. background-color:#eee;
  320. width:35px;
  321. position:absolute;
  322. height:25px;
  323. margin-top:-263.50px;
  324. margin-left:-125px;
  325. z-index:999;
  326. opacity:0.9;
  327. padding:5px
  328. font-size:8px;
  329. font-family:consolas;
  330. text-align:center;
  331. text-transform:uppercase;
  332. -webkit-transition: all 0.7s ease-out;
  333. -moz-transition: all 0.7s ease-out;
  334. -o-transition: all 0.7s ease-out;
  335. border-radius:25px 25px 25x 25px;
  336. }
  337.  
  338. #link3 {
  339. color:#000;
  340. background-color:#eee;
  341. width:35px;
  342. position:absolute;
  343. height:25px;
  344. margin-top:-233.50px;
  345. margin-left:-125px;
  346. z-index:999;
  347. opacity:0.9;
  348. padding:5px
  349. font-size:8px;
  350. font-family:consolas;
  351. text-align:center;
  352. text-transform:uppercase;
  353. -webkit-transition: all 0.7s ease-out;
  354. -moz-transition: all 0.7s ease-out;
  355. -o-transition: all 0.7s ease-out;
  356. border-radius:25px 25px 25x 25px;
  357. }
  358.  
  359. #link4 {
  360. color:#000;
  361. background-color:#eee;
  362. width:35px;
  363. position:absolute;
  364. height:25px;
  365. margin-top:-203.50px;
  366. margin-left:-125px;
  367. z-index:999;
  368. opacity:0.9;
  369. padding:5px
  370. font-size:8px;
  371. font-family:consolas;
  372. text-align:center;
  373. text-transform:uppercase;
  374. -webkit-transition: all 0.7s ease-out;
  375. -moz-transition: all 0.7s ease-out;
  376. -o-transition: all 0.7s ease-out;
  377. border-radius:25px 25px 25x 25px;
  378. }
  379.  
  380. #link5 {
  381. color:#000;
  382. background-color:#eee;
  383. width:35px;
  384. position:absolute;
  385. height:25px;
  386. margin-top:-173.50px;
  387. margin-left:-125px;
  388. z-index:999;
  389. opacity:0.9;
  390. padding:5px
  391. font-size:8px;
  392. font-family:consolas;
  393. text-align:center;
  394. text-transform:uppercase;
  395. -webkit-transition: all 0.7s ease-out;
  396. -moz-transition: all 0.7s ease-out;
  397. -o-transition: all 0.7s ease-out;
  398. border-radius:25px 25px 25x 25px;
  399. }
  400.  
  401. #link1:hover, #link2:hover, #link3:hover, #link4:hover, #link5:hover {
  402. opacity:.5;
  403. background-color: transparent;
  404. color:#fff;
  405. padding-right: 192px;
  406. letter-spacing:3px;
  407. -webkit-transition: all 0.7s ease-out;
  408. -moz-transition: all 0.7s ease-out;
  409. -o-transition: all 0.7s ease-out;
  410. border-radius: 0px 0px 0px 0px;
  411. }
  412.  
  413. #link1 a, #link2 a, #link3 a, #link4 a, #link5 a {
  414. color:#fff;
  415. }
  416.  
  417. #descr {
  418. opacity:0.4;
  419. Position:fixed;
  420. width:180px;
  421. height:60;
  422. margin-top:6px;
  423. background-image:url(http://30.media.tumblr.com/tumblr_ls0w5txuft1r3vazto4_250.png);
  424. }
  425.  
  426. #descr:hover {
  427. opacity:0.9;
  428. background-image:url(http://30.media.tumblr.com/tumblr_ls0w5txuft1r3vazto4_250.png);
  429. -webkit-transition: all 0.7s ease-out;
  430. -moz-transition: all 0.7s ease-out;
  431. -o-transition: all 0.7s ease-out;
  432. }
  433.  
  434.  
  435. #postnotes{
  436. text-align: justify;
  437. }
  438.  
  439. #postnotes blockquote{
  440. border: 0px;
  441. }
  442.  
  443. .title{
  444. font-family: georgia;
  445. font-size: 10px;
  446. line-height: 12px;
  447. color: {color:Title};
  448. letter-spacing: 1px;
  449. font-weight: normal;
  450. padding:0px 0px 0px 0px;
  451. }
  452.  
  453. .title2{
  454. font-family: georgia;
  455. font-size: 10px;
  456. line-height: 12px;
  457. color: {color:Title};
  458. letter-spacing: 1px;
  459. font-weight: normal;
  460. padding:0px 0px 0px 0px;
  461. }
  462.  
  463. blockquote{
  464. padding:0px 0px 2px 5px;
  465. margin:0px 0px 2px 1px;
  466. border-left: 1px dotted #555555;
  467. }
  468.  
  469. blockquote p, ul{
  470. margin:0px;
  471. padding:0px;
  472. }
  473.  
  474. a img{
  475. border: 0px;
  476. }
  477.  
  478. ul, ol, li{
  479. list-style:none;
  480. margin:0px;
  481. padding:0px;
  482. }
  483.  
  484. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  485. .user_7 .label, .user_8 .label, .user_9 .label {color:#555555;}
  486.  
  487. .notes img{
  488. width:10px;
  489. position:relative;
  490. top:3px;
  491. }
  492.  
  493.  
  494.  
  495. small{font-size: 90%;}
  496.  
  497. </style>
  498.  
  499. <link rel="shortcut icon" href="{Favicon}">
  500. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  501. <meta name="viewport" content="width=820" />
  502.  
  503. </head>
  504.  
  505. <body>
  506.  
  507. <center>
  508.  
  509.  
  510. <div id="cage">
  511.  
  512. <div id="center">
  513.  
  514. <div id="sidebar">
  515. <a href="/"><img src="{image:sidebar}" width=180px></a>
  516.  
  517. <div id="linkside">
  518. <a href="/" title="Home" id="links" style="padding-bottom: 13px;">Home</a>
  519. <a href="/ask" title="Message Me!" id="links" style="padding-bottom: 13px;">Ask</a>
  520. <a href="#?w=150" rel="01" class="poplight" title="tweaked by st-uckinreverse" id="links" style="padding-bottom: 13px;">credits</a>
  521. </div>
  522.  
  523. <div id="linkies">
  524. <a href="{text:Link 1 URL}" target="_blank" id="link1"><div style="margin-top:9px; margin-left:4px; color:#000;">#1</div></a>
  525. <a href="{text:Link 2 URL}" target="_blank" id="link2"><div style="margin-top:9px; margin-left:4px; color:#000;">#2</div></a>
  526. <a href="{text:Link 3 URL}" target="_blank" id="link3"><div style="margin-top:9px; margin-left:4px; color:#000;">#3</div></a>
  527. <a href="{text:Link 4 URL}" target="_blank" id="link4"><div style="margin-top:9px; margin-left:4px; color:#000;">#4</div></a>
  528. <a href="{text:Link 5 URL}" target="_blank" id="link5"><div style="margin-top:9px; margin-left:4px; color:#000;">#5</div></a>
  529. </div>
  530.  
  531. <div id="descr" ><div style="margin-top:7px;">
  532. {description}</div>
  533. <br><br><div align="right">
  534. <br>
  535. {block:NextPage}<a href="{NextPage}"><center><font size="2">&rarr;</font></center></a>{/block:NextPage}
  536. {block:PreviousPage} <a href="{PreviousPage}"><center><font size="2">&larr;</font></center></a>{/block:PreviousPage}
  537. </div>
  538.  
  539.  
  540.  
  541. </div>
  542. </div>
  543.  
  544.  
  545.  
  546. <div id="content"> {block:Posts}<table width="1000" border="0" align="center" cellspacing="0px" cellpadding="0px">
  547. <tr> <div id="entry">
  548.  
  549. {block:Text}
  550. {block:Title}<span class="title">{Title}</span>{/block:Title}
  551. <span class="entrytext">{Body}</span><div id="askbox"><div style="float:left; font-size:9px; line-height:16px; font-family:consolas; text-transform: uppercase; padding-right:5px; letter-spacing: 1px;"><a href="{Permalink}" title="{NoteCountWithLabel}">{NoteCount}</a> - <a href="{ReblogURL}" title="Reblog" target="_blank">Reblog</a></div>{/block:Text}
  552.  
  553. {block:Link}
  554. <a href="{URL}" class="title">{Name}</a>
  555. {block:Description}{Description}{/block:Description}<div id="askbox"><div style="float:left; font-size:9px; line-height:16px; font-family:consolas; text-transform: uppercase; padding-right:5px; letter-spacing: 1px;"><a href="{Permalink}" title="{NoteCountWithLabel}">{NoteCount}</a> - <a href="{ReblogURL}" title="Reblog" target="_blank">Reblog</a></div>
  556. {block:Link}
  557.  
  558. {block:Photo}<center>
  559. {block:IndexPage}
  560. <div class="permalink">
  561. <a href="{permalink}">{NoteCountWithLabel}</a> &middot; <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
  562. {/block:IndexPage}
  563. {LinkOpenTag}<a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" width=395px></a>{LinkCloseTag}</center>
  564. {/block:Photo}
  565.  
  566. {block:Quote}
  567. {Quote}</span>
  568. {block:Source}<strong>{Source}</strong>{/block:Source}<div id="askbox"><div style="float:left; font-size:9px; line-height:16px; font-family:consolas; text-transform: uppercase; padding-right:5px; letter-spacing: 1px;"><a href="{Permalink}" title="{NoteCountWithLabel}">{NoteCount}</a> - <a href="{ReblogURL}" title="Reblog" target="_blank">Reblog</a></div>
  569. {/block:Quote}
  570.  
  571. {block:Photoset}<center>{Photoset-400}</center>
  572. <span class="permalink"><a href="{permalink}">+</a></span>
  573. {/block:Photoset}
  574.  
  575. {block:Chat}
  576. {block:Title}<span class="title">{Title}</span>{/block:Title}
  577. <ul class="chat">
  578. {block:Lines}
  579. <li class="user_{UserNumber}">
  580. {block:Label}
  581. <span class="label">{Label}</span>
  582. {/block:Label}
  583.  
  584. {Line}
  585. </li>
  586. {/block:Lines}<div id="askbox"><div style="float:left; font-size:9px; line-height:16px; font-family:consolas; text-transform: uppercase; padding-right:5px; letter-spacing: 1px;"><a href="{Permalink}" title="{NoteCountWithLabel}">{NoteCount}</a> - <a href="{ReblogURL}" title="Reblog" target="_blank">Reblog</a></div>
  587. {/block:Chat}
  588.  
  589.  
  590. {block:Audio}
  591. <center><div style="width:395px; height:28px;"><div id="askbox"><div style="float:left">{AudioPlayerWhite}</div><div style="margin-top:10px; float:right;">
  592. {FormattedPlayCount} plays {block:ExternalAudio}{/block:ExternalAudio}</div></div></center><br><div style="float:left; font-size:9px; line-height:16px; font-family:consolas; text-transform: uppercase; padding-right:5px; letter-spacing: 1px;"><a href="{Permalink}" title="{NoteCountWithLabel}">{NoteCount}</a> - <a href="{ReblogURL}" title="Reblog" target="_blank">Reblog</a></div>
  593. {/block:Audio}
  594.  
  595. {block:Video}<center>
  596. <div class="video">{Video-400}</div></center><div style="float:left; font-size:9px; line-height:16px; font-family:consolas; text-transform: uppercase; padding-right:5px; letter-spacing: 1px;"><a href="{Permalink}" title="{NoteCountWithLabel}">{NoteCount}</a></div></div>
  597. {block:Video}
  598.  
  599. {block:Answer}
  600. <div style="margin-top: 1px; min-height:30px; padding: 3px; background-color: #eee; font-family: tinytots; font-size: 12px;">
  601. <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-right:3px; box-shadow: 0px 0px 0px 2px #fff; border-radius: 30px;"/>
  602. {Asker} asked: {Question}<br></div>
  603. <Br>
  604. <div style="font-family: consolas; font-size: 8px;">
  605. {Answer}<br><br>
  606. </div>
  607. <div id="askbox"><div style="float:left; font-size:9px; line-height:16px; font-family:consolas; text-transform: uppercase; padding-right:5px; letter-spacing: 1px;"><a href="{Permalink}" title="{NoteCountWithLabel}">{NoteCount}</a></div>
  608. <br>
  609. {/block:Answer}
  610.  
  611. {block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}{/block:PermalinkPage}
  612.  
  613. {block:PostNotes}{PostNotes}
  614. {/block:PostNotes}
  615. </div>
  616.  
  617. {/block:Posts}
  618. </div></div>
  619.  
  620. {Block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/Block:ifinfinitescrolling}
  621.  
  622. {block:ifEnableSmallCursor}<style type="text/css">body, a, a:hover {cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), progress;}</style>{/block:ifEnableSmallCursor}
  623.  
  624. </div>
  625. </center>
  626.  
  627. <div id="01" class="popup_block">
  628. <div class="pops">
  629.  
  630. Base codes by: -shrooms and bitzers<br>
  631. Extremely edited by: st-uckinreverse
  632.  
  633. </div>
  634. </div></div>
  635.  
  636. </div></div></div></div></div></div></div></div></div></div>
  637.  
  638. </body>
  639. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement