Advertisement
danateruel

Beautiful, Dirty + Rich

Oct 8th, 2012
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.88 KB | None | 0 0
  1. <html lang="en">
  2.  
  3. <!--
  4. ---------------------------------------
  5. | ♥♥♥ |
  6. | Beautiful, Dirty & Rich |
  7. | by Dana Teruel |
  8. | ----------------------- |
  9. | Remove the credits and |
  10. | i will kill you ;3 |
  11. | but seriously lol, dont. c: okayy |
  12. | byee now! |
  13. | |
  14. ---------------------------------------
  15. -->
  16.  
  17. <head>
  18.  
  19. <h1><center><span id="wipe">{Title}</span> </center> </h1> <br>
  20.  
  21. <script type="text/javascript">
  22. // <![CDATA[
  23. // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
  24. var fgcolour="#6600cc"; // foreground colour
  25. var hlcolour="#aa77ff"; // highlight colour
  26. var bgcolour="#ffffff"; // background colour
  27. var glcolour="#cc99ff"; // colour of glow around letters
  28. var speed=66; // speed colours change, 1 second = 1000
  29. var delay=50; // how long to wait between wipes
  30. var alink="http://www.mf2fm.com/rv"; // page to link text to (set to ="" for no link)
  31.  
  32. /****************************
  33. *Multi-Wipe Neon Text Effect*
  34. *(c)2003-12 mf2fm web-design*
  35. * http://www.mf2fm.com/rv *
  36. * DON'T EDIT BELOW THIS BOX *
  37. ****************************/
  38. var w_txt, w_txl;
  39. var w_flp=bgcolour;
  40. var w_sty=Math.floor(Math.random()*8);
  41. var w_cnt=-1;
  42. var wipes=new Array();
  43. var wrand=new Array();
  44. window.onload=function() { if (document.getElementById) {
  45. var i, wiper, wipei;
  46. wiper=document.getElementById("wipe");
  47. w_txt=wiper.firstChild.nodeValue;
  48. w_txl=w_txt.length;
  49. while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
  50. for (i=0; i<w_txl; i++) {
  51. wipei=document.createElement("span");
  52. wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
  53. wipes[i]=wipei.style;
  54. wipes[i].textShadow=glcolour+" 0px 0px 5px";
  55. wipes[i].color=fgcolour;
  56. wiper.appendChild(wipei);
  57. }
  58. if (alink) {
  59. wiper.style.cursor="pointer";
  60. wiper.onclick=function() { top.location.href=alink; }
  61. }
  62. for (i=0; i<w_txl; i++) wrand[i]=i;
  63. wiper=setInterval("randwipe()", speed);
  64. }}
  65.  
  66. function c(i, shade) {
  67. if (shade==bgcolour) wipes[i].textShadow="none";
  68. else wipes[i].textShadow=glcolour+" 0px 0px 5px";
  69. wipes[i].color=shade;
  70. }
  71.  
  72. function randwipe() {
  73. var w_old;
  74. if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
  75. else {
  76. w_cnt=-1;
  77. w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  78. w_old=w_sty;
  79. while (w_old==w_sty) w_sty=Math.floor(Math.random()*9);
  80. }
  81. }
  82.  
  83. function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
  84.  
  85. function wipe0() { // full curtains
  86. var half=Math.floor(w_txl/2);
  87. if (w_cnt<w_txl) {
  88. c(w_cnt, (w_cnt<half)?hlcolour:w_flp);
  89. c(w_txl-w_cnt-1, (w_cnt<half)?hlcolour:w_flp);
  90. }
  91. }
  92.  
  93. function wipe1() { // random
  94. var i, rand, temp;
  95. if (w_cnt==0) {
  96. for (i=0; i<w_txl; i++) {
  97. rand=Math.floor(Math.random()*w_txl);
  98. temp=wrand[i];
  99. wrand[i]=wrand[rand];
  100. wrand[rand]=temp;
  101. }
  102. }
  103. if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
  104. if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
  105. }
  106.  
  107. function wipe2() { // forwards
  108. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  109. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  110. }
  111.  
  112. function wipe3() { // backwards
  113. if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
  114. if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
  115. }
  116.  
  117. function wipe4() { // searchlight
  118. if (w_cnt<w_txl) c(w_cnt, hlcolour);
  119. if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
  120. if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
  121. if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
  122. if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
  123. }
  124.  
  125. function wipe5() { // fade
  126. var i;
  127. if (w_cnt<w_txl+3) {
  128. var start=(w_flp==fgcolour)?bgcolour:fgcolour;
  129. var temp="#";
  130. for (i=1; i<6; i+=2) {
  131. var hex1=parseInt(start.substring(i,i+2),16);
  132. var hex2=parseInt(w_flp.substring(i,i+2),16);
  133. temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
  134. }
  135. for (i=0; i<w_txl; i++) c(i, temp);
  136. }
  137. }
  138.  
  139. function wipe6() { // flash
  140. var i;
  141. if (w_cnt<6*Math.floor(w_txl/6)+3) {
  142. if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
  143. else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
  144. else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
  145. }
  146. }
  147.  
  148. function wipe7() { // checkerboard
  149. var qtr=Math.floor(w_txl/4);
  150. if (w_cnt<qtr) {
  151. c(w_cnt, hlcolour);
  152. c(w_cnt+2*qtr, hlcolour);
  153. }
  154. else if (w_cnt<2*qtr) {
  155. c(w_cnt-qtr, w_flp);
  156. c(w_cnt+qtr, w_flp);
  157. }
  158. else if (w_cnt<3*qtr) {
  159. c(w_cnt-qtr, hlcolour);
  160. c(w_cnt+qtr, hlcolour);
  161. }
  162. else if (w_cnt<w_txl) {
  163. c(w_cnt-2*qtr, w_flp);
  164. c(w_cnt, w_flp);
  165. }
  166. }
  167.  
  168. function wipe8() { // half curtains
  169. var half=Math.floor(w_txl/2);
  170. if (w_cnt<half) {
  171. c(w_cnt, hlcolour);
  172. c(w_txl-w_cnt-1, hlcolour);
  173. }
  174. else if (w_cnt<w_txl) {
  175. c(w_cnt-half, w_flp);
  176. c(w_txl+half-w_cnt-1, w_flp);
  177. }
  178. }
  179. // ]]>
  180. </script>
  181.  
  182. <title>{title}</title>
  183. <link rel="shortcut icon" href="{image:Favicon}"/>
  184. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  185. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  186.  
  187. <!-- meta tags -->
  188. <meta name="image:sidebar" content="/" />
  189. <meta name="color:sidebar text" content="" />
  190. <meta name="text:stat one" content="" />
  191. <meta name="text:stat two" content="" />
  192. <meta name="text:stat three" content="" />
  193. <meta name="text:stat four" content="" />
  194. <meta name="color:bold" content="" />
  195. <meta name="color:italic" content="" />
  196. <meta name="color:strike" content="" />
  197. <meta name="color:underlined" content="" />
  198. <meta name="image:favicon" content="" />
  199. <meta name="text:Link 1" content="" />
  200. <meta name="text:Link 1 title" content="" />
  201. <meta name="text:Link 2" content="" />
  202. <meta name="text:Link 2 title" content="" />
  203. <meta name="text:Link 3" content="" />
  204. <meta name="text:Link 3 title" content="" />
  205. <!-- meta tags -->
  206.  
  207. <!-- fonts used -->
  208. <link href='http://fonts.googleapis.com/css?family=Carrois+Gothic+SC' rel='stylesheet' type='text/css'>
  209. <!-- fonts used -->
  210.  
  211. <style type="text/css">
  212.  
  213. @font-face { font-family: "caviardreams"; src: url('http://static.tumblr.com/4yxykdm/xXTlrecqr/caviardreams.ttf'); }
  214.  
  215. h1, big{
  216. color: #a8a8a8;
  217. font-family: "caviardreams";
  218. font-size:40px;
  219. line-height:30px;
  220. letter-spacing:1px;
  221. font-weight:normal;
  222. text-transform:;
  223. margin:0px;
  224. padding:0px;
  225. text-align:center;
  226. }
  227.  
  228.  
  229. /** fade buttons **/
  230. iframe#tumblr_controls {
  231. top: 100% !important;
  232. margin: -30px 0 0 0;
  233. right: 5px !important;
  234. position: fixed !important;
  235. }
  236.  
  237. /** bullets **/
  238. li {display: block; -webkit-transition-duration: .40s; border-bottom: 1px solid #f5c9ce; background-repeat: no-repeat; vertical-align: middle; line-height: 17px; text-indent: 5px; background: url('http://stephanielouie.comule.com/material/x6.gif') no-repeat left; padding-left: 15px;}
  239. /** bullets **/
  240.  
  241. /** bold, italic, strike, etc **/
  242. strong, b, bold {
  243. color:{color:bold};
  244. text-decoration:none;
  245. font-weight:bold;
  246. }
  247. i, em, italic {
  248. {color:italic};
  249. font-family: Tahoma, cursive;
  250. }
  251. u, underline {
  252. text-decoration:none;
  253. color:{color:underlined};
  254. border-bottom: 1px dotted #eee;
  255. }
  256. s, strike {
  257. color:{color:strike};
  258. }
  259. /** bold, italic, strike, etc **/
  260.  
  261. /** other fonts **/
  262. @font-face {
  263. font-family: "amandine";
  264. src: url('http://static.tumblr.com/y0x5xm1/GK9lnbxom/amandine.ttf');
  265. }
  266. /** other fonts **/
  267.  
  268.  
  269.  
  270. #entry {
  271. border:2px solid #000;
  272. background-image: url();
  273. background-color:{color:Posts};
  274. float:left;
  275. {block:IndexPage}
  276. width: 500px;
  277. height: 100%;
  278. {/block:IndexPage}
  279. {block:PermalinkPage}
  280. width:600px;
  281. padding:0px;
  282. font color: #000;
  283. {/block:PermalinkPage}
  284. overflow:hidden;
  285. padding:5px;
  286. padding-top:5px;
  287. margin:0px;
  288. margin-top:9px;
  289. margin-left:3px;
  290.  
  291. }
  292.  
  293.  
  294. #entry .perma a{color:{link};}
  295.  
  296. #entry .perma{width:0px; position: absolute; line-height: 10px; overflow:hidden; opacity: 0.0; background-color:; color: {color:link} ;margin-top:0px;margin-left:-100px;-webkit-transition: all 0.7s linear; -moz-transition: all 0.7s linear; transition: all 0.7s linear;margin-top:-100px;}
  297.  
  298. #entry:hover .perma{overflow:visible;-webkit-transition: opacity 0.2s linear; opacity: 0.8;
  299. -webkit-transition: all 0.4s linear; -moz-transition: all 0.4s linear; transition: all 0.4s linear; margin-left:0px;margin-top:0px;width:auto;}
  300.  
  301. #permal {
  302. width: 50px;
  303. height:15px;
  304. display: inline-block;
  305. margin-left: 2px;
  306. margin-top:3px;
  307. padding: 2px;
  308. background-color:#ffffff;
  309. line-height:13px;
  310. font-size: 11px;
  311. font-family: segoe print;
  312. color: #fff;
  313. text-align:center;
  314. -webkit-border-radius: 5px 5px 5px 5px;
  315. -moz-border-radius: 5px 5px 5px 5px;
  316. border-radius: 5px 5px 5px 5px;
  317. }
  318.  
  319.  
  320. #cali {
  321. width:220px;
  322. height:auto;
  323. overflow:hidden;
  324. margin-left:10px;
  325. margin-top:10px;
  326. padding:5px;
  327. z-index:9999;
  328. position:fixed;
  329. -webkit-border-radius: 10px;
  330. border-radius: 10px;
  331. color:{color:sidebar text};
  332. -webkit-transition: opacity 0.6s linear;
  333. -webkit-transition: all 0.6s ease-in-out;
  334. -moz-transition: all 0.6s ease-in-out;
  335. -o-transition: all 0.6s ease-in-out;
  336. }
  337.  
  338. #cali:hover{
  339. -moz-box-shadow: 0 0 20px rgba(255,255,255,.5);
  340. -webkit-box-shadow: 0 0 20px rgba(255,255,255,.5);
  341. box-shadow: 0 0 20px rgba(255,255,255,.5);
  342. }
  343.  
  344. #cali #rogue{
  345. opacity:1;
  346. -webkit-transition: opacity 0.6s linear;
  347. -webkit-transition: all 0.6s ease-in-out;
  348. -moz-transition: all 0.6s ease-in-out;
  349. -o-transition: all 0.6s ease-in-out;
  350. }
  351.  
  352. #cali #nah{
  353. color:{color:sidebar text};
  354. margin-top:0px;
  355. -webkit-transition: opacity 0.6s linear;
  356. -webkit-transition: all 0.6s ease-in-out;
  357. -moz-transition: all 0.6s ease-in-out;
  358. -o-transition: all 0.6s ease-in-out;
  359. }
  360.  
  361. #cali:hover #nah{
  362. margin-top:-40px;
  363. }
  364.  
  365. #cali #wut{
  366. margin-top:0px;
  367. color:{color:sidebar text};
  368. -webkit-transition: opacity 0.6s linear;
  369. -webkit-transition: all 0.6s ease-in-out;
  370. -moz-transition: all 0.6s ease-in-out;
  371. -o-transition: all 0.6s ease-in-out;
  372. }
  373.  
  374. #cali:hover #wut{
  375. margin-top:-40px;
  376. }
  377.  
  378. #cali:hover #rogue{
  379. opacity:0;
  380. }
  381.  
  382. #cali #fornia{
  383. opacity:0;
  384. -webkit-transition: opacity 0.6s linear;
  385. -webkit-transition: all 0.6s ease-in-out;
  386. -moz-transition: all 0.6s ease-in-out;
  387. -o-transition: all 0.6s ease-in-out;
  388. }
  389.  
  390. #shalala{
  391. height:150px;
  392. overflow:hidden;
  393. -webkit-border-radius: 10px;
  394. border-radius: 10px;
  395. }
  396.  
  397. #shalala img{
  398. width:240px;
  399. }
  400.  
  401. #cali:hover #fornia{
  402. opacity:1;
  403. }
  404.  
  405. body{
  406. color:black;
  407. font-family:verdana;
  408. font-size:10px;
  409. background-color:black;
  410. }
  411.  
  412.  
  413.  
  414.  
  415.  
  416.  
  417. #cent{
  418. width:500px;
  419. margin-left:400px;
  420. background-color:#fff;
  421. position:absolute;
  422. padding:5px;
  423. }
  424.  
  425. #post{
  426. padding:2px;
  427. background-color:#fff;
  428. width:490px;
  429. float:left;
  430. margin:2px;
  431. }
  432.  
  433. #sidebar{
  434. background-color:#fff;
  435. width:230px;
  436. margin-top:400px;
  437. margin-left:10px;
  438. position:fixed;
  439. padding:3px;
  440. }
  441.  
  442. div#picbar{
  443. position:fixed !important;
  444. margin-top:10px;
  445. margin-left:200px;
  446. background-color:#trans;
  447. width:130px;
  448. padding:2px;
  449. z-index:999;
  450. }
  451.  
  452. div.button a{
  453. display: inline-block;
  454. color: #a8a8a8;
  455. background-color:#f1e9ec;
  456. height:15px;
  457. width:220px;
  458. padding-left:5px;
  459. padding-top:2px;
  460. border-right:8px solid #938b8e;
  461.  
  462. }
  463.  
  464. div.button a:hover{
  465. width:132px;
  466. text-align:right;
  467. border-right:65px solid #938b8e;
  468. padding-right:2px;
  469. color: #a8a8a8;
  470. background-color:#f1e9ec;
  471. -webkit-transition: 0.5s
  472. }
  473.  
  474.  
  475. .tble {margin-left:50px; float:left; width:auto;}
  476.  
  477. .circles {
  478. width:120px;
  479. height:120px;
  480. background-color:#trans;
  481. padding: 0px;
  482.  
  483. -webkit-border-radius: 60px;
  484. -moz-border-radius: 60px;
  485. border-radius: 60px;
  486. -moz-transition: all .6s ease-in-out;
  487. -o-transition: all .6s ease-in-out;
  488. transition: all .6s ease-in-out;
  489. -webkit-transition: all .6s ease-in-out;
  490. box-shadow: 0 0 8px #fff;
  491. -webkit-box-shadow: 0 0 8px #fff;
  492. -moz-box-shadow: 0 0 8px #fff;
  493. overflow:hidden;
  494. }
  495.  
  496. .rawr{
  497. font-size:15px;
  498. color:#898989;
  499. font-family:arial;
  500. text-transform:uppercase;
  501. background-image:url(http://www.featurepics.com/FI/Thumb300/20111222/Black-Vintage-Background-2075702.jpg);
  502. border:1px dotted #ccc;
  503. line-height:16px;
  504. -webkit-border-radius: 10px;
  505. border-radius: 40px;
  506. }
  507.  
  508. .rawr:first-letter{
  509. font-family:amandine;
  510. color:#f8989a;
  511. line-height:20px;
  512. text-transform:uppercase;
  513. font-size:25px;
  514. padding-right:5px;
  515. }
  516.  
  517. .heart {display : block; font-size: 8pt; font-family: verdana, Lucida Sans Unicode; line-height: 15px; border-bottom : 1px solid #f4f4f3; text-indent : 5px; vertical-align : middle; background:
  518. url('http://www.hellostar.org/wp-admin/images/q1.gif') no-repeat left; padding-left : 10px;
  519. padding-bottom : 2px;}
  520.  
  521. .heart:hover {display : block; font-size: 8pt; font-family: verdana, Lucida Sans Unicode; line-height: 15px; border-bottom : 1px dashed #E0DCD6; text-indent : 5px; vertical-align : middle; background : url('http://www.hellostar.org/wp-admin/images/q2.gif') no-repeat left; padding-left : 10px; padding-bottom : 2px;}
  522.  
  523. .circles:hover {
  524. border-top-right-radius:0px;
  525. border-bottom-right-radius:0px;
  526. border-top-left-radius:0px;
  527. border-bottom-left-radius:0px;
  528. -webkit-transition-duration: .6s;}
  529.  
  530.  
  531. {CustomCSS]</style>
  532.  
  533. </head>
  534. <body>
  535.  
  536. <div id="sidebar">
  537. <div class="button">
  538. <a href="/">home</a>
  539. <a href="/ask">message</a>
  540. <a href="/archive">archive</a>
  541. <a href="{text:link 1}">{text:Link 1 Title}</a>
  542. <a href="{text:link 2}">{text:Link 2 Title}</a>
  543. <a href="{text:link 3}">{text:Link 3 Title}</a>
  544. <a href="http://danateruel.tumblr.com">credit</a>
  545. </div>
  546.  
  547. </div>
  548.  
  549.  
  550.  
  551.  
  552.  
  553.  
  554.  
  555.  
  556.  
  557.  
  558.  
  559. <div id="cali">
  560.  
  561. <div id="fornia">
  562. <div id="shalala"><img src="{image:sidebar}"></div><br>
  563. <div style="text-align:left"><div class="rawr">The Princess</div></div></div>
  564. <div style="padding-left:7px; text-align:justify; color:{color:sidebar text}; font-family: 'Carrois Gothic SC', sans-serif;
  565. line-height:10px;">
  566. <div id="rogue">
  567. <center><img src="http://static.tumblr.com/rmj06l2/f83lo2to1/floral.jpg"></center>
  568. </div>
  569.  
  570. <div id="nah">
  571. {Description}
  572. </div>
  573.  
  574. <div id="rogue">
  575. <center><img style="writing-mode: lr-tb; -webkit-transform: rotate(180deg); -moz-transform: rotate(180deg); -ms-transform: rotate(180deg); -o-transform: rotate(180deg); transform: rotate(180deg); "src="http://static.tumblr.com/rmj06l2/f83lo2to1/floral.jpg"></center>
  576. </div>
  577.  
  578. </div>
  579. <br><br>
  580. <div id="fornia">
  581. <div id="wut">
  582. <div style="text-align:left;"><div class="rawr">Statistics</div></div>
  583. <div class="heart">{text:stat one}</div>
  584. <div class="heart">{text:stat two}
  585. </div>
  586. <div class="heart">{text:stat three}</div>
  587. <div class="heart">{text:stat four}</div><br>
  588.  
  589. <br>
  590.  
  591.  
  592.  
  593. </div>
  594. </div>
  595. </div>
  596.  
  597. <div id="picbar">
  598.  
  599. <table class="tble" cellspacing="2px"><tr>
  600. <td class="circles"><img src="http://static.tumblr.com/oct6d4x/YdUlxre08/1s1.jpg"/></td>
  601. </tr></table>
  602.  
  603. <table class="tble" cellspacing="2px"><tr>
  604. <td class="circles"><img src="http://static.tumblr.com/oct6d4x/X36lxre7q/1111.jpg" / ></td>
  605. </tr></table>
  606.  
  607. <table class="tble" cellspacing="2px"><tr>
  608. <td class="circles"><img src="http://media.tumblr.com/tumblr_mbexf6qEbP1r70c3v.jpg"/></td>
  609. </tr></table>
  610.  
  611. <table class="tble" cellspacing="2px"><tr>
  612. <td class="circles"><img src="http://static.tumblr.com/oct6d4x/NA7lxre8x/33.jpg"/></td>
  613. </tr></table>
  614.  
  615. <table class="tble" cellspacing="2px"><tr>
  616. <td class="circles"><img src="http://static.tumblr.com/oct6d4x/Dbglxre6o/32ed.png"/></td>
  617. </tr></table>
  618.  
  619.  
  620. </div>
  621.  
  622.  
  623. </div>
  624.  
  625.  
  626.  
  627.  
  628.  
  629.  
  630.  
  631.  
  632.  
  633.  
  634.  
  635.  
  636.  
  637.  
  638. <div id="cent">
  639.  
  640. {block:Posts}<div id="entry">
  641. {block:IndexPage}
  642. <div class="perma">
  643. <div id="permal">
  644. <a href="{permalink}" target="_blank">{NoteCount} </div>
  645.  
  646. <div id="permal"><a href="{ReblogURL}" target="_blank">Reblog</a></span></div></div>
  647.  
  648.  
  649.  
  650.  
  651. <div id="post">
  652.  
  653.  
  654.  
  655.  
  656. {block:Title}{Title}{/block:Title}
  657.  
  658. {block:Text}{Body}{/block:Text}
  659.  
  660. {block:Photo}
  661. <a href="{permalink}"><img src="{PhotoURL-500}" width="500"/></a>
  662. {/block:Photo}
  663.  
  664. {block:Photoset}
  665. {Photoset-500}
  666. {/block:Photoset}
  667.  
  668.  
  669. {block:Quote}
  670. {Quote}
  671. <div align="right">
  672. {block:Source}-{Source}{/block:Source}
  673. </div>
  674. {/block:Quote}
  675.  
  676.  
  677. {block:Video}
  678. {Video-500}<br>
  679. {PlayCountWithLabel}
  680. {/block:Video}
  681.  
  682.  
  683. {block:Link}
  684. <a href="{URL}" class="link" {Target}>{Name}</a><BR>
  685. {block:Description}{Description}{/block:Description}
  686. {/block:Link}
  687.  
  688. {block:Chat}
  689. {block:Lines}
  690. {block:Label}
  691. <br>{Label}
  692. {/block:Label}
  693. &nbsp;{Line}
  694. {/block:Lines}
  695. {/block:Chat}
  696.  
  697. {block:Audio}
  698. {AudioPlayerGrey}
  699. <br><div align="right">{block:Artist}
  700. Artist: {Artist}</div>
  701. {/block:Artist}<br>
  702. {block:Caption}{Caption}{/block:Caption}
  703. {/block:Audio}
  704.  
  705.  
  706. {block:Answer}
  707. {Asker} asked <b>{Question}</b><Br>
  708. {Answer}
  709. {/block:Answer}
  710.  
  711. {block:PermalinkPage}
  712. {block:Caption}
  713. {Caption}
  714. {/block:Caption}
  715. <br>
  716. {block:NoteCount}
  717. {NoteCount} notes
  718. {/block:NoteCount}
  719. <Br>
  720. {block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  721. {/block:PermalinkPage}
  722. </div>
  723.  
  724.  
  725.  
  726. {/block:Posts}
  727.  
  728.  
  729.  
  730. </div>
  731.  
  732. </body>
  733. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement