Advertisement
hor4ny

"Let It Snow" theme - TwistedMiracles

Nov 25th, 2012
919
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.53 KB | None | 0 0
  1. <!--
  2. "Let It Snow" theme by TWISTEDMIRACLES.
  3. Keep credit or put it in your FAQ. Please and thank you.
  4. IF YOU USE THIS THEME AS A BASECODE, ask BEFORE posting! If you use the snowflake, please let me know.
  5. -->
  6. <html lang="en">
  7. <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8. <html xmlns="http://www.w3.org/1999/xhtml">
  9. <head>
  10.  
  11. <script type="text/javascript"
  12. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  13.  
  14.  
  15. {block:ifshowsnow}
  16. <script type="text/javascript">
  17. // <![CDATA[
  18. var speed=20; // lower number for faster
  19. var flakes=50; // number of flakes
  20. var colour="#fff"; // colour of flakes
  21. var slush=0; // set to '0' for no slush or otherwise set to height at which slush melts
  22.  
  23. /***************************\
  24. * Let It Snow Effect *
  25. *(c)2004-12 mf2fm web-design*
  26. * http://www.mf2fm.com/rv *
  27. * DON'T EDIT BELOW THIS BOX *
  28. \***************************/
  29. var flks=new Array();
  30. var flkx=new Array();
  31. var flky=new Array();
  32. var fldy=new Array();
  33. var slss=new Array();
  34. var slsh=new Array();
  35. var swide, shigh, boddie;
  36.  
  37. function addLoadEvent(funky) {
  38. var oldonload=window.onload;
  39. if (typeof(oldonload)!='function') window.onload=funky;
  40. else window.onload=function() {
  41. if (oldonload) oldonload();
  42. funky();
  43. }
  44. }
  45.  
  46. addLoadEvent(baby_its_cold_outside);
  47.  
  48. function baby_its_cold_outside() { if (document.getElementById) {
  49. var i;
  50. boddie=document.createElement("div");
  51. boddie.style.position="fixed";
  52. boddie.style.top="0px";
  53. boddie.style.left="0px";
  54. boddie.style.overflow="visible";
  55. boddie.style.width="1px";
  56. boddie.style.height="1px";
  57. boddie.style.backgroundColor="transparent";
  58. document.body.appendChild(boddie);
  59. set_width();
  60. for (var i=0; i<flakes; i++) {
  61. flks[i]=createDiv(3, 3, colour);
  62. flkx[i]=3*Math.floor(Math.random()*swide/3);
  63. flky[i]=Math.floor(Math.random()*shigh);
  64. fldy[i]=2+Math.floor(Math.random()*4);
  65. flks[i].style.left=flkx[i]+"px";
  66. flks[i].style.top=flky[i]+"px";
  67. boddie.appendChild(flks[i]);
  68. }
  69. setInterval("let_it_snow()", speed);
  70. }}
  71.  
  72. function createDiv(height, width, colour) {
  73. var div=document.createElement("div");
  74. div.style.position="absolute";
  75. div.style.height=height+"px";
  76. div.style.width=width+"px";
  77. div.style.overflow="hidden";
  78. div.style.backgroundColor=colour;
  79. return (div);
  80. }
  81.  
  82. window.onresize=set_width;
  83. function set_width() {
  84. var sw_min=999999;
  85. var sh_min=999999;
  86. if (document.documentElement && document.documentElement.clientWidth) {
  87. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  88. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  89. }
  90. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  91. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  92. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  93. }
  94. if (document.body.clientWidth) {
  95. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  96. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  97. }
  98. if (sw_min==999999 || sh_min==999999) {
  99. sw_min=800;
  100. sh_min=600;
  101. }
  102. swide=sw_min-3;
  103. shigh=sh_min;
  104. if (slush) {
  105. if (swide/3>slss.length) for (i=slss.length; i<swide/3; i++) {
  106. if (!slsh[i]) slsh[i]=3;
  107. slss[i]=createDiv(slsh[i], 3, colour);
  108. boddie.appendChild(slss[i]);
  109. }
  110. for (i=0; i<swide/3; i++) {
  111. slss[i].style.height=slsh[i]+"px";
  112. slss[i].style.top=shigh-slsh[i]+"px";
  113. slss[i].style.left=3*i+"px";
  114. }
  115. if (i<slss.length && slss[i].style.left!="-3px") for (; i<slss.length; i++) slss[i].style.left="-3px";
  116. }
  117. }
  118.  
  119. function let_it_snow(c) {
  120. var i, x, o=0, z=0;
  121. for (i=0; i<flakes; i++) {
  122. flky[i]+=fldy[i];
  123. x=Math.floor(flkx[i]/3);
  124. if (slush) {
  125. o+=slsh[x];
  126. if (flky[i]>=shigh-slsh[x]) {
  127. if (x<swide && slsh[x]>slsh[x+1]+3) x++;
  128. else if (x>0 && slsh[x]>slsh[x-1]+3) x--;
  129. slss[x].style.top=shigh-(slsh[x]+=3)+"px";
  130. slss[x].style.height=slsh[x]+"px";
  131. flky[i]=shigh;
  132. }
  133. }
  134. if (flky[i]>=shigh || flkx[i]>swide) {
  135. flky[i]=0;
  136. fldy[i]=2+Math.floor(Math.random()*4);
  137. flkx[i]=3*Math.floor(Math.random()*swide/3);
  138. flks[i].style.left=flkx[i]+"px";
  139. z++;
  140. }
  141. flks[i].style.top=flky[i]+"px";
  142. }
  143. if (o>flakes*slush) for (i=0; i<slsh.length; i++) if (slsh[i]>3) slsh[i]--;
  144. if (z || o>flakes*slush) set_width();
  145. }
  146. // ]]>
  147. </script>
  148. {/block:ifshowsnow}
  149.  
  150.  
  151. <script type="text/javascript">
  152. <!--
  153.  
  154. // Disable Right Click Script
  155.  
  156. function IE(e)
  157. {
  158. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  159. {
  160. return false;
  161. }
  162. }
  163. function NS(e)
  164. {
  165. if (document.layers || (document.getElementById && !document.all))
  166. {
  167. if (e.which == "2" || e.which == "3")
  168. {
  169. return false;
  170. }
  171. }
  172. }
  173. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  174.  
  175. //-->
  176. </script>
  177.  
  178.  
  179. <script type="text/javascript"
  180. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  181.  
  182. <!-- DEFAULT VARIABLES -->
  183. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  184. <meta name="color:background" content="#fff"/>
  185. <meta name="color:link" content="#777"/>
  186. <meta name="color:text" content="#777"/>
  187. <meta name="color:title" content="#333"/>
  188. <meta name="color:hover" content="#fff"/>
  189. <meta name="color:sidebar border" content="#ddd"/>
  190. <meta name="color:post borders" content="#ddd"/>
  191. <meta name="color:blogtitle" content="#fff0" />
  192. <meta name="color:blogtitle shadow" content="#aaa" />
  193. <meta name="color:scrollbar" content="#ddd" />
  194. <meta name="image:sidebar" content="1"/>
  195. <meta name="image:background" content="1"/>
  196. <meta name="text:blogtitle" content=""/>
  197. <meta name="text:link one" content="" />
  198. <meta name="text:link one title" content="" />
  199. <meta name="text:link two" content="" />
  200. <meta name="text:link two title" content="" />
  201. <meta name="text:link three" content="" />
  202. <meta name="text:link three title" content="" />
  203. <meta name="text:link four" content="" />
  204. <meta name="text:link four title" content="" />
  205. <meta name="text:link five" content="" />
  206. <meta name="text:link five title" content="" />
  207. <meta name="text:link separation" content="&middot;" />
  208. <meta name="if:show blogtitle" content="1" />
  209. <meta name="if:show snow" content="1" />
  210.  
  211. <style type="text/css">
  212.  
  213. ::-webkit-scrollbar {width: 4px; height: 4px; border:1px solid #ddd; background-color:#fff;}
  214. ::-webkit-scrollbar-thumb { border-left:0px solid #ddd; background: {color:scrollbar};}
  215.  
  216. iframe#tumblr_controls {right:2px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.8;-webkit-transition: all 0.8s ease-out;-moz-
  217.  
  218. transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  219.  
  220. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity:1;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all
  221.  
  222. 0.4s ease-out;}
  223.  
  224. p {
  225. margin:0px;
  226. margin-top:0px;
  227. }
  228.  
  229.  
  230. ::selection {
  231. background: #ffffff;
  232. color: #fff;
  233. }
  234.  
  235. ::-moz-selection {
  236. background: #ffffff;
  237. color: #ffffff;
  238. }
  239.  
  240.  
  241. askname{
  242. font-family:jenna;
  243. font-size:13px;
  244. z-index:99;
  245. }
  246.  
  247. body {
  248. padding: 0px;
  249. margin: 0px;
  250. color:{color:text};
  251. font-family: dixel;
  252. line-height:7px;
  253. font-size:8px;
  254. background-color: {color:Background};
  255. background-image:url({image:Background});
  256. background-attachment: fixed;
  257. background-repeat: repeat;
  258. cursor: url(http://i.imgur.com/2qleX.jpg), auto;
  259. }
  260.  
  261.  
  262. a:link, a:active, a:visited{
  263. text-decoration: none;
  264. -webkit-transition: color 0.3s ease-out;
  265. -moz-transition: color 0.3s ease-out;
  266. transition: color 0.3s ease-out;
  267. color:{color:link};
  268. cursor: url(http://i.imgur.com/2qleX.jpg), auto;
  269. }
  270.  
  271. a:hover {
  272. text-decoration: none;
  273. font-style:;
  274. text-shadow:0px 0px 2px #000;
  275. color: {color:Hover};
  276. cursor: url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), auto;
  277. }
  278.  
  279. div#center{
  280. margin:auto;
  281. position:relative;
  282. width:1000px;
  283. background-color:;
  284. overflow:auto;
  285. overflow-y:hidden;
  286. }
  287.  
  288. .entry {
  289. float:left;
  290. display: block;
  291. margin:4px;
  292. line-height:7px;
  293. padding:6px;
  294. border:1px solid {color:post borders};
  295. overflow:hidden;
  296. width:205px;
  297. border-radius:5px;
  298. {block:iffadedposts}
  299. opacity:0.8;
  300. {/block:iffadedposts}
  301. z-index:9;
  302. {block:PermalinkPage}
  303. width:428px;
  304. text-align:left;
  305. line-height:10px;
  306. {/block:PermalinkPage}
  307. background:white;
  308. transition: all 0.5s ease-out;
  309. -o-transition-transition: all 0.5s ease-out;
  310. -webkit-transition: all 0.5s ease-out;
  311. -moz-transition: all 0.5s ease-out;
  312. }
  313.  
  314. .entry:hover{
  315. opacity:1;
  316. }
  317.  
  318.  
  319. .entry .perma a{
  320. color:#444;}
  321.  
  322. .entry .perma a:hover {
  323. text-decoration: none;
  324. font-style:;
  325. text-shadow:0px 0px 2px #000;
  326. color: {color:Hover};
  327. }
  328.  
  329. .entry .perma{
  330. width:38px;
  331. height:30px;
  332. position: absolute;
  333. line-height: 33px;
  334. overflow:hidden;
  335. font-family:dixel;
  336. text-align:left;
  337. padding-left:4px;
  338. font-size:8px;
  339. left:-50px;
  340. bottom:5px;
  341. border-right:1px solid #f2f2f2;
  342. border-top:1px solid #f2f2f2;
  343. background:white;
  344. letter-spacing: 0px;
  345. opacity: 0.0;
  346. -webkit-transition: all .7s ease;
  347. -moz-transition: all .7s ease;
  348. -o-transition: all .7s ease;
  349. transition: all .7s ease;
  350. border-top-right-radius:90px;
  351. -moz-border-top-right-radius:90px;
  352. -webkit-border-top-right-radius:90px;
  353.  
  354. }
  355.  
  356. .entry:hover .perma{
  357. margin-left: 0px;
  358. left:5px;
  359. overflow:visible;
  360. opacity:0.85;
  361. }
  362.  
  363. .entry .perma2 a{
  364. color:#444;}
  365.  
  366. .entry .perma2 a:hover {
  367. text-decoration: none;
  368. font-style:;
  369. text-shadow:0px 0px 2px #000;
  370. color: {color:Hover};
  371. }
  372.  
  373. .entry .perma2{
  374. width:auto;
  375. height:30px;
  376. position: absolute;
  377. line-height: 28px;
  378. overflow:hidden;
  379. font-family:dixel;
  380. text-align:center;
  381. padding-left:20px;
  382. padding-right:10px;
  383. font-size:8px;
  384. right:-50px;
  385. top:5px;
  386. border-left:1px solid #f2f2f2;
  387. border-bottom:1px solid #f2f2f2;
  388. background:white;
  389. letter-spacing: 0px;
  390. opacity: 0.0;
  391. -webkit-transition: all .7s ease;
  392. -moz-transition: all .7s ease;
  393. -o-transition: all .7s ease;
  394. transition: all .7s ease;
  395. border-bottom-left-radius:90px;
  396. -moz-border-bottom-left-radius:90px;
  397. -webkit-border-bottom-left-radius:90px;}
  398.  
  399. .entry:hover .perma2{
  400. margin-left: 0px;
  401. right:5px;
  402. overflow:visible;
  403. opacity:0.85;
  404. -webkit-transition: all .7s ease;
  405. -moz-transition: all .7s ease;
  406. -o-transition: all .7s ease;
  407. transition: all .7s ease;
  408. }
  409.  
  410. #posts {
  411. width:500px;
  412. margin-top:1px;
  413. z-index:99;
  414. margin-left:379px;
  415. right:auto;
  416. background:transparent;
  417. margin-right:auto;
  418. position:relative;
  419. overflow-y: hidden;
  420. }
  421.  
  422.  
  423.  
  424. #flake{
  425. opacity:0.8;
  426. position:fixed;
  427. margin-left:50px;
  428. margin-top:70px;
  429. -moz-transform: rotate(40deg); /* FF3.5+ */
  430. -o-transform: rotate(40deg); /* Opera 10.5 */
  431. -webkit-transform: rotate(40deg);
  432. }
  433.  
  434. #flake img{
  435. width:300px;
  436. }
  437.  
  438. #sidebar{
  439. position:fixed !important;
  440. width:160px;
  441. background-image:url('');
  442. background:white;
  443. height:160px;
  444. padding:5px;
  445. margin-top:160px;
  446. margin-left:112px;
  447. text-align:center;
  448. line-height:8px;
  449. z-index:999;
  450. border-radius:9999999px;
  451. border:1px solid {color:sidebar border};
  452. transition: all 0.7s ease-out;
  453. -o-transition-transition: all 0.7s ease-out;
  454. -webkit-transition: all 0.7s ease-out;
  455. -moz-transition: all 0.7s ease-out;
  456. }
  457.  
  458.  
  459. #sidebar:hover{
  460. opacity:1;
  461. -moz-transform: rotate(-180deg); /* FF3.5+ */
  462. -o-transform: rotate(-180deg); /* Opera 10.5 */
  463. -webkit-transform: rotate(-180deg);
  464.  
  465. }
  466.  
  467. #sidebarpic{
  468. opacity:1;
  469. border-radius:9999999px;
  470. width:160px;
  471. transition: all 0.7s ease-out;
  472. -o-transition-transition: all 0.7s ease-out;
  473. -webkit-transition: all 0.7s ease-out;
  474. -moz-transition: all 0.7s ease-out;
  475. }
  476.  
  477. #sidebarpic img{
  478. width:160px;
  479. height:160px;
  480. border-radius:9999999px;
  481. }
  482.  
  483. #sidebar:hover #sidebarpic{
  484. opacity:0.1;
  485. }
  486.  
  487. #sidebarnav{
  488. opacity:0;
  489. z-index:1;
  490. position:fixed;
  491. width:160px;
  492. height:100px;
  493. padding-top:60px;
  494. line-height:10px;
  495. }
  496.  
  497. #sidebar:hover #sidebarnav{
  498. opacity:1;
  499. -moz-transform: rotate(180deg); /* FF3.5+ */
  500. -o-transform: rotate(180deg); /* Opera 10.5 */
  501. -webkit-transform: rotate(180deg);
  502.  
  503. }
  504. @font-face {
  505. font-family: "jenna";
  506. src: url('http://static.tumblr.com/jdjsstr/W6qm7fotz/simpleronde-regular_1_.ttf');
  507. }
  508. .title{
  509. font-family:swenson;
  510. font-size: 19px;
  511. line-height: 19px;
  512. color:{color:Title};
  513. letter-spacing: 0px;
  514. word-spacing:2px;
  515. font-weight: normal;
  516. padding:0px 0px 0px 0px;
  517. }
  518.  
  519.  
  520. @font-face { font-family: "dixel"; src: url('http://static.tumblr.com/jdjsstr/8ovm78cbb/pf_arma_five_1_.ttf'); }
  521.  
  522.  
  523. @font-face { font-family: "swenson"; src: url('http://static.tumblr.com/q54tzar/PHem21foh/swenson_1_.ttf'); }
  524.  
  525. #blogtitle{
  526. position:fixed;
  527. width:370px;
  528. text-align:center;
  529. font-size:45px;
  530. line-height:45px;
  531. font-family:swenson;
  532. margin-top:420px;
  533. margin-left:20px;
  534. font-weight:bold;
  535. word-spacing:3px;
  536. color:{color:blogtitle};
  537. text-shadow:2px 2px 1px {color:blogtitle shadow};
  538. }
  539.  
  540.  
  541.  
  542. .permalink{
  543. text-transform: normal;
  544. display: block;
  545. text-align: right;
  546. text-decoration: none;
  547. }
  548.  
  549. #infscr-loading{
  550. bottom: -70px;
  551. position: absolute;
  552. left: 50%;
  553. margin-left:-8px;
  554. width:16px;
  555. height:11px;
  556. overflow:hidden;
  557. margin-bottom: 50px;
  558. }
  559.  
  560. #postnotes{
  561. text-align: justify;}
  562.  
  563. #postnotes blockquote{
  564. border: 0px;}
  565.  
  566. blockquote{
  567. padding:0px 0px 2px 5px;
  568. margin:0px 0px 2px 10px;
  569. border-left: 1px dotted #555555;
  570. }
  571.  
  572. blockquote p, ul{
  573. margin:0px;
  574. padding:0px;
  575. }
  576.  
  577. a img{border: 0px;}
  578.  
  579.  
  580. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  581.  
  582. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  583. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
  584.  
  585. .notes img{width:10px; position:relative; top:3px;}
  586. <--ses-->
  587. small{font-size: 90%;}
  588.  
  589. {CustomCSS}
  590.  
  591. </style>
  592.  
  593. {block:IndexPage}
  594. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  595. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  596.  
  597. <script type="text/javascript">
  598. $(window).load(function(){
  599. var $wall = $('#posts');
  600. $wall.imagesLoaded(function(){
  601. $wall.masonry({
  602. itemSelector: '.entry, .entry_photo',
  603. isAnimated : false
  604. });
  605. });
  606.  
  607. $wall.infinitescroll({
  608. navSelector : '#pagination',
  609. nextSelector : '#pagination a',
  610. itemSelector : '.entry, .entry_photo',
  611. bufferPx : 2000,
  612. debug : false,
  613. errorCallback: function() {
  614. $('#infscr-loading').fadeOut('normal');
  615. }},
  616. function( newElements ) {
  617. var $newElems = $( newElements );
  618. $newElems.hide();
  619. $newElems.imagesLoaded(function(){
  620. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  621. });
  622. }); $('#posts').show(500);
  623. });
  624. </script>
  625.  
  626.  
  627. {/block:IndexPage}
  628.  
  629.  
  630. <title>{title}</title>
  631.  
  632. <link rel="shortcut icon" href="{Favicon}" />
  633. <meta name="viewport" content="width=820" />
  634. </head>
  635.  
  636. <body>
  637.  
  638. <div class="wrapper">
  639. <div class="header">
  640. </div>
  641.  
  642. <div id="cage">
  643. <div id="center"><div id="flake"><a href="/"><img src="http://i1301.photobucket.com/albums/ag102/nancy_miserywishes/snowflake.png"></a></div>
  644. {block:ifshowblogtitle}<div id="blogtitle">{title}</div>{block:ifshowblogtitle}
  645.  
  646. <div id="sidebar">
  647. <center><div id="sidebarnav"><div style="margin-top:1px;border-bottom:1px dotted #ccc;padding-bottom:2px;margin-bottom:2px;">{description}</div><a href="{text:link one}">{text:link one title}</a> {text:link separation} <a href="{text:link two}">{text:link two title}</a> {text:link separation} <a href="{text:link three}">{text:link three title}</a>{block:iflinkfourtitle} {text:link separation} <a href="{text:link four}">{text:link four title}</a>{/block:iflinkfourtitle}{block:iflinkfivetitle} {text:link separation} <a href="{text:link five}">{text:link five title}</a>{/block:iflinkfivetitle}</div>
  648. <div id="sidebarpic"><a href="/"><img src="{image:sidebar}"></a></div>
  649. </div>
  650. </center>
  651.  
  652.  
  653. <div class="left">
  654. <div id="posts">
  655. {block:Posts}
  656. <div class="entry">
  657.  
  658. {block:Answer}
  659. <div style="margin-top:2px; margin-bottom:0px; overflow:auto;height:40px; padding: 4px; background-color:#fff; border:1px solid #ddd;border-radius:4px;">
  660. <img src="{AskerPortraitURL-40}" width="40" align="left" style="margin-right:3.5px;"/><askname>{asker}</askname>: {Question}</div>
  661. <div style="margin-top:2px; margin-bottom:4px; background: transparent;">{Answer}</div>
  662. <div class="permalink"> <a href="{permalink}">{notecountwithlabel}</a> </div>
  663. {/block:Answer}
  664.  
  665. {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span><p align=right><span class="permalink"><a
  666.  
  667. href="{Permalink}"><a href="{Permalink}"><a href="{Permalink}">{notecountwithlabel}</a></a><br>{/block:HasTags}</span></align>
  668. {/block:Text}
  669.  
  670. {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description} <p align=right><span
  671.  
  672. class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"></span></align>{block:Link}
  673.  
  674. {block:Photo}
  675. {block:IndexPage}
  676. <center>
  677. <div class="perma2">
  678. <a href="{Permalink}"> {notecount}</a> </div>
  679. <div class="perma">
  680. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  681. <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  682. {/block:IndexPage}
  683. {block:PermalinkPage}
  684. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  685.  
  686. {LinkCloseTag}
  687. {/block:PermalinkPage}
  688. {/block:Photo}
  689.  
  690. {block:Photoset}
  691. {block:IndexPage}
  692. <center>
  693. <div class="perma2">
  694. <a href="{Permalink}"> {notecount}</a> </div>
  695. <div class="perma">
  696. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  697. {Photoset-250}</center>
  698. {/block:IndexPage}
  699. {block:PermalinkPage}
  700. <center>
  701. {Photoset-500}</center>
  702. {/block:PermalinkPage}
  703. {/block:Photoset}
  704.  
  705. {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br><p align=right><span class="permalink"><a
  706.  
  707. href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </span>{/block:Quote}
  708.  
  709. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
  710. <ul class="chat">
  711. {block:Lines}
  712. <li class="user_{UserNumber}">
  713. {block:Label}
  714. <span class="label">{Label}</span>
  715. {/block:Label}
  716.  
  717. {Line}
  718. </li>
  719. {/block:Lines}
  720. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}">
  721. {/block:Chat}
  722.  
  723. {block:Audio}
  724. <div style="width:200px; height:30px;">
  725. {AudioPlayerBlack}
  726. </div>
  727. {block:IndexPage}<span class="permalink">
  728. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </a>
  729. </span>{/block:IndexPage}
  730. {/block:Audio}
  731.  
  732. {block:Video}
  733. {block:IndexPage}
  734. <center>
  735. <div class="perma2">
  736. <a href="{Permalink}"> {notecount}</a> </div>
  737. <div class="perma">
  738. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  739. {Video-250}</center>
  740. {/block:IndexPage}
  741. {block:PermalinkPage}
  742. <center>
  743. {Video-400}</center>
  744. {/block:PermalinkPage}
  745. {block:Video}
  746.  
  747.  
  748. {block:PostNotes}<div align="middle">{caption}</div>
  749. <center>
  750.  
  751. {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
  752.  
  753. {block:HasTags}
  754. tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
  755. {block:RebloggedFrom}
  756. reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  757. posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
  758.  
  759. {/block:RebloggedFrom}
  760. </center></span>
  761. <br>
  762. <div id="postnotes">{PostNotes}</div><br>
  763.  
  764. <center>{block:ContentSource}
  765. <br><a href="{SourceURL}">
  766. {lang:Source}:
  767. {block:SourceLogo}
  768. <img src="{BlackLogoURL}" width="{LogoWidth}"
  769. height="{LogoHeight}" alt="{SourceTitle}" />
  770. {/block:SourceLogo}
  771. {block:NoSourceLogo}
  772. {SourceLink}
  773. {/block:NoSourceLogo}
  774. </a>
  775. {/block:ContentSource}</center>
  776.  
  777. {/block:PostNotes}
  778. </div>
  779. {/block:Posts}
  780. </div></div>
  781.  
  782. {block:IndexPage}
  783. {block:Pagination}
  784. <div id="pagination">
  785. {block:NextPage}
  786. <a id="nextPage" href="{NextPage}"></a>
  787. {/block:NextPage}
  788. {block:PreviousPage}
  789. <a href="{PreviousPage}"></a>
  790. {/block:PreviousPage}
  791. </div>
  792. {/block:Pagination}
  793. {/block:IndexPage}
  794. </body>
  795. <div style="position:fixed;right:5px;bottom:5px;"><a href="http://twistedmiracles.tumblr.com">theme</a></div>
  796.  
  797. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement