eiishethemes23

Lovely Lullaby Theme

Jan 23rd, 2012
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.41 KB | None | 0 0
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
  2. "http://www.w3.org/TR/html4/loose.dtd">
  3.  
  4. </*Lovely Lullaby Theme by verifiedsarcastic-fashionista.tumblr.com.
  5. Please don't remove credit!
  6. Please don't remove credit!
  7. Please don't remove credit!
  8. Please don't remove credit!
  9. Please don't remove credit!
  10. Please don't remove credit! */>
  11.  
  12. <html>
  13. <head>
  14.  
  15.  
  16. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  17.  
  18. <script type="text/javascript" src="scrolltopcontrol.js">
  19. </script>
  20.  
  21. <script type="text/javascript" src="http://static.tumblr.com/rs5pbx8/5D1lwv26j/love2.txt"></script>
  22.  
  23.  
  24.  
  25. <script type='text/javascript'>
  26.  
  27. //<![CDATA[
  28.  
  29. var rate = 20;
  30.  
  31. if (document.getElementById)
  32. window.onerror=new Function("return true")
  33.  
  34. var objActive; // The object which event occured in
  35. var act = 0; // Flag during the action
  36. var elmH = 0; // Hue
  37. var elmS = 128; // Saturation
  38. var elmV = 255; // Value
  39. var clrOrg; // A color before the change
  40. var TimerID; // Timer ID
  41.  
  42. if (document.all) {
  43. document.onmouseover = doRainbowAnchor;
  44. document.onmouseout = stopRainbowAnchor;
  45. }
  46. else if (document.getElementById) {
  47. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  48. document.onmouseover = Mozilla_doRainbowAnchor;
  49. document.onmouseout = Mozilla_stopRainbowAnchor;
  50. }
  51.  
  52. function doRainbow(obj)
  53. {
  54. if (act == 0) {
  55. act = 1;
  56. if (obj)
  57. objActive = obj;
  58. else
  59. objActive = event.srcElement;
  60. clrOrg = objActive.style.color;
  61. TimerID = setInterval("ChangeColor()",100);
  62. }
  63. }
  64.  
  65.  
  66. function stopRainbow()
  67. {
  68. if (act) {
  69. objActive.style.color = clrOrg;
  70. clearInterval(TimerID);
  71. act = 0;
  72. }
  73. }
  74.  
  75.  
  76. function doRainbowAnchor()
  77. {
  78. if (act == 0) {
  79. var obj = event.srcElement;
  80. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  81. obj = obj.parentElement;
  82. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  83. break;
  84. }
  85.  
  86. if (obj.tagName == 'A' && obj.href != '') {
  87. objActive = obj;
  88. act = 1;
  89. clrOrg = objActive.style.color;
  90. TimerID = setInterval("ChangeColor()",100);
  91. }
  92. }
  93. }
  94.  
  95.  
  96. function stopRainbowAnchor()
  97. {
  98. if (act) {
  99. if (objActive.tagName == 'A') {
  100. objActive.style.color = clrOrg;
  101. clearInterval(TimerID);
  102. act = 0;
  103. }
  104. }
  105. }
  106.  
  107.  
  108. function Mozilla_doRainbowAnchor(e)
  109. {
  110. if (act == 0) {
  111. obj = e.target;
  112. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  113. obj = obj.parentNode;
  114. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  115. break;
  116. }
  117.  
  118. if (obj.nodeName == 'A' && obj.href != '') {
  119. objActive = obj;
  120. act = 1;
  121. clrOrg = obj.style.color;
  122. TimerID = setInterval("ChangeColor()",100);
  123. }
  124. }
  125. }
  126.  
  127.  
  128. function Mozilla_stopRainbowAnchor(e)
  129. {
  130. if (act) {
  131. if (objActive.nodeName == 'A') {
  132. objActive.style.color = clrOrg;
  133. clearInterval(TimerID);
  134. act = 0;
  135. }
  136. }
  137. }
  138.  
  139.  
  140. function ChangeColor()
  141. {
  142. objActive.style.color = makeColor();
  143. }
  144.  
  145.  
  146. function makeColor()
  147. {
  148. // Don't you think Color Gamut to look like Rainbow?
  149.  
  150. // HSVtoRGB
  151. if (elmS == 0) {
  152. elmR = elmV; elmG = elmV; elmB = elmV;
  153. }
  154. else {
  155. t1 = elmV;
  156. t2 = (255 - elmS) * elmV / 255;
  157. t3 = elmH % 60;
  158. t3 = (t1 - t2) * t3 / 60;
  159.  
  160. if (elmH < 60) {
  161. elmR = t1; elmB = t2; elmG = t2 + t3;
  162. }
  163. else if (elmH < 120) {
  164. elmG = t1; elmB = t2; elmR = t1 - t3;
  165. }
  166. else if (elmH < 180) {
  167. elmG = t1; elmR = t2; elmB = t2 + t3;
  168. }
  169. else if (elmH < 240) {
  170. elmB = t1; elmR = t2; elmG = t1 - t3;
  171. }
  172. else if (elmH < 300) {
  173. elmB = t1; elmG = t2; elmR = t2 + t3;
  174. }
  175. else if (elmH < 360) {
  176. elmR = t1; elmG = t2; elmB = t1 - t3;
  177. }
  178. else {
  179. elmR = 0; elmG = 0; elmB = 0;
  180. }
  181. }
  182.  
  183. elmR = Math.floor(elmR).toString(16);
  184. elmG = Math.floor(elmG).toString(16);
  185. elmB = Math.floor(elmB).toString(16);
  186. if (elmR.length == 1) elmR = "0" + elmR;
  187. if (elmG.length == 1) elmG = "0" + elmG;
  188. if (elmB.length == 1) elmB = "0" + elmB;
  189.  
  190. elmH = elmH + rate;
  191. if (elmH >= 360)
  192. elmH = 0;
  193.  
  194. return '#' + elmR + elmG + elmB;
  195. }
  196.  
  197.  
  198.  
  199. //]]>
  200.  
  201. </script>
  202.  
  203.  
  204.  
  205. <script type="text/javascript">
  206.  
  207. //Created by Title bar Maker (http://www.bosiljak.hr/titlemaker)
  208.  
  209. function tb8_makeArray(n){
  210.  
  211. this.length = n;
  212.  
  213. return this.length;
  214.  
  215. }
  216.  
  217. tb8_messages = new tb8_makeArray(1);
  218.  
  219. tb8_messages[0] = "YOUR MESSAGE HERE";
  220.  
  221. tb8_rptType = 'infinite';
  222.  
  223. tb8_rptNbr = 5;
  224.  
  225. tb8_speed = 100;
  226.  
  227. tb8_delay = 2000;
  228.  
  229. var tb8_counter=1;
  230.  
  231. var tb8_currMsg=0;
  232.  
  233. var tb8_tekst ="";
  234.  
  235. var tb8_i=0;
  236.  
  237. var tb8_TID = null;
  238.  
  239. function tb8_pisi(){
  240.  
  241. tb8_tekst = tb8_tekst + tb8_messages[tb8_currMsg].substring(tb8_i, tb8_i+1);
  242.  
  243. document.title = tb8_tekst;
  244.  
  245. tb8_sp=tb8_speed;
  246.  
  247. tb8_i++;
  248.  
  249. if (tb8_i==tb8_messages[tb8_currMsg].length){
  250.  
  251. tb8_currMsg++; tb8_i=0; tb8_tekst="";tb8_sp=tb8_delay;
  252.  
  253. }
  254.  
  255. if (tb8_currMsg == tb8_messages.length){
  256. if ((tb8_rptType == 'finite') && (tb8_counter==tb8_rptNbr)){
  257.  
  258. clearTimeout(tb8_TID);
  259.  
  260. return;
  261.  
  262. }
  263.  
  264. tb8_counter++;
  265.  
  266. tb8_currMsg = 0;
  267.  
  268. }
  269.  
  270. tb8_TID = setTimeout("tb8_pisi()", tb8_sp);
  271.  
  272. }
  273.  
  274. tb8_pisi()
  275.  
  276.  
  277.  
  278. </script>
  279.  
  280.  
  281.  
  282.  
  283. <!-- DEFAULT COLORS -->
  284. <meta name="color:background" content="#FFFFFF"/>
  285. <meta name="color:posts" content="#FFFFFF"/>
  286. <meta name="color:text" content="#444444"/>
  287. <meta name="color:text headers" content="#BEBEBE"/>
  288. <meta name="color:bold text" content="#696969"/>
  289. <meta name="color:link" content="#5a5a5a"/>
  290. <meta name="color:link hover" content="#ffffff"/>
  291. <meta name="color:notes text link" content="#000000"/>
  292. <meta name="color:notes text link hover" content="#ffffff"/>
  293. <meta name="color:nav text link" content="#4e4e4e"/>
  294. <meta name="color:nav text link hover" content="#eeeeee"/>
  295. <meta name="color:nav background" content="#FFFFFF"/>
  296. <meta name="color:nav background hover" content="#FFC0CB"/>
  297. <meta name="color:tiny heart" content="#FFB6C1"/>
  298. <meta name="image:Background" content="" />
  299. <meta name="image:Portrait" content=""/>
  300. <meta name="image:Header" content=""/>
  301. <meta name="text:Custom Link One" content="" />
  302. <meta name="text:Custom Link One Title" content="" />
  303. <meta name="text:Custom Link Two" content="" />
  304. <meta name="text:Custom Link Two Title" content="" />
  305. <meta name="text:Custom Link Three" content="" />
  306. <meta name="text:Custom Link Three Title" content="" />
  307.  
  308.  
  309. <title>{Title}</title>
  310. <link rel="stylesheet" href="http://static.tumblr.com/usaykzx/o8Bku9w35/reset.css" type="text/css" />
  311. <link rel="shortcut icon" href="{Favicon}">
  312. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  313. {block:Description}
  314. <meta name="description" content="{MetaDescription}" />
  315. {/block:Description}
  316.  
  317. </head>
  318.  
  319. <style type="text/css">
  320.  
  321.  
  322.  
  323. ::-webkit-scrollbar-thumb:vertical {background-color:#FF69B4;height:100px;}
  324.  
  325. ::-webkit-scrollbar-thumb:horizontal {background-color:#FF69B4;height:10px !important;}
  326.  
  327. ::-webkit-scrollbar { height:10px;width:15px; background-color:#fff;}
  328.  
  329.  
  330.  
  331. small{font-size:100%;}
  332. body{
  333. margin-top: 10px;
  334. text-align:justify;
  335. text-transform:;
  336. color: {color:text};
  337. font-family: arial;
  338. font-size: 9px;
  339. line-height: 10px;
  340. background-color:{color:background};
  341. background-image:url({image:Background});
  342. background-attachment: fixed;
  343. background-position:top center;
  344. background-repeat: repeat;}
  345.  
  346. a:link, a:visited, a:active{color: {color:link}; text-decoration:none;
  347. font-family: arial;
  348. font-size: 9px; line-height:12px; }
  349. a:hover{border-bottom:0px ; color:{color:link hover}; font-family: arial;
  350. font-size: 9px; line-height:12px;}
  351.  
  352. @font-face {
  353. font-family: 'LeagueGothicRegular';
  354. src: url('http://static.tumblr.com/usaykzx/xyTky45d1/league_gothic.eot');
  355. src: local('League Gothic Regular'), local('LeagueGothic'),
  356. url('http://static.tumblr.com/usaykzx/pheky45df/league_gothic.ttf') format('truetype'); }
  357.  
  358. b, strong{color: {color:bold text};
  359. font-family: arial;
  360. font-size: 9px; line-height:12px;}
  361.  
  362. #wtf {
  363. color: {color:text};
  364. font-family: arial;
  365. font-size: 9px;
  366. line-height: 10px;
  367. position:absolute;
  368. left:50%;
  369. width:416px;
  370. background-color: transparent;
  371. padding: 0px;
  372. overflow:hidden;
  373. margin: 0px 0px 0px -90px;}
  374.  
  375.  
  376. #entry {
  377. background-color:{color:posts};
  378. border: 4px solid {color:posts};
  379. float:left;
  380.  
  381. {block:IndexPage}
  382.  
  383. width:400px;
  384. height: auto;
  385. overflow:hidden;
  386. {/block:IndexPage}
  387.  
  388. {block:PermalinkPage}
  389. width:400px;
  390. margin:4px;
  391. margin-bottom: 6px;
  392. {/block:PermalinkPage}
  393.  
  394. background-image:url();
  395. background-attachment: scroll;
  396. background-position:top center;
  397. background-repeat: repeat;
  398. padding:0px;
  399. margin:4px;
  400. margin-bottom: 20px; }
  401.  
  402.  
  403.  
  404. #info{
  405. background-color:{color:posts};
  406. float: left;
  407. margin: 4px;
  408. width:400px;
  409. padding:4px;
  410. margin-top: -12px;}
  411.  
  412. #notes{
  413. background-color:{color:posts};
  414. display:block;
  415. width:400px;
  416. float:left;
  417. padding:4px;
  418. margin: 4px;}
  419.  
  420. p{
  421. margin-top:0px;
  422. margin-bottom:0px;}
  423.  
  424. #question{
  425. border-bottom:1px dotted {color:dots};
  426. overflow:SHOW;
  427. padding-bottom:3px;
  428. margin-bottom:3px;}
  429.  
  430. #askr{
  431. display:block;
  432. float:left;
  433. width:33px;
  434. overflow:hidden;
  435. margin-right:3px;}
  436.  
  437. .label {font-weight:bold;}
  438. ul.chat, .chat ol, .chat li {list-style:none; margin:0px; padding:0px;}
  439. blockquote{padding:0px; padding-left:5px; margin:5px; border-left:1px dotted {color:dots};}
  440. blockquote img{display:block; width:100%;}
  441. blockquote p{padding:0px; margin:0px;}
  442. blockquote blockquote{position:relative; left:-2px; margin-top:0px; margin-right:0px; padding-right:0px;}
  443.  
  444. {block:IndexPage}#entry img, #entry object{margin-top:0px;}{/block:IndexPage}
  445.  
  446. {block:IndexPage}#entry img{ width:400px; margin-left:0px;} {/block:IndexPage}
  447.  
  448. {block:IndexPage}#entry object{width:400px; margin-left:0px; }{/block:IndexPage}
  449.  
  450. {block:PermalinkPage}#entry object{width:400px; margin-top:0px;}{/block:PermalinkPage}
  451.  
  452. {block:PermalinkPage}#entry img{width: 400px;}{/block:PermalinkPage}
  453.  
  454.  
  455. #bottominfo{
  456. border-top:1px dotted {color:dots};
  457. padding:2px 0px 0px 0px;
  458. display:block;
  459. }
  460. .answer p{margin:0px;}
  461. .notes img{
  462. width:10px;
  463. position:relative;
  464. top:1px;
  465. }
  466. ol.notes, .notes li{
  467. list-style:none;
  468. margin:0px;
  469. padding:0px;
  470. }
  471.  
  472. small {font-size:100%; line-height:90%;}
  473. big {font-family:arial black; color:{color:text headers}; font-size:28px;}
  474.  
  475. .audioinfo{
  476. display:block;
  477. margin-left:0px;
  478. margin-top: 0px;
  479. margin-bottom: 4px;
  480. text-align: left;
  481. height:10px;
  482. padding:0px;
  483. background-color: {color:nav background};}
  484.  
  485.  
  486. .audio{display:block; background-color:white; z-index:-2;}
  487.  
  488. a img{border:none;}
  489. #video object{position:relative; top:-20px;}
  490. #video{overflow:hidden;}
  491.  
  492.  
  493. .label {
  494. color: {color:bold text};font-weight: bold;
  495. font-family: arial;
  496. font-size: 9px; line-height:12px;}
  497.  
  498. .odd {
  499. background-color: {color:nav background};}
  500.  
  501. a.date {
  502. color: {color:notes text link};
  503. font-family: arial;
  504. line-height:7px;
  505. font-size: 9px;
  506. letter-spacing: 0px;
  507. z-index:4;
  508. display: block;
  509. padding: 1px;
  510. margin-left: -4px;
  511. margin-top: 4px;
  512. position:absolute;
  513. width: ;
  514. height:8px;
  515. text-align: center;
  516. background-color: transparent;
  517. background-image:url();
  518. border: 1px solid transparent;}
  519.  
  520. a.date:hover {color:{color:notes text link hover};}
  521.  
  522.  
  523. a.date2 {
  524. color: {color:notes text link};
  525. font-family: arial;
  526. line-height:7px;
  527. font-size: 9px;
  528. letter-spacing: 0px;
  529. z-index:4;
  530. display: block;
  531. padding: 1px;
  532. margin-left: 368px;
  533. margin-top: 4px;
  534. position:absolute;
  535. width: auto;
  536. height:8px;
  537. text-align: right;
  538. background-color:transparent;
  539. background-image:url();
  540. border: 1px solid transparent;}
  541.  
  542. a.date2:hover {color:{color:notes text link hover};}
  543.  
  544.  
  545. h1 {
  546. color: {color:text headers};
  547. font-size: 52px;
  548. line-height: 46px;
  549. font-family: "LeagueGothicRegular", "HelveticaNeue-CondensedBold", "Franklin Gothic Demi Cond", "Franklin Gothic Medium Cond";
  550. text-transform: uppercase;
  551. letter-spacing: -2px;}
  552.  
  553. h2 {
  554. color: {color:text headers};
  555. font-size: 28px;
  556. line-height: 28px;
  557. font-family: "LeagueGothicRegular", "HelveticaNeue-CondensedBold", "Franklin Gothic Demi Cond", "Franklin Gothic Medium Cond";
  558. text-transform: uppercase;
  559. letter-spacing: -2px;}
  560.  
  561. #lefthold {
  562. background-color: transparent;
  563. width: 208px;
  564. overflow:hidden;
  565. position:fixed;
  566. top: 9px;
  567. padding:5px;
  568. left:50%;
  569. margin: 0px 0px 0px -330px;}
  570.  
  571. #left {
  572. font: 9px arial;
  573. line-height: 10px;
  574. height:auto;
  575. background-color:{color:posts};
  576. padding: 6px;
  577. width: 200px;}
  578.  
  579. a.links {
  580. margin-bottom: 4px;
  581. margin-right: 0px;
  582. margin-top: 2px;
  583. font-family: arial;
  584. font-weight: bold;
  585. font-size: 10px;
  586. letter-spacing:-1px;
  587. color:{color:nav text link};
  588. line-height:auto;
  589. display: block;
  590. width: auto;
  591. background-color: {color:nav background};}
  592.  
  593. a.links:hover {
  594. color:{color:nav text link hover};
  595. background-color: {color:nav background hover};}
  596.  
  597. #top{
  598. z-index:9;
  599. font-size:9px;
  600. display:block;
  601. margin-left: 4px;
  602. right: 50%;
  603. width: 410px;
  604. background: transparent;}
  605.  
  606.  
  607.  
  608. div.botright{
  609. -moz-border-radius:10px; border-radius:10px;
  610. z-index:9;
  611. font-size:9px;
  612. display:block;
  613. position: fixed;
  614. left:-14px;
  615. top:0px;
  616. padding:6px;
  617. padding-left:20px;
  618. background-image:url(http://static.tumblr.com/j4dtzbm/8uGlg5ccf/transparentg.png);
  619. background-color: transparent;}
  620. {CustomCSS}
  621. </style>
  622.  
  623. <body>
  624.  
  625.  
  626. <!—tutorial by swagtasticable—>
  627.  
  628. <style type="text/css">
  629.  
  630. #gb{
  631.  
  632. position:fixed;
  633.  
  634. top:30px;
  635.  
  636. z-index:+1000;
  637.  
  638. }
  639.  
  640. * html #gb{position:relative;}
  641.  
  642. .gbtab{
  643.  
  644. height:100px;
  645.  
  646. width:30px;
  647.  
  648. float:left;
  649.  
  650. cursor:pointer;
  651.  
  652. background:url("http://3.bp.blogspot.com/-nzL6xB45YbM/TpxuqJpjBZI/AAAAAAAAAYw/HznwQxRv2Sg/s1600/th_mmamv4.gif") no-repeat;
  653.  
  654. }
  655.  
  656. .gbcontent{
  657.  
  658. float:left;
  659.  
  660. border:2px solid #f2e7e2;
  661.  
  662. background:#fcfbf8;
  663.  
  664. padding:10px;
  665.  
  666. }
  667.  
  668. </style>
  669.  
  670. <script type="text/javascript">
  671.  
  672. function showHideGB(){
  673.  
  674. var gb = document.getElementById("gb");
  675.  
  676. var w = gb.offsetWidth;
  677.  
  678. gb.opened ? moveGB(0, 30-w) : moveGB(20-w, 0);
  679.  
  680. gb.opened = !gb.opened;
  681.  
  682. }
  683.  
  684. function moveGB(x0, xf){
  685.  
  686. var gb = document.getElementById("gb");
  687.  
  688. var dx = Math.abs(x0-xf) > 10 ? 5 : 1;
  689.  
  690. var dir = xf>x0 ? 1 : -1;
  691.  
  692. var x = x0 + dx * dir;
  693.  
  694. gb.style.right = x.toString() + "px";
  695.  
  696. if(x0!=xf){setTimeout("moveGB("+x+", "+xf+")", 40);}
  697.  
  698. }
  699.  
  700. </script>
  701.  
  702. <div id="gb">
  703.  
  704. <div class="gbtab" onclick="showHideGB()"> </div>
  705.  
  706. <div class="gbcontent">
  707.  
  708. <font size="2"> YOUR MESSAGE HERE</font>
  709.  
  710. <div style="text-align:right">
  711.  
  712. <a href="javascript:showHideGB()">
  713.  
  714. </a>
  715.  
  716. </div>
  717.  
  718. </div>
  719.  
  720. </div>
  721.  
  722. <script type="text/javascript">
  723.  
  724. var gb = document.getElementById("gb");
  725.  
  726. gb.style.right = (30-gb.offsetWidth).toString() + "px";
  727.  
  728. </script>
  729.  
  730. <!—tutorial by swagtasticable—>
  731.  
  732.  
  733. <div class="botright">
  734. <b>Theme By:</b> <a href="http://verifiedsarcastic-fashionista.tumblr.com/"><font color="ffffff">verifiedsarcastic-fashionista</font></a><br>
  735. <b>Powered By:</b> <a href="http://tumblr.com"><font color="ffffff">Tumblr</font></a>
  736. </div>
  737.  
  738. <div id="wtf">
  739. <div id="top">
  740. {block:IfHeaderImage}<center>
  741. <img src="{image:Header}" width="408" /></center><br>{/block:IfHeaderImage}</div>
  742.  
  743. <div id="lefthold">
  744. <div id="left"><center><h1>{Title}</h1>
  745. {block:IfPortraitImage}<img src="{image:Portrait}" width="200"/>{/block:IfPortraitImage}
  746.  
  747. <a href="/" class="links"><img src="http://media.tumblr.com/tumblr_lkl6tsiCGt1qfamg6.gif">Home</a>
  748. {block:AskEnabled}<a href="/ask" class="links"><img src="http://media.tumblr.com/tumblr_lkl6tsiCGt1qfamg6.gif">Ask</a>{/block:AskEnabled}
  749. {block:SubmissionsEnabled}<a href="/submit" class="links"><img src="http://media.tumblr.com/tumblr_lkl6tsiCGt1qfamg6.gif">Submit</a>{/block:SubmissionsEnabled}
  750. <a href="/archive" class="links"><img src="http://media.tumblr.com/tumblr_lkl6tsiCGt1qfamg6.gif">Archive</a>
  751.  
  752. {block:ifCustomLinkOneTitle}<a href="{text:Custom Link One}" class="links">{text:Custom Link One Title}</a>{/block:ifCustomLinkOneTitle}
  753.  
  754. {block:ifCustomLinkTwoTitle}<a href="{text:Custom Link Two}" class="links">{text:Custom Link Two Title}</a>{/block:ifCustomLinkTwoTitle}
  755.  
  756. {block:ifCustomLinkThreeTitle}<a href="{text:Custom Link Three}"class="links">{text:Custom Link Three Title}</a>{/block:ifCustomLinkThreeTitle}
  757. </center>
  758. {block:Description}{Description}{/block:Description}
  759. </div><br>
  760.  
  761. {block:Pagination}<div id="left"><center>
  762. {block:PreviousPage}<a href="{PreviousPage}"><big>&laquo;</big></a>{/block:PreviousPage} {block:NextPage}<a href="{NextPage}"><big>&raquo;</big></a>{/block:NextPage}</center></div><br>{/block:Pagination}
  763.  
  764.  
  765.  
  766. </div>
  767.  
  768.  
  769.  
  770. <div class="autopagerize_page_element">
  771. {block:Posts}<div id="entry">
  772. {block:Text}<h2>{Title}</h2>{Body}{/block:Text}
  773.  
  774. {block:Photo}
  775. <center>{block:IndexPage}<a href="{permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"/></a></center>{block:Caption}{Caption}{/block:Caption}{/block:IndexPage}{block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}{/block:PermalinkPage}{/block:Photo}
  776.  
  777. {block:Photoset}<center>{block:IndexPage}{Photoset-500}{/block:IndexPage}{block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}</center>{block:PermalinkPage}{/block:PermalinkPage}{/block:Photoset}
  778.  
  779. {block:Quote}<h2>"{Quote}"</h2>{block:Source}{Source}{/block:Source}{/block:Quote}
  780.  
  781. {block:Link}<a href="{URL}" class="link" {Target}><h2>{Name}</h2></a>{block:Description}{Description}{/block:Description}{/block:Link}
  782.  
  783. {block:Chat}
  784. {block:Title}{Title}{/block:Title}
  785. {block:Lines}
  786. {block:Label}
  787. <div class="{Alt}"><span class="label"><strong>{Label}</strong></span>
  788. <span class="line">{Line}</span></div>
  789. {/block:Label}
  790. {/block:Lines}
  791. {/block:Chat}
  792.  
  793. {block:Video}<center>{block:IndexPage}{Video-400}{/block:IndexPage}
  794. {block:PermalinkPage}{Video-400}{/block:PermalinkPage}</center>{/block:Video}
  795.  
  796. {block:Audio}<span class="audio">{AudioPlayerWhite}</span><br>
  797.  
  798. <table width="400" border="0" cellspacing="0" cellpadding="0">
  799. <tr>
  800. <td rowspan="3"></td>
  801. <td height="10"><span class="audioinfo"><b>Artist:</b> {block:Artist}{Artist}{/block:Artist}</span></td>
  802. </tr>
  803. <tr>
  804. <td height="10"><span class="audioinfo"><b>Song:</b> {block:TrackName}{TrackName}{/block:TrackName}</span></td>
  805. </tr>
  806. <tr>
  807. <td height="10"><span class="audioinfo"><b>Album:</b> {block:Album}{Album}{/block:Album}</span></td>
  808. </tr>
  809. </table>
  810. {/block:Audio}
  811.  
  812. {block:Answer}
  813. <b>{Asker} Asked:</b> "{Question}"<br><br>
  814. <b>Answer:</b> {Answer}
  815. {/block:Answer}
  816.  
  817. {block:IndexPage}
  818. <a href="{Permalink}" class="date"><font color="{color:tiny heart}">&hearts;</font> {block:NoteCount} {NoteCount} Notes{/block:NoteCount} / {ShortDayOfWeek} {ShortMonth} {DayOfMonth}{DayOfMonthSuffix}, {Year}</a> <a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" class="date2"><font color="{color:tiny heart}">&equiv;</font> reblog</a>
  819.  
  820. {/block:IndexPage}
  821.  
  822. </div>
  823.  
  824. {block:PermalinkPage}{block:Date}<div id="info">{block:Caption}{Caption}{/block:Caption}<div id="bottominfo">
  825. Posted: <a href="/day/{year}/{monthnumberwithzero}/{dayofmonthwithzero}">{ShortDayOfWeek} {Month} {DayOfMonth}{DayOfMonthSuffix}, {Year}</a> at {12Hour}:{Minutes}{AmPm}{block:RebloggedFrom}<br>Originally posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>.{/block:RebloggedFrom}
  826.  
  827. {block:Photo}{block:HighRes}<br>HighRes: <a href="{PhotoURL-HighRes}">view</a>{/block:HighRes}{/block:Photo}
  828.  
  829. {block:Answer}<BR>Ask: <a href="/ask">{AskLabel}</a>{/block:Answer}
  830.  
  831. {block:Audio}<BR>Plays: {FormattedPlayCount}{block:ExternalAudio}<BR>Download: <a href="{ExternalAudioURL}">here</a>.{/block:ExternalAudio}{/block:Audio}
  832.  
  833. {block:HasTags}<BR>Tagged: {block:Tags}<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}{block:NoteCount}<BR>Notes: {NoteCount}{/block:NoteCount}
  834. </div></div> {/block:Date}{/block:PermalinkPage}
  835.  
  836.  
  837. {/block:Posts}
  838. </div>
  839. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  840. <center><img src="http://img121.imageshack.us/img121/1582/transparentz.png" width="400" height="20"></center>
  841. </div>
  842.  
  843. </body>
  844. </html>
Advertisement
Add Comment
Please, Sign In to add comment