Advertisement
khalisar

millenium actress (bug)

Oct 1st, 2014
265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.47 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <!--theme by magneito
  4. base code by farahmir-->
  5.  
  6. <head>
  7.  
  8. <title>{Title}</title>
  9.  
  10. <link rel="shortcut icon" href="{image:favicon}">
  11.  
  12. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  13. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  14.  
  15. <!--Default Variables-->
  16. <meta name="image:background" content="https://31.media.tumblr.com/e8c61200c5694a09e287c98bb750edea/tumblr_inline_nb5ebnseB81rpltef.png"/>
  17. <meta name="color:Background" content="#ffffff"/>
  18. <meta name="color:Text" content="#000000"/>
  19. <meta name="color:link" content="#000000"/>
  20. <meta name="color:link hover" content="#FFF661"/>
  21. <meta name="color:title"content="#000000"/>
  22. <meta name="color:blog title"content="#000000"/>
  23. <meta name="color:scrollbar" content="#d5d5d5" />
  24. <meta name="color:border" content="#ffb7e0"/>
  25. <meta name="color:blockquote" content="#61EBE8"/>
  26. <meta name="color:post border" content="#FFFAAC"/>
  27. <meta name="color:pagination border" content="#FFFAAC"/>
  28. <meta name="color:accent background" content="#f0e4ea"/>
  29. <meta name="color:scrollbar background" content="#ead9d9" />
  30. <meta name="color:link background" content="#f4f4f4" />
  31. <meta name="color:link background hover" content="#C2FFFF" />
  32. <meta name="color:tag background" content="#FFD7D7" />
  33. <meta name="color:more background" content="#000" />
  34. <meta name="color:posts" content="#fff" />
  35. <meta name="color:info text" content="#2e2e2e" />
  36.  
  37.  
  38. <meta name="image:Sidebar image" content=""/>
  39. <meta name="image:box" content=""/>
  40. <meta name="image:favicon" content="{Favicon}"/>
  41.  
  42. <meta name="if:Stretch Background" content="0"/>
  43. <meta name="if:Stretch Box Background" content="1"/>
  44. <meta name="if:Show Sidebar Image" content="1"/>
  45. <meta name="if:Sidebar Image Border" content="1"/>
  46.  
  47.  
  48. <meta name="if:Sidebar Image Box Shadow" content="0"/>
  49. <meta name="if:Box Shadow" content="0"/>
  50. <meta name="if:Show Captions" content="1"/>
  51. <meta name="if:Reblog Button" content="1"/>
  52. <meta name="text:post margin left" content="36%" />
  53. <meta name="text:sidebar image width" content="60px" />
  54. <meta name="text:sidebar image height" content="60px" />
  55. <meta name="text:sidebar image margin left" content="100px" />
  56. <meta name="text:Link 1 URL" content="" />
  57. <meta name="text:Link 1" content="" />
  58. <meta name="text:Link 2 URL" content="" />
  59. <meta name="text:Link 2" content="" />
  60. <meta name="text:Link 3 URL" content="" />
  61. <meta name="text:Link 3" content="" />
  62. <meta name="text:Link 4 URL" content="" />
  63. <meta name="text:Link 4" content="" />
  64.  
  65.  
  66. <!-- jquery -->
  67.  
  68.  
  69. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  70.  
  71. <link href='http://fonts.googleapis.com/css?family=Inconsolata' rel='stylesheet' type='text/css'>
  72.  
  73. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  74.  
  75. <script>
  76.  
  77. (function($){
  78.  
  79. $(document).ready(function(){
  80.  
  81. $("a[title]").style_my_tooltips({
  82.  
  83. tip_follows_cursor:true,
  84.  
  85. tip_delay_time:30,
  86.  
  87. tip_fade_speed:300,
  88.  
  89. attribute:"title"
  90.  
  91. });
  92.  
  93. });
  94.  
  95. })(jQuery);
  96.  
  97. </script>
  98.  
  99. <script>
  100. $(document).ready(function(){
  101. $(".uk").click(function(){
  102. $("#updates").fadeToggle(600);
  103. });
  104. });
  105.  
  106. </script>
  107.  
  108.  
  109. <!--CSS customization here. -->
  110.  
  111. <style type="text/css">
  112.  
  113.  
  114. #s-m-t-tooltip{
  115. font-size:9px;
  116. position:absolute;
  117. margin:25px 15px;
  118. z-index:9999;
  119. background:{color:background};
  120. border:1px solid {color:accents};
  121. box-shadow:2px 2px 2px #ccc;
  122. color:{color:text};
  123. padding:3px 5px;
  124.  
  125. }
  126.  
  127.  
  128.  
  129.  
  130. /*scrollbar*/
  131. ::-webkit-scrollbar{height: 5px;
  132. width: 4px;
  133. -webkit-border-radius: 0px;
  134. background-color:{color:scrollbar background}}
  135. ::-webkit-scrollbar-thumb{background-color:{color:scrollbar};}
  136. ::-webkit-scrollbar-track{background-color:{color:scrollbar background};}
  137.  
  138.  
  139. /*main structure*/
  140. blockquote {padding:5px 0 5px 15px;
  141. border-left:1px solid {color:blockquote};
  142. margin:10px 0px 10px 15px;
  143. }
  144.  
  145. .caption blockquote {padding:0 0 0 15px;
  146. margin:10px 0;
  147. }
  148.  
  149. body {
  150. background:{color:background};
  151. color:{color:text};
  152. font-family:inconsolata;
  153. font-size:11px;
  154. text-align:justify;
  155. margin:0;
  156. line-height:15px;
  157. background:{color:background} url('{image:background}') center center fixed repeat;
  158. {block:ifstretchbackground}
  159. -webkit-background-size: cover;
  160. -moz-background-size: cover;
  161. -o-background-size: cover;
  162. background-size: cover;
  163. {/block:ifstretchbackground}
  164. }
  165.  
  166. a {color:{color:link};
  167. text-decoration:none;
  168. font-weight:bold;
  169. -webkit-transition:all 0.3s;
  170. -moz-transition:all 0.3s;
  171. -ms-transition:all 0.3s;
  172. -o-transition:all 0.3s;
  173. transition:all 0.3s;
  174. }
  175.  
  176. a:hover {
  177. color:{color:link hover};
  178. -webkit-transition:all 0.3s;
  179. -moz-transition:all 0.3s;
  180. -ms-transition:all 0.3s;
  181. -o-transition:all 0.3s;
  182. transition:all 0.3s;
  183. }
  184.  
  185. img{
  186. border:none;
  187. text-decoration:none}
  188.  
  189. b, strong {
  190. color:{color:title}}
  191. i, em {
  192. color:{color:text}}
  193. p {
  194. margin-top:5px;
  195. margin-bottom:5px}
  196. ol {
  197. list-style:normal;}
  198. ul {
  199. list-style:square;}
  200.  
  201. small {
  202. font-size:10px;}
  203.  
  204. big {
  205. font-size:14px;}
  206.  
  207.  
  208.  
  209.  
  210. #title {font-size:14px;
  211. line-height:18px;
  212. margin-bottom:10px;
  213. padding:6px;
  214. padding:left:0px;
  215. font-weight:bold;
  216. background-color:{color:accent background};
  217. border:1px solid {color:border};
  218. color:{color:title};}
  219. #title a {color:{color:title};}
  220.  
  221.  
  222.  
  223.  
  224. /*header*/
  225. #sidebar {
  226. top:98px;
  227. width:200px;
  228. text-align:left;
  229. position:fixed;
  230. margin-left:-260px;
  231. {block:ifnotshowsidebarimage}
  232. margin-top:110px;
  233. {/block:ifnotshowsidebarimage}
  234. }
  235.  
  236. #side img {
  237. height:{text:sidebar image height};
  238. width:{text:sidebar image width};
  239. margin-top:100px;
  240. border-radius:0px 3px 3px 0px;
  241. {block:ifsidebarimageborder}
  242. border:1px solid {color:border};
  243. {/block:ifsidebarimageborder}
  244. margin-left:691px;
  245. {block:ifsidebarimageboxshadow}
  246. -webkit-box-shadow: 5px 5px 2px rgba(0,0,0,.2);
  247. -moz-box-shadow: 5px 5px 2px rgba(0,0,0,.2);
  248. box-shadow: 5px 5px 2px rgba(0,0,0,.2);
  249. {/block:ifsidebarimageboxshadow}
  250. -webkit-transition:all 0.3s;
  251. -moz-transition:all 0.3s;
  252. -ms-transition:all 0.3s;
  253. -o-transition:all 0.3s;
  254. transition:all 0.3s;
  255. }
  256.  
  257. #side img:hover {
  258. -webkit-filter: blur(1px); -moz-filter: blur(1px); -o-filter: blur(1px); -ms-filter: blur(1px); filter: blur(1px);
  259. -webkit-transition:all 0.5s;
  260. -moz-transition:all 0.5s;
  261. -ms-transition:all 0.5s;
  262. -o-transition:all 0.5s;
  263. transition:all 0.5s;
  264. }
  265.  
  266. #blogtitle{
  267. width:100%;
  268. z-index:999;
  269. overflow:hidden;
  270. margin-left:0px;
  271. padding-left:0px;
  272. padding-top:10px;
  273. padding-bottom:10px;
  274. background-color:{color:accent background};
  275. text-align:center;
  276. border-bottom:solid 1px {color:border};
  277. margin-top:-46px;
  278. height:20px;
  279. position:fixed;
  280. padding-top:15px;
  281. font-size:11px;
  282. word-spacing:1px;
  283. text-transform:lowercase;
  284. font-weight:999;
  285. word-spacing:3px;
  286. letter-spacing:1px;
  287.  
  288.  
  289. }
  290.  
  291.  
  292. #blogtitle:hover a{
  293. color:{color:text};
  294. color: transparent;
  295. text-shadow: 0 0 3px rgba(0,0,0,0.3);
  296.  
  297. }
  298.  
  299.  
  300. #desc {
  301. margin-top:20px;
  302. margin-left:691px;
  303. width:130px;
  304. padding:10px;
  305. border-radius:0px 3px 3px 0px;
  306. background-color:{color:link background};
  307. border:solid 1px {color:border};
  308. }
  309.  
  310. #bloglinks {
  311. font-size:9px;
  312. width:100px;
  313. letter-spacing:1px;
  314. margin-left:144px;
  315. display:block;
  316. margin-top:-7px;
  317. text-transform:none;
  318.  
  319. }
  320. #bloglinks a {padding:2px 10px;
  321. background:{color:link background};
  322. font-weight:normal;
  323. font-size:10px;
  324. border-radius:3px 0px 0px 3px;
  325. width:50px;
  326. float:left;
  327. margin:5px;
  328. border:solid 1px {color:border};
  329. }
  330.  
  331. #bloglinks a:hover {
  332. background-color:{color:link background hover};
  333. }
  334.  
  335.  
  336. #updates {display:none;}
  337. .uk {cursor:pointer;
  338. }
  339.  
  340.  
  341. select {border:none;
  342. text-transform:capitalize;
  343. -webkit-appearance: none;cursor:pointer;
  344. }
  345.  
  346. #link {
  347. display:inline-block;
  348. cursor:pointer;
  349. }
  350. select:hover {background:{color:link background}color:{color:link};
  351. }
  352. /*pagination*/
  353. #pagination {
  354. width:470px;
  355. padding-top:10px;
  356. padding-bottom:30px;
  357. text-align:center;
  358. margin-top:30px;
  359. margin-left:-30px;
  360. font-size:11px;
  361. word-spacing:0px;
  362. text-transform:lowercase;
  363. font-weight:thin;
  364. position:relative;
  365.  
  366.  
  367. }
  368. #pagination a {
  369. margin:0 35px;
  370. padding:5px;
  371. background-color:{color:accent background};
  372. border:1px solid {color:pagination border};
  373. text-decoration:none;
  374. }
  375. #pagination a:hover {color:transparent;text-shadow: 0 0 3px rgba(0,0,0,0.4);}
  376.  
  377. #boop {
  378. margin-left:{text:post margin left};
  379. position:relative;
  380. {block:if500pxposts}
  381. margin-left:-250px;
  382. {/block:if500pxposts}
  383. {block:ifnot500pxposts}
  384. margin-left:-200px;
  385. {/block:ifnot500pxposts}
  386. }
  387.  
  388.  
  389.  
  390. /*posts*/
  391.  
  392. #entries {
  393.  
  394. margin-top:50px;
  395. margin-left:24px;
  396. {block:if500pxposts}
  397. width:500px;
  398. {/block:if500pxposts}
  399. {block:ifnot500pxposts}
  400. width:400px;
  401. {/block:ifnot500pxposts}
  402. position:relative;
  403.  
  404. }
  405.  
  406.  
  407.  
  408. .posts {display:block;
  409. width:400px;
  410. position:relative;
  411. background:{color:posts};
  412. padding:9px;
  413. padding-bottom:0px;
  414. border:1px solid {color:post border};
  415. margin-bottom:50px;
  416. }
  417. .posts img, iframe {
  418. max-width:400px;
  419. display:block;
  420. }
  421.  
  422. #textpost {
  423. max-width:90%;
  424. margin-left:8px;
  425. }
  426. /*images*/
  427. .posts img, .posts li, .posts blockquote {max-width: 100%;}
  428. .caption img{max-width:350px;}
  429. .caption {width:95%;
  430. margin-top:15px;
  431. text-transform:none;
  432. {block:ifhidecaptions}
  433. {block:indexpage}
  434. display:none;
  435. {/block:indexpage}
  436. {/block:ifhidecaptions}
  437. }
  438.  
  439. .container {margin-top:45px;
  440. width:470px;
  441. overflow:hidden;
  442. padding-top:0px;
  443. border-left:1px solid {color:border};
  444. border-right:1px solid {color:border};
  445. overflow-x:hidden;
  446. margin-left:-40px;
  447.  
  448. }
  449.  
  450.  
  451. .photoset {
  452. display:block;
  453.  
  454. }
  455.  
  456.  
  457. /*quote*/
  458. #titlequote{
  459. font-size:14px;
  460. font-style:italic;
  461. line-height:22px;
  462. text-align:left;
  463. color:{color:title};
  464. margin:0 25px;}
  465.  
  466. #source {
  467. text-align:right;
  468. padding-top:10px;}
  469.  
  470. .posts li, .posts blockquote {max-width: 100%;}
  471. .caption img{max-width:300px;}
  472. .caption {
  473. {block:ifNotShowCaptions}
  474. {block:IndexPage}
  475. display:none;
  476. {/block:IndexPage}
  477. {/block:ifNotShowCaptions}
  478.  
  479. margin:15px 0;
  480. margin-left:15px;
  481. text-transform:none;
  482. }
  483.  
  484.  
  485.  
  486.  
  487. /*audio*/
  488. .music {min-height:100px;}
  489. #art {
  490. float:left;
  491. position:relative;
  492. }
  493. #art img {height:100px;
  494. width:100px;}
  495. .tumblr_audio_player {
  496. border: none;
  497. padding: 0px;
  498. margin: 0px;
  499. height:40px;
  500. width:315px;
  501. }
  502. .playerback {
  503. opacity:.2;
  504. position:absolute;
  505. top:0;
  506. right:0;
  507. height:100px;
  508. width:100px;
  509. background:white;
  510. -webkit-transition:all 0.8s;
  511. -moz-transition:all 0.8s;
  512. -ms-transition:all 0.8s;
  513. -o-transition:all 0.8s;
  514. transition:all 0.8s;}
  515. .player {
  516. overflow:hidden;
  517. height:50px;
  518. width:30px;
  519. margin-left:22px;
  520. margin-top:27px;
  521. border-top:5px solid white;
  522. border-left:13px solid white;
  523. border-right:7px solid white;
  524. border-bottom:5px solid white;
  525. }
  526.  
  527. #art:hover .playerback {opacity:.8;
  528. -webkit-transition:all 0.8s;
  529. -moz-transition:all 0.8s;
  530. -ms-transition:all 0.8s;
  531. -o-transition:all 0.8s;
  532. transition:all 0.8s;}
  533.  
  534. .audio_info {
  535. margin-left:110px;
  536. padding:15px;
  537. border:1px solid {color:accents};
  538. font-style:italic;
  539. height:70px;
  540. overflow-y:auto;
  541. }
  542. .audio_info b{font-size:12px;
  543. }
  544.  
  545.  
  546. /*asks*/
  547.  
  548. .q {
  549. padding-bottom:15px;
  550. border-bottom:1px solid {color:accents};
  551. margin-bottom:15px;
  552.  
  553. }
  554. .as {
  555. text-transform:uppercase;
  556. color:{color:title};
  557. font-weight:bold;}
  558. .ast{
  559. text-transform:uppercase;
  560. color:{color:title};
  561. float:left;
  562. padding-right:5px;
  563. font-weight:bold;}
  564. .a {
  565. padding-bottom:1px;}
  566.  
  567.  
  568.  
  569. /*chat*/
  570.  
  571. .chat ol {
  572. padding:0;
  573. line-height:180%;
  574. list-style:none;
  575. }
  576.  
  577. .line.odd {padding:10px;
  578. background:{color:accents};
  579. }
  580. .line.even {
  581. padding:10px;
  582. }
  583. .line:last-of-type {border:none;
  584. padding-bottom:0;}
  585.  
  586. .label {font-weight:bold;
  587. padding-right:1px;
  588. letter-spacing:1px;
  589. text-transform:uppercase;
  590. color:{color:title};
  591. }
  592.  
  593. /*text*/
  594. .texta {margin:0}
  595.  
  596.  
  597.  
  598. /*permalink and notes*/
  599.  
  600.  
  601. #permalink {
  602. padding:10px;
  603. padding-bottom:10px;
  604. width:398px;
  605. color:{color:info text};
  606. margin-top:20px;
  607. margin-left:-9px;
  608. font-size:10px;
  609. text-align:left;
  610. border-top:1px solid {color:post border};
  611. background-color:{color:accent background};
  612. }
  613. #permalink a {
  614. background-color:{color:accent background};
  615. color:{color:info text};
  616. margin:0 2px;
  617. text-decoration:none;
  618. }
  619.  
  620.  
  621. #tags {
  622. color:{color:link};
  623.  
  624. letter-spacing:1px;
  625. word-break:normal;
  626. -webkit-transition:all 0.8s;
  627. -moz-transition:all 0.8s;
  628. -ms-transition:all 0.8s;
  629. -o-transition:all 0.8s;
  630. transition:all 0.8s;
  631. }
  632. #tags a {
  633. background:{color:tag background};
  634. font-weight:normal;
  635. color:{color:link};
  636. }
  637. #tags a:hover {
  638. color:{color:link hover};
  639. }
  640. .posts:hover #tags {opacity:1;
  641. -webkit-transition:all 0.8s;
  642. -moz-transition:all 0.8s;
  643. -ms-transition:all 0.8s;
  644. -o-transition:all 0.8s;
  645. transition:all 0.8s;
  646. }
  647.  
  648. .pagenotes {
  649. {block:IndexPage}
  650. display: none!important;
  651. {/block:IndexPage}
  652. {block:if500pxposts}
  653. width:500px;
  654. {/block:if500pxposts}
  655. {block:ifnot500pxposts}
  656. width:400px;
  657. {/block:ifnot500pxposts}
  658. text-align:left;
  659. height:400px;
  660. border-bottom:1px solid {color:accents};
  661. border-top:1px solid {color:Accents};
  662. padding:15px 0;
  663. overflow-y:auto;
  664. margin-bottom:100px;
  665.  
  666. }
  667. .pagenotes ol {list-style-type:none;
  668. text-align:left;
  669. padding:0!Important;
  670. margin:0!important;}
  671. .pagenotes img {
  672. display:none!important;}
  673. .pagenotes li {
  674. line-height:20px;
  675. }
  676.  
  677.  
  678. #stuff {
  679. position:fixed;
  680. right:25px;
  681. bottom:5px;
  682. padding:4px;
  683. padding-bottom:1px;
  684. text-transform:uppercase;
  685. letter-spacing:2px;
  686. font-size:8px;
  687. font-family: arial;
  688. margin-bottom:3px;
  689. margin-right:3px;
  690. border:solid 1px {color:border};
  691. background: #fff;
  692.  
  693. }
  694.  
  695. {CustomCSS}
  696.  
  697.  
  698. </style>
  699.  
  700.  
  701.  
  702.  
  703. </head>
  704.  
  705. <body>
  706.  
  707.  
  708.  
  709.  
  710. <div id="blogtitle"><a href="/">{Title}</a></div>
  711. <div id="boop">
  712.  
  713.  
  714. <div id="sidebar">
  715. <div id="bloglinks">
  716. <a href="/" title="home"><img src="https://31.media.tumblr.com/653d6033cc3ad7c9f9a13699fb7690d5/tumblr_inline_nb3yv6SnPd1rpltef.png"></a>
  717. <a href="/ask" title= "message"><img src="https://31.media.tumblr.com/51b6133059c9446a49e97fbbac2330f5/tumblr_inline_nb3y8dAEhT1rpltef.png"></a>
  718. <a href="{text:link 1 URL}" title={text:link 1}><img src="https://31.media.tumblr.com/b5ebe3188aa81afb50ead59eb8eb65ff/tumblr_inline_nb3yzyJNmp1rpltef.gif"></a>
  719. <a href="{text:link 2 URL}" title={text:link 2}><img src="https://31.media.tumblr.com/d3e5dafcf496baea66165c763f850a76/tumblr_inline_nb3zz4xsaf1rpltef.png"></a>
  720. <a href="{text:link 3 URL}" title={text:link 3}><img src="https://31.media.tumblr.com/a55b4f902b75f81e1cdc39e869b11889/tumblr_inline_nb3y8jrbaU1rpltef.png"></a>
  721. <a href="http://magneito.tumblr.com" title="theme by magneito"><img src="https://31.media.tumblr.com/7a7cabe37ba5cddf949e32ee5cb2fe3b/tumblr_inline_nb400e2Xsc1rpltef.png"></a>
  722.  
  723.  
  724. </div>
  725. {block:IfShowSidebarImage}
  726. <div id="side"><a href="/"><img src="{image:Sidebar image}"></a></div>
  727. {/block:IfShowSidebarImage}
  728. <div id="desc">{Description}</div>
  729. </div>
  730.  
  731. <div class="container">
  732. <div id="entries">
  733.  
  734. {block:Posts}
  735. <div class="posts">
  736.  
  737.  
  738. {block:Quote}
  739. <div id="titlequote">{Quote}</div>
  740. {block:Source}<div id="source">&mdash;&nbsp;{Source}</div>{/block:Source}
  741. {/block:Quote}
  742.  
  743.  
  744.  
  745. {block:Text}
  746. {block:Title}<div id="title">{Title}</div>{/block:Title}
  747. <div id="textpost">{Body}</div>
  748. {/block:Text}
  749.  
  750. {block:Link}
  751. <div id="title"><a href="{URL}">{Name}</a></div>
  752. {block:Description}{Description}{/block:Description}
  753. {/block:Link}
  754.  
  755. {block:Chat}
  756. {block:Title}<div id="title">{Title}</div>{/block:Title}
  757. <div class="chat">
  758. <ol>{block:Lines}
  759. <li class="line {Alt}">
  760. {block:Label}
  761. <span class="label">
  762. {Label}</span>
  763. {/block:Label}{Line}</li>
  764. {/block:Lines}
  765. </ol></div>
  766. {/block:Chat}
  767.  
  768. {block:Photo}
  769. <div class="photo"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/></div>
  770. {/block:Photo}
  771.  
  772. {block:Photoset}
  773. <div class="photoset">
  774.  
  775. {Photoset-400}
  776.  
  777. </div>
  778. {/block:Photoset}
  779.  
  780.  
  781. {block:Video}
  782. {Video-400}
  783.  
  784. {/block:Video}
  785.  
  786.  
  787.  
  788. {block:Audio}
  789. <div class="music">
  790. <div id="art">
  791. {block:AlbumArt}
  792. <img src="{AlbumArtURL}">
  793. {/block:AlbumArt}
  794. {block:AudioPlayer}
  795. <div class="playerback"><div class="player">{AudioPlayerwhite}</div></div>
  796. {/block:AudioPlayer}
  797. </div>
  798. <div class="audio_info">{block:TrackName}<b>{TrackName}</b>{/block:TrackName}<div style="margin-top:8px;font-style:normal">{block:Artist}{Artist}{/block:Artist}<br>{block:album}{album}{/block:album}<br>{playcountwithlabel}</div></div></div>
  799. {/block:Audio}
  800.  
  801.  
  802.  
  803. {block:Answer}
  804. <div class="q"><span class="as">Q: </span>{Question} ({asker})</div>
  805. <div class="a"><span class="ast">A: </span>{Answer}</div>
  806. {/block:Answer}
  807.  
  808. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  809.  
  810. {block:Date}
  811.  
  812. <div id="permalink">
  813. <a href="{Permalink}" title="{12Hour}:{Minutes} {AmPm}" class="c">{timeago}</a>{block:RebloggedFrom}<a href="{ReblogParentURL}" title="reblogged from {ReblogParentName}" class="c">via</a>{block:ContentSource}{block:permalinkpage}<a href="{ReblogRootURL}" title="{ReblogRootName}" class="c">source</a>{/block:permalinkpage}{/block:ContentSource}{/block:RebloggedFrom}{block:NoteCount}<a href="{Permalink}" class="c">{NoteCountWithLabel}</a>{/block:NoteCount}{block:ifReblogButton}&nbsp;<a href="{ReblogUrl}" target"_blank" title="reblog?">reblog</a>{/block:ifReblogButton}<p>{block:HasTags}<span id="tags">{block:Tags}<a href="{TagUrl}">#{Tag} </a>{/block:Tags}</span>{/block:HasTags}{/block:Date}
  814. </div>
  815. </div>
  816.  
  817.  
  818.  
  819.  
  820. {block:PostNotes}
  821. <div class="pagenotes">
  822. {PostNotes}
  823. </div>
  824. {/block:PostNotes}
  825.  
  826.  
  827. {/block:Posts}
  828.  
  829.  
  830.  
  831. {block:Pagination}
  832. <div id="pagination">
  833. {block:PreviousPage}
  834. <a href="{PreviousPage}">previous page </a>
  835. {/block:PreviousPage}
  836. {block:NextPage}
  837. <a href="{NextPage}">next page</a>
  838. {/block:NextPage}
  839. </div>
  840. {/block:Pagination}
  841.  
  842. </div>
  843.  
  844. </div>
  845.  
  846.  
  847.  
  848.  
  849. {block:ContentSource}
  850. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  851. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  852. {/block:SourceLogo}
  853. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  854. {/block:ContentSource}
  855.  
  856. <div id="stuff"><a href="/" target="_blank">+<script language="JavaScript">
  857. var ref = (''+document.referrer+'');
  858. var w_h = window.screen.width + " x " + window.screen.height;
  859. document.write('<script src="http://s1.freehostedscripts.net/ocounter.php?site=ID4262984&e1=&e2=&r=' + ref + '&wh=' + w_h + '"><\/script>');
  860. </script>/<script language="JavaScript" src="http://s1.freehostedscripts.net/ocount.php?site=ID2620147&name="></script></p></a></div>
  861.  
  862.  
  863.  
  864. </body>
  865. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement