Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 12th, 2012  |  syntax: None  |  size: 19.26 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!--theme by s-ug4r
  2. remove credit and I will report you
  3. -->
  4.  
  5. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  6. <html xmlns="http://www.w3.org/1999/xhtml">
  7.  
  8. <script type="text/javascript" src="http://static.tumblr.com/q0etgkr/mFbkoqlkr/tumblrautopager.js"></script>
  9.  
  10. <script type='text/javascript'>
  11. //<![CDATA[
  12. var rate = 50;
  13. if (document.getElementById)
  14. window.onerror=new Function("return true")
  15.  
  16. var objActive; // The object which event occured in
  17. var act = 0; // Flag during the action
  18. var elmH = 0; // Hue
  19. var elmS = 128; // Saturation
  20. var elmV = 255; // Value
  21. var clrOrg; // A color before the change
  22. var TimerID; // Timer ID
  23. if (document.all) {
  24. document.onmouseover = doRainbowAnchor;
  25. document.onmouseout = stopRainbowAnchor;
  26. }
  27. else if (document.getElementById) {
  28. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  29. document.onmouseover = Mozilla_doRainbowAnchor;
  30. document.onmouseout = Mozilla_stopRainbowAnchor;
  31. }
  32. function doRainbow(obj)
  33. {
  34. if (act == 0) {
  35. act = 1;
  36. if (obj)
  37. objActive = obj;
  38. else
  39. objActive = event.srcElement;
  40. clrOrg = objActive.style.color;
  41. TimerID = setInterval("ChangeColor()",100);
  42. }
  43. }
  44. function stopRainbow()
  45. {
  46. if (act) {
  47. objActive.style.color = clrOrg;
  48. clearInterval(TimerID);
  49. act = 0;
  50. }
  51. }
  52. function doRainbowAnchor()
  53. {
  54. if (act == 0) {
  55. var obj = event.srcElement;
  56. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  57. obj = obj.parentElement;
  58. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  59. break;
  60. }
  61. if (obj.tagName == 'A' && obj.href != '') {
  62. objActive = obj;
  63. act = 1;
  64. clrOrg = objActive.style.color;
  65. TimerID = setInterval("ChangeColor()",100);
  66. }
  67. }
  68. }
  69. function stopRainbowAnchor()
  70. {
  71. if (act) {
  72. if (objActive.tagName == 'A') {
  73. objActive.style.color = clrOrg;
  74. clearInterval(TimerID);
  75. act = 0;
  76. }
  77. }
  78. }
  79. function Mozilla_doRainbowAnchor(e)
  80. {
  81. if (act == 0) {
  82. obj = e.target;
  83. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  84. obj = obj.parentNode;
  85. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  86. break;
  87. }
  88. if (obj.nodeName == 'A' && obj.href != '') {
  89. objActive = obj;
  90. act = 1;
  91. clrOrg = obj.style.color;
  92. TimerID = setInterval("ChangeColor()",100);
  93. }
  94. }
  95. }
  96. function Mozilla_stopRainbowAnchor(e)
  97. {
  98. if (act) {
  99. if (objActive.nodeName == 'A') {
  100. objActive.style.color = clrOrg;
  101. clearInterval(TimerID);
  102. act = 0;
  103. }
  104. }
  105. }
  106. function ChangeColor()
  107. {
  108. objActive.style.color = makeColor();
  109. }
  110. function makeColor()
  111. {
  112. // Don't you think Color Gamut to look like Rainbow?
  113. // HSVtoRGB
  114. if (elmS == 0) {
  115. elmR = elmV; elmG = elmV; elmB = elmV;
  116. }
  117. else {
  118. t1 = elmV;
  119. t2 = (255 - elmS) * elmV / 255;
  120. t3 = elmH % 60;
  121. t3 = (t1 - t2) * t3 / 60;
  122. if (elmH < 60) {
  123. elmR = t1; elmB = t2; elmG = t2 + t3;
  124. }
  125. else if (elmH < 120) {
  126. elmG = t1; elmB = t2; elmR = t1 - t3;
  127. }
  128. else if (elmH < 180) {
  129. elmG = t1; elmR = t2; elmB = t2 + t3;
  130. }
  131. else if (elmH < 240) {
  132. elmB = t1; elmR = t2; elmG = t1 - t3;
  133. }
  134. else if (elmH < 300) {
  135. elmB = t1; elmG = t2; elmR = t2 + t3;
  136. }
  137. else if (elmH < 360) {
  138. elmR = t1; elmG = t2; elmB = t1 - t3;
  139. }
  140. else {
  141. elmR = 0; elmG = 0; elmB = 0;
  142. }
  143. }
  144. elmR = Math.floor(elmR).toString(16);
  145. elmG = Math.floor(elmG).toString(16);
  146. elmB = Math.floor(elmB).toString(16);
  147. if (elmR.length == 1) elmR = "0" + elmR;
  148. if (elmG.length == 1) elmG = "0" + elmG;
  149. if (elmB.length == 1) elmB = "0" + elmB
  150. elmH = elmH + rate;
  151. if (elmH >= 360)
  152. elmH = 0;
  153. return '#' + elmR + elmG + elmB;
  154. }
  155. //]]>
  156. </script>
  157.  
  158.  
  159. <head>
  160.  
  161. <link href='http://fonts.googleapis.com/css?family=Short+Stack' rel='stylesheet' type='text/css'>
  162.  
  163. <script type="text/javascript">
  164.   WebFontConfig = {
  165.     google: { families: [ 'Short+Stack::latin' ] }
  166.   };
  167.   (function() {
  168.     var wf = document.createElement('script');
  169.     wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  170.       '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  171.     wf.type = 'text/javascript';
  172.     wf.async = 'true';
  173.     var s = document.getElementsByTagName('script')[0];
  174.     s.parentNode.insertBefore(wf, s);
  175.   })(); </script>
  176.  
  177. <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
  178.  
  179. <script type="text/javascript">
  180.   WebFontConfig = {
  181.     google: { families: [ 'Amatic+SC::latin' ] }
  182.   };
  183.   (function() {
  184.     var wf = document.createElement('script');
  185.     wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  186.       '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  187.     wf.type = 'text/javascript';
  188.     wf.async = 'true';
  189.     var s = document.getElementsByTagName('script')[0];
  190.     s.parentNode.insertBefore(wf, s);
  191.   })(); </script>
  192.  
  193. <script type="text/javascript">
  194. // <![CDATA[
  195. var speed=100; // speed colours change, 1 second = 1000
  196. var delay=25; // how long to wait for each wipe
  197. var alink="http://www.mf2fm.com/rv"; // page to link text to (set to ="" for no link)
  198.  
  199. /****************************
  200. * DON'T EDIT BELOW THIS BOX *
  201. ****************************/
  202. var w_txt;
  203. window.onload=function() { if (document.getElementById) {
  204. var wiper=document.getElementById("wipe");
  205. w_txt=wiper.firstChild.nodeValue;
  206. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  207. for (var i=0; i<w_txt.length; i++) {
  208. var wipei=document.createElement("span");
  209. wipei.setAttribute("id", "wipe"+i);
  210. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  211. if (alink) {
  212. wipei.style.cursor="pointer";
  213. wipei.onclick=function() { top.location.href=alink; }
  214. }
  215. wiper.appendChild(wipei);
  216. }
  217. wipe(0);
  218. }}
  219.  
  220. function wipe(c) {
  221. if (!c) for (var w=0; w<w_txt.length; w++) document.getElementById("wipe"+w).style.visibility="hidden";
  222. else if (c<=w_txt.length) document.getElementById("wipe"+(c-1)).style.visibility="visible";
  223. setTimeout("wipe("+(++c%(w_txt.length+delay))+")", speed);
  224. }
  225. // ]]>
  226. </script>
  227.  
  228. <title>{Title}</title>
  229.  
  230. <script type="text/javascript"
  231. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  232.  
  233. <meta name="color:Background" content="#EEEEEE"/>
  234. <meta name="color:Text" content="#000000"/>
  235.  
  236. <meta name="image:side1" content="http://24.media.tumblr.com/tumblr_m28blyvXzo1r5rmq0o1_500.gif"/>
  237. <meta name="image:side2" content="http://24.media.tumblr.com/tumblr_m2r07ft8ku1qgfh4lo1_500.gif"/>
  238. <meta name="image:Background" content="1"/>
  239.  
  240.  
  241. <meta name="text:Custom Link One Title" content= >
  242. <meta name="text:Custom Link One" content="http://" />
  243. <meta name="text:Custom Link Two Title" content= >
  244. <meta name="text:Custom Link Two" content="http://" />
  245. <meta name="text:Custom Link Three Title" content= >
  246. <meta name="text:Custom Link Three" content="http://" />
  247. <meta name="text:Custom Link Four Title" content= >
  248. <meta name="text:Custom Link Four" content="http://" />
  249. <meta name="text:Custom Link Five Title" content= >
  250. <meta name="text:Custom Link Five" content="http://" />
  251.  
  252.  
  253. <link href='http://fonts.googleapis.com/css?family=Karla' rel='stylesheet' type='text/css'>
  254.  
  255. <link href='http://fonts.googleapis.com/css?family=Fredoka+One' rel='stylesheet' type='text/css'>
  256.  
  257. <link href='http://fonts.googleapis.com/css?family=Sunshiney' rel='stylesheet' type='text/css'>
  258.  
  259.  
  260.  
  261. <style type="text/css">
  262.  
  263. @import url(http://fonts.googleapis.com/css?family=Short+Stack);
  264.  
  265. @import url(http://fonts.googleapis.com/css?family=Amatic+SC);
  266.  
  267. .kitty{padding: 0px; background-color: transparent;float: left; text-align: center; margin-top: 0px; margin-left: 0px; margin-right: 0px; margin-bottom:0px;}
  268. .kitty img {float: center; display: block; width: 200px; height:126px;margin-top:0px; margin-left:0px;border-top-right-radius:0px;
  269. border-bottom-right-radius:0px;
  270. border-top-left-radius:0px;
  271. border-bottom-left-radius:0px;}
  272.  
  273. #meow {letter-spacing:0px; padding: 0px;}
  274. #meow img {display: inline; text-align:center; border: 0px solid ;}
  275. #meow img:hover {display: inline; height:126px; text-align:center; opacity:3; -webkit-transition: all 0.6s ease;border: 0px solid ;}
  276.  
  277.  
  278. .side1{float:right; letter-spacing:2px; padding: 0px; position:fixed; -webkit-transition: all 1s ease-in;opacity: 0;}
  279. .side1 img{width: 200px; height:126px; border: 0px;margin-top:0px;}
  280. .side1:hover{opacity:3;}
  281.  
  282. a {color:;text-decoration:none;-webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out;}
  283.  
  284. .fufu {width:227px;-webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out;}
  285.  
  286. .fufu:hover {-webkit-transform: translate(1em,0);-moz-transform: translate(1em,0);-o-transform: translate(1em,0);}
  287.  
  288. #biter
  289.  
  290. #bite a {display:block}
  291.  
  292. #bite .death {margin-top:0px;filter: alpha(opacity = 0);opacity:0;-webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out;}
  293.  
  294. #bite:hover .death {margin-top:0px;-webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;transition: all 0.2s ease-out; filter: alpha(opacity = 100);filter: alpha(opacity = 100);opacity:100;}
  295.  
  296. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name=”description” content=”{MetaDescription}” />{/block:Description}
  297. {block:ifinfinitescrolling}<script type=”text/javascript” src=”http://codysherman.com/tools/infinite-scrolling/code”></script>{/block:ifinfinitescrolling}
  298. <script type=”text/javascript”>
  299. //
  300. function desabilitaMenu(e)
  301. {
  302. if (window.Event)
  303. {
  304. if (e.which == 2 || e.which == 3)
  305. return false;
  306. }
  307. else
  308. {
  309. event.cancelBubble = true
  310. event.returnValue = false;
  311. return false;
  312. }
  313. }
  314. document.oncontextmenu = desabilitaMenu;
  315. document.onmousedown = desabilitaBotaoDireito;
  316. document.onmouseup = desabilitaBotaoDireito;
  317. </script>
  318. {/block:Ifnorightclick}
  319.  
  320.  
  321. #tumblr_controls{
  322. position:fixed !important;
  323. }
  324.  
  325. .wrapper{
  326. margin: 0px auto;
  327. width: 802px;
  328. }
  329.  
  330. .header{
  331. float: left;
  332. width: 100%;
  333. }
  334.  
  335. .left{
  336. float: left;
  337. margin-right: 20px;
  338. width: 802px;
  339. }
  340.  
  341. .right{
  342. float: right;
  343. width: 200px;
  344. background-color: {color:Background};
  345. }
  346.  
  347. body {
  348. padding: 0px;
  349. margin: 0px;
  350. color:{color:text};
  351. font-family: 'short stack', cursive;
  352. font-size: 14px;
  353. background-color: {color:Background};
  354. background-image:url({image:Background});
  355. background-attachment: fixed;
  356. background-repeat: repeat;
  357. }
  358.  
  359. a:link, a:active, a:visited{
  360. text-decoration: none;
  361. color:white;
  362. text-shadow:0px 0px 2px #6E6E6E;
  363. -webkit-transition: color 0.4s ease-out;
  364. -moz-transition: color 0.4s ease-out;
  365. }
  366.  
  367. a:hover{
  368. color:white;
  369. -webkit-transition: color 0.4s ease-out;
  370. -moz-transition: color 0.4s ease-out;
  371. text-shadow:0px 0px 1px #000;
  372. }
  373.  
  374. .entry {
  375. margin:0px;
  376. padding-left: 3px;
  377. padding-right: 3px;
  378. width: 250px;
  379. height: auto;
  380. float:left;
  381. text-align: center;
  382. background-color: #BDBDBD;
  383. font-family: 'short stack', cursive;
  384. font-size: 11px;
  385. line-height:14px;
  386. {block:IndexPage}
  387. width:250px;
  388. {/block:IndexPage}
  389. {block:PermalinkPage}
  390. width:500px;
  391. margin-left: 357x;
  392. {/block:PermalinkPage}
  393. -o-border-radius: 0px
  394. -webkit-border-radius: 0px;
  395. -moz-border-radius: 0px;
  396. border-radius: 0px;
  397. -webkit-box-shadow: 0px 0px 0px rgba(0,0,0,0.2);
  398. -moz-box-shadow: 0px 0px 0px rgba(0,0,0,0.2);
  399. box-shadow: 0px 0px 0px rgba(0,0,0,0.2);
  400. }
  401.  
  402. .entry .permalink{
  403. width:120px;
  404. position: absolute;
  405. margin-top: 0px;
  406. margin-left: 130px;
  407. font-size:12px;
  408. opacity: 0;
  409. height:14px;
  410. line-height:14px;
  411. -webkit-transition: all .3s ease;
  412. -moz-transition: all .3s ease;
  413. -o-transition: all .3s ease;
  414. transition: all .3s ease;
  415. }
  416. .entry:hover .permalink{
  417. margin-top: 0px;
  418. margin-left:130px;
  419. width: 120px;
  420. overflow:visible;
  421. background:
  422. height:14px;
  423. line-height:14px;
  424. -webkit-transition: opacity 0.2s linear; opacity: 1;
  425. -webkit-transition: all 0.2s linear;
  426. -moz-transition: all 0.2s linear;
  427. transition: all 0.2s linear;
  428. moz-border-radius: 15px 15px 15px 15px;
  429. border-radius:0px 0px 0px 0px;
  430. }
  431.  
  432. .countreblog {
  433. color: #ffffff;
  434. letter-spacing:1px;
  435. font-family: 'short stack', cursive;
  436. font-size:13px;
  437. line-height:20px;
  438. margin: 2px;
  439. background: transparent;
  440. border:1px solid rgba(0,0,0,0.1);
  441. padding:2px 2px;
  442. }
  443. div#sidebar{
  444. z-index:999999999999999;
  445. position:absolute !important;
  446. position:fixed !important;
  447. top:-80px;
  448. left: 200px;
  449. font-family:'short stack'cursive;
  450. font-size: 13px;
  451. background-color:transparent;
  452. -color:transparent;
  453. background-color: transparent;
  454. position:fixed !important;
  455. width:200px;
  456. height:auto;
  457. margin-top:150px;
  458. margin-left:-145px;
  459. padding:0px;
  460. background-color:transparent;
  461. background-color:transparent;
  462. z-index:10;
  463. overflow:hidden;
  464. -moz-box-shadow: 0px 0px 0px ;
  465. -webkit-box-shadow: 0px 0px 0px ;
  466. box-shadow: 0px 0px 0px ;
  467. moz-border-radius: 0px 0px 0px 0px;
  468. border-radius:0px 0px 0px 0px;
  469. }
  470.  
  471. .candy{
  472. position: fixed;
  473. font-family: 'short stack', cursive;
  474. font-size: 13px;
  475. margin-top: 0px;
  476. margin-left:0px;
  477. background:black;
  478. font-weight:bold;
  479. }
  480.  
  481.  
  482. div#blogtitle {
  483. font-family: 'amatic sc' cursive;
  484. font-size: 60px;
  485. color:#fff;
  486. line-height: 60px;
  487. margin:0px;
  488. letter-spacing:2px;
  489. padding-bottom:10px;
  490. -webkit-transform: rotate(0deg);
  491. -moz-transform: rotate(0deg);
  492. text-shadow: 0px 0px 5px #6E6E6E;
  493. }
  494.  
  495. #blogtitle:hover {
  496. color:#000;
  497. text-shadow:none;
  498. -webkit-transition: all .3s ease;
  499. -moz-transition: all .3s ease;
  500. -o-transition: all .3s ease;
  501. transition: all .3s ease;
  502. }
  503.  
  504.  
  505. .links{
  506. width: 200px;
  507. display:block;
  508. height:20px;
  509. background : #BDBDBD;
  510. font-size: 14px;
  511. line-height:20px;
  512. margin-top: 2px;
  513. margin:2px;
  514. color: #fff;
  515. font-family: 'short stack', cursive;
  516. text-align: center;
  517. text-transform:lowercase;
  518. padding : 1px;
  519. border: 1px none #000000;
  520. padding-bottom : 0px;
  521. -webkit-transition-duration: .9s;
  522. -webkit-transform: rotate(0deg);
  523. }
  524.  
  525. .links:hover {
  526. text-transform:none;
  527. width:100px;
  528. background :
  529. -webkit-transition-duration: .9s;
  530. -webkit-transform: rotate(0deg);
  531. box-shadow: 0px 0px 0px rgba(50, 50, 50, 0.42);
  532.  
  533. }
  534.  
  535.  
  536. #posts {
  537. width: 800px;
  538. margin-left:350px;
  539. margin-top:5px;
  540. float:left;
  541. font-family:'short stack', cursive;
  542. }
  543.  
  544. .title{
  545. font-family: 'amatic sc', cursive;
  546. font-size: 40px;
  547. line-height:11px;
  548. color: black;
  549. font-weight: normal;
  550. }
  551. </style>
  552.  
  553. {block:IndexPage}
  554. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  555. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  556.  
  557. <script type="text/javascript">
  558. $(window).load(function () {
  559. var $content = $('#posts');
  560. $content.masonry({itemSelector: '.entry'}),
  561. $content.infinitescroll({
  562. navSelector : 'div#pagination',
  563. nextSelector : 'div#pagination a#nextPage',
  564. itemSelector : '.entry',
  565. loading: {
  566. finishedMsg: '',
  567. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  568. },
  569. bufferPx : 600,
  570. debug : false,
  571. },
  572. // call masonry as a callback.
  573. function( newElements ) {
  574. var $newElems = $( newElements );
  575. $newElems.hide();
  576. // ensure that images load before adding to masonry layout
  577. $newElems.imagesLoaded(function(){
  578. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  579.  
  580.  
  581. });
  582. });
  583. });
  584. </script>
  585.  
  586. {/block:IndexPage}
  587.  
  588. <title>{title}</title>
  589.  
  590. <link rel="shortcut icon" href="{Favicon}">
  591. <meta name="viewport" content="width=820" />
  592.  
  593. </head>
  594. <body>
  595. <div class="wrapper">
  596. <div class="header">
  597. </div>
  598. <div id="sidebar">
  599. <center>
  600. <div id="blogtitle"><center><span id="wipe">{Title}
  601. </span></div>
  602.  
  603. <div style=margin-top:-5px><div class="kitty"><div id="meow"><div class="side1"><center><img src="{image:side2}" /></center></div><center><img src="{image:side1}" /></center></div></div></div>
  604.  
  605. {Description}
  606.  
  607. <div id="bite">
  608. <h4><center>hover</center></h4>
  609. <div class= "death">
  610.  
  611. <div align="center">
  612.  
  613. {block:ifCustomLinkOneTitle}<div class="links"><a href="{text:Custom Link One}" class="links1">{text:Custom Link One Title}</a></div>{/block:ifCustomLinkOneTitle}
  614.  
  615. {block:ifCustomLinkTwoTitle}<div class="links"><a href="{text:Custom Link Two}" class="links1">{text:Custom Link Two Title}</a></div>{/block:ifCustomLinkTwoTitle}
  616.  
  617. {block:ifCustomLinkThreeTitle}<div class="links"><a href="{text:Custom Link Three}" class="links1">{text:Custom Link Three Title}</a></div>{/block:ifCustomLinkThreeTitle}
  618.  
  619. {block:ifCustomLinkFourTitle}<div class="links"><a href="{text:Custom Link Four}" class="links1">{text:Custom Link Four Title}</a></div>{/block:ifCustomLinkFourTitle}
  620.  
  621. {block:ifCustomLinkFiveTitle}<div class="links"><a href="{text:Custom Link Five}" class="links1">{text:Custom Link Five Title}</a></div>{/block:ifCustomLinkFiveTitle}
  622.  
  623. <div class="links"><a href="http://s-ug4r.tumblr.com">theme</a> </div>
  624. </div>
  625. </div>
  626.  
  627. </center></div>
  628.  
  629. </center></div>
  630.  
  631. <div class="left">
  632.  
  633. <div id="posts">
  634.  
  635. {block:Posts}
  636. <div class="entry">
  637.  
  638. {block:IndexPage}
  639. <div class="permalink">
  640. <a href="{permalink}">{NoteCount} </a> ∆ <a href="{ReblogURL}" target="_blank">reblog</a></span></div>
  641. {/block:IndexPage}
  642.  
  643. {block:Text}
  644. <div style="padding-top:10px; padding-bottom:0px; padding-left:10px; padding-right:10px;">
  645. {block:Title}
  646. <a href="{permalink}"><span class="title">{Title}</span></a>
  647. {/block:Title}
  648. <span class="entrytext" style="line-height:12px;">{Body}</span>
  649. <a href="{Permalink}"></a></div>
  650. {block:IndexPage}
  651. <div align="right">
  652. <a href="{permalink}"></a></div>
  653. {/block:Date}{/block:IndexPage}
  654. {/block:Text}
  655.  
  656. {block:Link}
  657. <a href="{URL}" class="title">{Name}</a>
  658. {block:Description}{Description}{/block:Description}
  659. {block:Link}
  660.  
  661. {block:Photo}
  662. {block:IndexPage}{LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="250"/></a></div>{LinkCloseTag}{/block:IndexPage}
  663. {block:PermalinkPage}{LinkOpenTag}<a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="500"/></a>{LinkCloseTag}{/block:PermalinkPage}
  664. {/block:Photo}
  665.  
  666. {block:Photoset}
  667. {block:IndexPage}
  668. <center>
  669. {Photoset-340}</center>
  670. {/block:IndexPage}
  671. {block:PermalinkPage}
  672. <center>
  673. {Photoset-550}</center>
  674. {/block:PermalinkPage}
  675. {/block:Photoset}
  676.  
  677. {block:Quote}
  678. {Quote}</span>
  679. {block:Source}<strong>{Source}</strong>{/block:Source}
  680. {/block:Quote}
  681.  
  682. {block:Chat}
  683. {block:Title}<span class="title">{Title}</span>{/block:Title}
  684. <ul class="chat">
  685. {block:Lines}
  686. <li class="user_{UserNumber}">
  687. {block:Label}
  688. <span class="label">{Label}</span>
  689. {/block:Label}
  690.  
  691. {Line}
  692. </li>
  693. {/block:Lines}
  694. </ul>
  695. {/block:Chat}
  696.  
  697. {block:Audio}
  698. <center><div style="width:340px; height:28px;"><div style="float:left">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
  699. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
  700. {/block:Audio}
  701.  
  702. {block:Video}
  703. {block:IndexPage}
  704. <center>
  705. {Video-340}</center>
  706. {/block:IndexPage}
  707. {block:PermalinkPage}
  708. <center>
  709. {Video-550}</center>
  710. {/block:PermalinkPage}
  711. {block:Video}
  712.  
  713. {block:PermalinkPage}
  714. <center>
  715. <br>{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}</center>
  716.  
  717.  
  718. {/block:PermalinkPage}
  719.  
  720.  
  721. {block:PostNotes}{PostNotes}
  722. {/block:PostNotes}
  723. </div>
  724.  
  725.  
  726. {/block:Posts}
  727. </div>
  728. </div>
  729. {block:IndexPage}
  730. {block:Pagination}
  731. <div id="pagination">
  732. {block:NextPage}
  733. <a id="nextPage" href="{NextPage}">&nbsp;&rarr;</a>
  734. {/block:NextPage}
  735. {block:PreviousPage}
  736. <a href="{PreviousPage}">&larr;&nbsp;</a>
  737. {/block:PreviousPage}
  738. </div>
  739. {/block:Pagination}
  740. {/block:IndexPage}
  741. </div>
  742.  
  743.  
  744. </body>
  745. <br>
  746. <br>
  747.  
  748.  
  749. </html>