ellaclair

It's Simple as that

Oct 14th, 2011
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.53 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4. <!---PLEASE DO NOT REMOVE THIS CREDIT---!>
  5. <!---Theme by http://www.ellaclair.tumblr.com---!>
  6. <!---Theme name : "It's simple as that"-->
  7. <!---base theme by pimp my profile---!>
  8. <!---PLEASE DO NOT REMOVE THIS CREDIT---!>
  9.  
  10.  
  11. <HEAD>
  12.  
  13. <script type="text/javascript">
  14. // <![CDATA[
  15. var colour3="#C25283";
  16. var colour="#FAAFBE";
  17. var sparkles=80;
  18.  
  19. /******************************
  20. * Tinkerbell Magic Sparkle *
  21. * (c) 2005 mf2fm web-design *
  22. * http://www.mf2fm.com/rv *
  23. * Generated at pnoyonline.com *
  24. * tumblr layouts - pnoyonline *
  25. * DON'T EDIT BELOW THIS BOX *
  26. ****************************/
  27. var x=ox=400;
  28. var y=oy=300;
  29. var swide=800;
  30. var shigh=600;
  31. var sleft=sdown=0;
  32. var tiny=new Array();
  33. var star=new Array();
  34. var starv=new Array();
  35. var starx=new Array();
  36. var stary=new Array();
  37. var tinyx=new Array();
  38. var tinyy=new Array();
  39. var tinyv=new Array();
  40.  
  41. window.onload=function() { if (document.getElementById) {
  42. var i, rats, rlef, rdow;
  43. for (var i=0; i<sparkles; i++) {
  44. var rats=createDiv(3, 3);
  45. rats.style.visibility="hidden";
  46. document.body.appendChild(tiny[i]=rats);
  47. starv[i]=0;
  48. tinyv[i]=0;
  49. var rats=createDiv(5, 5);
  50. var rats=createDiv3(5, 5);
  51.  
  52. rats.style.backgroundColor="transparent";
  53. rats.style.visibility="hidden";
  54. var rlef=createDiv(1, 5);
  55. var rlef=createDiv3(1, 5);
  56. var rdow=createDiv(5, 1);
  57. var rdow=createDiv3(5, 1);
  58. rats.appendChild(rlef);
  59. rats.appendChild(rdow);
  60. rlef.style.top="2px";
  61. rlef.style.left="0px";
  62. rdow.style.top="0px";
  63. rdow.style.left="2px";
  64. document.body.appendChild(star[i]=rats);
  65. }
  66. set_width();
  67. sparkle();
  68. }}
  69.  
  70. function sparkle() {
  71. var c;
  72. if (x!=ox || y!=oy) {
  73. ox=x;
  74. oy=y;
  75. for (c=0; c<sparkles; c++) if (!starv[c]) {
  76. star[c].style.left=(starx[c]=x)+"px";
  77. star[c].style.top=(stary[c]=y)+"px";
  78. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  79. star[c].style.visibility="visible";
  80. starv[c]=50;
  81. break;
  82. }
  83. }
  84. for (c=0; c<sparkles; c++) {
  85. if (starv[c]) update_star(c);
  86. if (tinyv[c]) update_tiny(c);
  87. }
  88. setTimeout("sparkle()", 40);
  89. }
  90.  
  91. function update_star(i) {
  92. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  93. if (starv[i]) {
  94. stary[i]+=1+Math.random()*3;
  95. if (stary[i]<shigh+sdown) {
  96. star[i].style.top=stary[i]+"px";
  97. starx[i]+=(i%5-2)/5;
  98. star[i].style.left=starx[i]+"px";
  99. }
  100. else {
  101. star[i].style.visibility="hidden";
  102. starv[i]=0;
  103. return;
  104. }
  105. }
  106. else {
  107. tinyv[i]=50;
  108. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  109. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  110. tiny[i].style.width="2px";
  111. tiny[i].style.height="2px";
  112. star[i].style.visibility="hidden";
  113. tiny[i].style.visibility="visible"
  114. }
  115. }
  116.  
  117. function update_tiny(i) {
  118. if (--tinyv[i]==25) {
  119. tiny[i].style.width="1px";
  120. tiny[i].style.height="1px";
  121. }
  122. if (tinyv[i]) {
  123. tinyy[i]+=1+Math.random()*3;
  124. if (tinyy[i]<shigh+sdown) {
  125. tiny[i].style.top=tinyy[i]+"px";
  126. tinyx[i]+=(i%5-2)/5;
  127. tiny[i].style.left=tinyx[i]+"px";
  128. }
  129. else {
  130. tiny[i].style.visibility="hidden";
  131. tinyv[i]=0;
  132. return;
  133. }
  134. }
  135. else tiny[i].style.visibility="hidden";
  136. }
  137.  
  138. document.onmousemove=mouse;
  139. function mouse(e) {
  140. set_scroll();
  141. y=(e)?e.pageY:event.y+sdown;
  142. x=(e)?e.pageX:event.x+sleft;
  143. }
  144.  
  145. function set_scroll() {
  146. if (typeof(self.pageYOffset)=="number") {
  147. sdown=self.pageYOffset;
  148. sleft=self.pageXOffset;
  149. }
  150. else if (document.body.scrollTop || document.body.scrollLeft) {
  151. sdown=document.body.scrollTop;
  152. sleft=document.body.scrollLeft;
  153. }
  154. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  155. sleft=document.documentElement.scrollLeft;
  156. sdown=document.documentElement.scrollTop;
  157. }
  158. else {
  159. sdown=0;
  160. sleft=0;
  161. }
  162. }
  163.  
  164. window.onresize=set_width;
  165. function set_width() {
  166. if (typeof(self.innerWidth)=="number") {
  167. swide=self.innerWidth;
  168. shigh=self.innerHeight;
  169. }
  170. else if (document.documentElement && document.documentElement.clientWidth) {
  171. swide=document.documentElement.clientWidth;
  172. shigh=document.documentElement.clientHeight;
  173. }
  174. else if (document.body.clientWidth) {
  175. swide=document.body.clientWidth;
  176. shigh=document.body.clientHeight;
  177. }
  178. }
  179.  
  180. function createDiv(height, width) {
  181. var div=document.createElement("div");
  182. div.style.position="absolute";
  183. div.style.height=height+"px";
  184. div.style.width=width+"px";
  185. div.style.overflow="hidden";
  186. div.style.backgroundColor=colour;
  187. return (div);
  188. }
  189.  
  190.  
  191. function createDiv3(height, width) {
  192. var div=document.createElement("div");
  193. div.style.position="absolute";
  194. div.style.height=height+"px";
  195. div.style.width=width+"px";
  196. div.style.overflow="hidden";
  197. div.style.backgroundColor=colour3;
  198. return (div);
  199. }
  200. // ]]>
  201. </script>
  202. <style type="text/css">
  203.  
  204. img{
  205. -webkit-transition: opacity 0.8s linear;
  206. opacity: 0.60;
  207. }
  208. img:hover{
  209. -webkit-transition: opacity 0.8s linear;
  210. opacity: 1;
  211. }
  212.  
  213.  
  214. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  215. <meta name="description" content="{MetaDescription}" />
  216. <title> {title}</title>
  217. <link rel=”shortcut icon” href=http://dl6.glitter-graphics.net/pub/638/638146kvkkfs33zm.gif” />
  218. <link rel="shortcut icon" href="{favicon}">
  219. <pnk rel="alternate" type="application/rss+xml" href="{RSS}">
  220. <!-- Default Colors -->
  221. <META name="color:Background Color" content="#000000">
  222. <META name="color:Post Background" content="#C0C0C0">
  223. <META name="color:header background" content="transparent">
  224. <META name="color:header font" content="#C0C0C0">
  225. <META name="color:image border" content="#C0C0C0">
  226. <META name="color:font color" content="#000000">
  227. <META name="color:link color" content="#000000">
  228. <META name="color:link hover" content="##000000">
  229. <META name="color:Notes Border" content="#C0C0C0">
  230. <META name="color:post title font" content="#C0C0C0">
  231. <META name="color:Bold font" content="#C0C0C0">
  232. <META name="color:nav bg" content="#000000">
  233. <META name="color:nav hover" content="#F660AB">
  234.  
  235. <!-- End Default Colors -->
  236.  
  237. <meta name="if:ShowPostDetails" content="1"/>
  238. <meta name="if:ShowReblogLink" content="1"/>
  239. <meta name="if:ShowTagLink" content="1"/>
  240.  
  241.  
  242. <style type="text/css">
  243.  
  244. img{
  245. -webkit-transition: opacity 0.8s linear;
  246. opacity: 0.60;
  247. }
  248. img:hover{
  249. -webkit-transition: opacity 0.8s linear;
  250. opacity: 1;
  251. }
  252. @charset "utf-8";
  253. body {
  254. background-color: {color:Background Color};
  255. background-image:url(http://www.backgroundlabs.com/backgrounds/219.jpg);
  256. background-repeat: repeat;
  257. background-attachment: fixed;
  258. background-position: Center Center;
  259. cursor: url("http://30.media.tumblr.com/tumblr_lqpwvugFln1qkrnqzo1_100.gif"), default;
  260. }
  261.  
  262.  
  263. /* Links */
  264. a:link, a:visited, a:active {
  265. color: {color:link color};
  266. text-decoration:none;
  267.  
  268. }
  269.  
  270. a:hover {
  271. color: {color:link hover};
  272. text-decoration:none;
  273.  
  274. }
  275. /* Text Effect */
  276. b {
  277.  
  278. color:#000000;}
  279. strong {
  280.  
  281. color: #000000;}
  282.  
  283. i {
  284.  
  285. color: #000000;}
  286.  
  287. u {
  288.  
  289. font-color:#000000;
  290.  
  291. }
  292. /* Navigation */
  293. a.links{
  294. font-weight:none;
  295. text-decoration:underline;
  296. display:block;
  297. font-family: 'Julee', cursive;
  298. font-size:11px;
  299. background-color:transparent;
  300. border: 0px solid {color:header background};
  301. text-align:left;
  302. padding:2 0 2 0; width:185px;
  303. }
  304. a.links:hover{
  305. font-weight:none;
  306. text-decoration:none;
  307. display:block;
  308. font-family: 'Sansita One', cursive;
  309. font-size:11px;
  310. background-color:{color:nav bg};
  311. border: 0px solid 000000;
  312. text-align:left;
  313. padding:2 0 2 0; width:185px;
  314.  
  315. }
  316. /* Table */
  317. #table {
  318. background:transparent;
  319. font-family: 'Sansita One', cursive;
  320. font-size: 11px;
  321. color: #000000;
  322. text-align:justify;
  323. width:700px;
  324. padding:10px;
  325. margin:0 auto;
  326. }
  327. /* Post */
  328. #each {
  329. background-color:#FDEEF4;
  330. background-image:url(none);
  331. padding:5px;
  332. margin:5px 0px 5px 0px;
  333. -moz-border-radius: 4px;
  334. -webkit-border-radius: 4px;
  335. }
  336.  
  337.  
  338. /* Bullets */
  339. table ul li {
  340. margin-right:2px;
  341. margin-left:5px;
  342. list-style-image: url(http://dl5.glitter-graphics.net/pub/638/638145bltz6zqhdo.gif);
  343. }
  344. /* Columns */
  345. #post { width: 450px; float:right;
  346. }
  347. #right { width: 200px; float:left;
  348. }
  349. /* Headers */
  350. h1 {
  351. margin:0;
  352. color:#000000;
  353. font-family: ''Sansita One', cursive;
  354. font-weight:normal;
  355. font-style: italic;
  356. font-size:20px;
  357. line-height:17px;
  358. letter-spacing:0px;
  359. }
  360. .header2 {
  361. background-color:#FBBBB9;
  362. font-size: 16px;
  363. font-family: 'Mv Boli', arial, serif;
  364. font-weight:normal;
  365. text-transform: normal;
  366. letter-spacing: 0px;
  367. line-height: 12px;
  368. text-align: left;
  369. margin-bottom: 5px;
  370. margin-top: 5px;
  371. }
  372. .header {
  373. background-color:#FBBBB9;
  374. font-size: 16px;
  375. font-family: 'Sansita One', cursive;
  376. font-weight:normal;
  377. text-transform: normal;
  378. letter-spacing: 0px;
  379. line-height: 12px;
  380. text-align: left;
  381. margin-bottom: 5px;
  382. margin-top: 5px;
  383.  
  384. }
  385. .tumblrdate {
  386. padding: 5px 0 0 0;
  387. font-family: Trebuchet Ms;
  388. text-transform: normal;
  389. font-size:11px;
  390. }
  391. /* Post Blockquote */
  392. blockquote{
  393. border-left-width: 5px;
  394. border-left-style: solid;
  395. border-left-color:{color:Notes Border};
  396. padding:1px; padding-left: 5px; margin: 0px;
  397. }
  398.  
  399. /* Notes */
  400. ol.notes {
  401. padding: 0px;
  402. margin: 15px 0px;
  403. list-style-type: none;
  404. border-bottom: solid 0px {color:Notes Border};
  405. }
  406. ol.notes li.note {
  407. border-top: solid 0px {color:Notes Border};
  408. padding: 5px;
  409. }
  410. ol.notes li.note img.avatar {
  411. vertical-align: -4px;
  412. margin-right: 10px;
  413. width: 16px;
  414. height: 16px;
  415. }
  416. ol.notes li.note span.action {
  417. font-weight: bold;
  418. }
  419. ol.notes li.note .answer_content {
  420. font-weight: normal;
  421. }
  422. ol.notes li.note blockquote {
  423. border-color: {color:Notes Border};
  424. padding: 4px 10px;
  425. margin: 10px 0px 0px 25px;
  426. }
  427. ol.notes li.note blockquote a {
  428. text-decoration: none;
  429. }
  430.  
  431. {CustomCSS}
  432. </style>
  433.  
  434. </head>
  435. <body>
  436. <table id="table">
  437. <tr><td id="none" colspan="3">
  438.  
  439. </td></tr>
  440. </td><td id="right">
  441. <div style="width: 200px;">
  442.  
  443. <br>
  444. <div id="each">
  445. <!-- About Me -->
  446. <center><img src="http://i1044.photobucket.com/albums/b443/cutesecrets/themediary/aboutme/aboutme01.png"></center>
  447. <center><a href="/"><img style="border:0px solid 000000" src="{PortraitURL-128}" width="128"></a>
  448.  
  449. <br><div style="width: 180px;">
  450. {description}</div></div>
  451.  
  452.  
  453. <div id="each">
  454.  
  455. <!-- Navigation -->
  456.  
  457. <div class="header2"><b>Navigation</b></div>
  458.  
  459. <center>
  460.  
  461. <a href="/home" class="links"><span color="000000">Home</spam><a>
  462. <a href="/ask" class="links">Ask Me</a>
  463. <a href="/archive" class="links"><span color="000000">Archive</span></a>
  464. <a href="/random" class="links">Random</a>
  465. <a href="http://www.ellaclair.tumblr.com" class="links" title="Tumblr Theme by" target=_blank>This Theme</a>
  466.  
  467. </div>
  468.  
  469. <div id="each">
  470. <!-- Following -->
  471. <div class="header2"><b>Following</b></div><div style="height:153px; overflow-y: hidden;overflow-x: hidden;">
  472. <br>{block:Following}
  473. <center>{block:Followed}<a href="{FollowedURL}"><img style="border:0px solid {color:image border}" src="{FollowedPortraitURL-24}"></a> {/block:Followed}
  474. </center><BR>{/block:Following}
  475. </div></div>
  476.  
  477. </div>
  478.  
  479. </div></td>
  480.  
  481. <td id="post">
  482. <!-- Blog Post -->
  483. <div style="width: 450px;">
  484.  
  485. {block:Posts}
  486. {block:Text}<br><div id="each">
  487.  
  488. <div id="box"> <div class="header"><div id="blogt"><b>Text Post <a href="{Permalink}"> {ShortDayOfWeek},
  489.  
  490. {ShortMonth}. {DayOfMonthWithZero}, {Year}</a> </b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
  491. {block:Title}
  492. <h1>{Title}</h1>
  493. {/block:Title}
  494.  
  495. <p>{Body}</p>
  496.  
  497.  
  498. </li><br>
  499. {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
  500. {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
  501. {/block:HasTags}{/block:IfShowTagLink}</div>
  502. <div class="tumblrdate" style="float:right;" >
  503. {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">&#187;SHARE THIS POST&#171;</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
  504. <br>
  505. <br>{block:PostNotes}<br><B>COMMENTS</B><BR>{PostNotes}{/block:PostNotes}</div>
  506.  
  507. {/block:Text}
  508. <br>
  509. {block:Photo}<div id="each">
  510.  
  511.  
  512. <div id="box"> <div class="header"><div id="blogt"><b>Photo Post <a href="{Permalink}"> {ShortDayOfWeek},
  513.  
  514. {ShortMonth}. {DayOfMonthWithZero}, {Year} </a></b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div><br>
  515. {LinkOpenTag}<center><img id="pic" style="border:0px solid {color:image border}" src="{PhotoURL-400}" alt="{PhotoAlt}"/></center>{LinkCloseTag}
  516.  
  517. {block:Caption}
  518. <p>{Caption}</p>
  519. {/block:Caption}
  520.  
  521.  
  522. {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
  523. {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
  524. {/block:HasTags}{/block:IfShowTagLink}</div>
  525. <div class="tumblrdate" style="float:right;" >
  526. {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">&#187;SHARE THIS POST&#171;</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
  527. <br>
  528. <br>{block:PostNotes}<br><B>COMMENTS</B><BR>{PostNotes}{/block:PostNotes}</div>
  529. </div>{/block:Photo}
  530.  
  531. {block:Quote}<div id="each">
  532.  
  533. <div id="box"> <div class="header"><div id="blogt"><b>Quote Post <a href="{Permalink}">{ShortDayOfWeek},
  534.  
  535. {ShortMonth}. {DayOfMonthWithZero}, {Year}</a> </b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
  536. <p class="qcontainer">
  537. <h1>?{Quote}?</h1>
  538.  
  539. {block:Source}
  540. <span class="source"><br><i>{Source}</i></span>
  541. {/block:Source}
  542. </p><br>
  543. {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
  544. {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
  545. {/block:HasTags}{/block:IfShowTagLink}</div>
  546. <div class="tumblrdate" style="float:right;" >
  547. {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">&#187;SHARE THIS POST&#171;</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
  548. <br>
  549. <br>{block:PostNotes}<br><B>COMMENTS</B><BR>{PostNotes}{/block:PostNotes}</div>
  550. </div>
  551. {/block:Quote}
  552.  
  553. {block:Link}<div id="each">
  554.  
  555. <div id="box"> <div class="header"><div id="blogt"><b>Link Post <a href="{Permalink}"> {ShortDayOfWeek},
  556.  
  557. {ShortMonth}. {DayOfMonthWithZero}, {Year} </a></b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
  558. <p><a href="{URL}" id="postlink" {Target}><h1>{Name}</h1></a></p>
  559.  
  560. {block:Description}
  561. <p>{Description}</p>
  562. {/block:Description}
  563.  
  564.  
  565. </li>
  566.  
  567. {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
  568. {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
  569. {/block:HasTags}{/block:IfShowTagLink}</div>
  570. <div class="tumblrdate" style="float:right;" >
  571. {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">&#187;SHARE THIS POST&#171;</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
  572. <br>
  573. <br>{block:PostNotes}<br><B>COMMENTS</B><BR>{PostNotes}{/block:PostNotes}</div>
  574. </div>
  575.  
  576. {/block:Link}
  577.  
  578. {block:Chat}<div id="each">
  579.  
  580. <div id="box"> <div class="header"><div id="blogt"><b>Chat Post<a href="{Permalink}"> {ShortDayOfWeek},
  581.  
  582. {ShortMonth}. {DayOfMonthWithZero}, {Year}</a> </b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
  583. {block:Title}
  584. <p id="posttitle"><a href="{Permalink}">{Title}</a></p>
  585. {/block:Title}
  586.  
  587. <ul class="chat">
  588. {block:Lines}
  589. <li class="{Alt}">
  590. {block:Label}
  591. <span class="label">{Label}</span>
  592. {/block:Label}
  593.  
  594. {Line}
  595.  
  596. {/block:Lines}
  597. </ul>
  598.  
  599. </li></li>
  600.  
  601.  
  602. {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
  603. {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
  604. {/block:HasTags}{/block:IfShowTagLink}</div>
  605. <div class="tumblrdate" style="float:right;" >
  606. {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">&#187;SHARE THIS POST&#171;</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
  607. <br>
  608. <br>{block:PostNotes}<br><B>COMMENTS</B><BR>{PostNotes}{/block:PostNotes}</div>
  609. </div>
  610. {/block:Chat}
  611.  
  612. {block:Video}<div id="each">
  613.  
  614. <div id="box"> <div class="header"><div id="blogt"><b>Video Post <a href="{Permalink}"> {ShortDayOfWeek},
  615.  
  616. {ShortMonth}. {DayOfMonthWithZero}, {Year}</a> </b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
  617. {Video-400}
  618. {block:Caption}
  619. <p>{Caption}</p>
  620. {/block:Caption}
  621.  
  622.  
  623. </li>
  624.  
  625. {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
  626. {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
  627. {/block:HasTags}{/block:IfShowTagLink}</div>
  628. <div class="tumblrdate" style="float:right;" >
  629. {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">&#187;SHARE THIS POST&#171;</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
  630. <br>
  631. <br>{block:PostNotes}<br><B>COMMENTS</B><BR>{PostNotes}{/block:PostNotes}</div>
  632. </div>
  633.  
  634. {/block:Video}
  635. {block:Audio}<div id="each">
  636.  
  637. <div id="box"> <div class="header"><div id="blogt"><b>Audio Post<a href="{Permalink}">{ShortDayOfWeek},
  638.  
  639. {ShortMonth}. {DayOfMonthWithZero}, {Year} </a></b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
  640. <div style="width:450; height:80; background: {color:Music Bg}; -webkit-border-bottom-right-radius:8;bottom-left-radius:8;-moz-border-radius:8 8 8 8;padding: 0px 5px 2px 5px;"><br>{block:AlbumArt}<img src="{AlbumArtURL}" align="left" width="50px" height="50px" />{/block:AlbumArt} <div style=" height:60px; background: black; -webkit-border-bottom-right-radius:8;bottom-left-radius:8;-moz-border-radius:8 8 8 8;">{AudioPlayerblack}<div class="tumblrdate">{block:TrackName}<span><strong>Title</strong>: {TrackName}</span>{/block:TrackName}
  641. {block:Artist}<span><strong>Artist:</strong> {Artist}</span>{/block:Artist}
  642. <span>{PlayCountWithLabel}</span><br></div>
  643. </div></div>
  644.  
  645.  
  646. {block:Caption}
  647. <p>{Caption}</p>
  648. {/block:Caption}
  649.  
  650. </li>
  651.  
  652. {block:IfShowPostDetails}<div class="tumblrdate" style="float:left;" >
  653. {block:IfShowTagLink}{block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a>{/block:Tags}
  654. {/block:HasTags}{/block:IfShowTagLink}</div>
  655. <div class="tumblrdate" style="float:right;" >
  656. {block:IfShowReblogLink}<a href="http://tmv.proto.jp/reblog.php?post_url={Permalink};" target="_blank">&#187;SHARE THIS POST&#171;</a>{/block:IfShowReblogLink}</div>{/block:IfShowPostDetails}
  657. <br>
  658. <br>{block:PostNotes}<br><B>Comments</B><BR>{PostNotes}{/block:PostNotes}</div>
  659. </div>
  660.  
  661. {/block:Audio}
  662. {block:Answer}<div id="each">
  663. <div id="box"> <div class="header"><div id="blogt"><b>Ask me anything <a href="{Permalink}">{ShortDayOfWeek},
  664.  
  665. {ShortMonth}. {DayOfMonthWithZero}, {Year} </a></b><b>{block:NoteCount}{NoteCountWithLabel}</a>{/block:NoteCount}</b></div></div></div>
  666. <div id="askr">
  667. <img style="border:3px solid #1A1A1A" src="{AskerPortraitURL-40}"align="left" /></div>
  668. <div id="question"><div id="asked">{Asker} Asked:<BR>
  669. {Question}</div></div><br>
  670. {answer}<BR clear="all">
  671. <br>
  672. <BR>{block:PostNotes}
  673. <br><B>Comments</B><BR>
  674. {PostNotes}
  675. {/block:PostNotes}</div>{/block:answer}
  676.  
  677.  
  678.  
  679. {/block:Posts}
  680. {/block:Posts}
  681.  
  682. </ol>
  683. <!-- END BLOG POST -->
  684.  
  685. <!-- Pagination -->
  686. <center>{block:PreviousPage}<a href="{PreviousPage}"><font size="3"><b>&#171; newer</b></a></font> {/block:PreviousPage}{CurrentPage}/{TotalPages}{block:NextPage} <a href="{NextPage}"><font size="3"><b>older &#187;</b></a></font>{/block:NextPage}{/block:Pagination}</center>
  687. <br>
  688.  
  689. </div>
  690.  
  691.  
  692.  
  693. </body>
  694. </html>
  695. <!---PLEASE DO NOT REMOVE THIS CREDIT---!>
  696. <!---Theme by http://www.ellaclair.tumblr.com---!>
  697. <!---base theme by pimp my profile---!>
  698. <!---PLEASE DO NOT REMOVE THIS CREDIT---!>
  699.  
  700.  
Advertisement
Add Comment
Please, Sign In to add comment