Advertisement
rasperries

snark times

Jan 6th, 2015
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.35 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5. <!--
  6.  
  7. THEME 7 by ARYASNARK
  8.  
  9. Copyright © Aryasnark 2013 All Rights Reserved. No part of this website may be reproduced without my express consent.
  10.  
  11. -->
  12.  
  13. <head>
  14. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>
  15. <link rel="shortcut icon" href="{Favicon}">
  16. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  17. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  18.  
  19. <script type="text/javascript"
  20. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  21.  
  22. <script>
  23. $(document).ready(function() {
  24. //When you click on a link with class of poplight and the href starts with a #
  25. $('a.poplight[href^=#]').click(function() {
  26. var popID = $(this).attr('rel'); //Get Popup Name
  27. var popURL = $(this).attr('href'); //Get Popup href to define size
  28. //Pull Query & Variables from href URL
  29. var query= popURL.split('?');
  30. var dim= query[1].split('&');
  31. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  32. //Fade in the Popup and add close button
  33. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img class="btn_close"/></a>');
  34. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  35. var popMargTop = ($('#' + popID).height() + 80) / 2;
  36. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  37. //Apply Margin to Popup
  38. $('#' + popID).css({
  39. 'margin-top' : -popMargTop,
  40. 'margin-left' : -popMargLeft
  41. });
  42. //Fade in Background
  43. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  44. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  45. return false;
  46. });
  47. //Close Popups and Fade Layer
  48. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  49. $('#fade , .popup_block').fadeOut(function() {
  50. $('#fade, a.close').remove(); //fade them both out
  51. });
  52. return false;
  53. });
  54. });
  55. </script>
  56.  
  57. <meta name="color:background" content="#ffffff">
  58. <meta name="color:title" content ="#3b3b3b">
  59. <meta name="color:text" content="#3b3b3b">
  60. <meta name="color:tags" content="#555555">
  61. <meta name="color:tags hover" content="#555555">
  62. <meta name="color:link" content="#aaaaaa">
  63. <meta name="color:link hover" content="#232323">
  64. <meta name="color:sidelink" content="#3b3b3b">
  65. <meta name="color:sidelink hover" content="#292929">
  66. <meta name="color:border" content="#eeeeee">
  67. <meta name="color:scrollbar" content="#eeeeee">
  68. <meta name="color:scrollbar bg" content="#ffffff">
  69.  
  70. <meta name="if:400px" content="1"/>
  71. <meta name="if:500px" content="0"/>
  72. <meta name="if:show captions" content="1"/>
  73. <meta name="if:hover" content="1"/>
  74. <meta name="if:sidebarimg" content="0"/>
  75. <meta name="text:username" content=""/>
  76. <meta name="text:ask title" content=""/>
  77. <meta name="text:link 1 title" content="link 1"/>
  78. <meta name="text:link 2 title" content="link 2"/>
  79. <meta name="text:link 3 title" content="link 3"/>
  80.  
  81. <meta name="image:sidebar" content=""/>
  82.  
  83. <style type="text/css">
  84.  
  85.  
  86.  
  87. ::-webkit-scrollbar {width:7px; height:auto; background:{color:scrollbar bg};}
  88. ::-webkit-scrollbar-corner {background:{color:scrollbar};}
  89. ::-webkit-scrollbar-thumb:vertical {background:{color:scrollbar};}
  90. ::-webkit-scrollbar-thumb:horizontal {background:{color:scrollbar};}
  91.  
  92. body {
  93. margin:0px;
  94. padding:0px;
  95. font-family:times;
  96. font-size:10px;
  97. letter-spacing:0.02em;
  98. color:{color:text};
  99. text-align:justify;
  100. background:{color:background};
  101. line height:125%;
  102. font-weight:lighter;
  103. }
  104.  
  105. small, sub {
  106. font-family:times;
  107. font-size:10px;
  108. font-weight:lighter;
  109. line height:125%;
  110. letter-spacing:0.02em;
  111. vertical-align:baseline;
  112. }
  113.  
  114. a:link, a, a:active, a:visited {
  115. text-decoration:none;
  116. color:{color:link};
  117. transition-duration: 0.6s;
  118. -moz-transition-duration: 0.6s;
  119. -webkit-transition-duration: 0.6s;
  120. -o-transition-duration: 0.6s;
  121. }
  122. a:hover {
  123. color:{color:link hover};
  124. transition-duration: 0.6s;
  125. -moz-transition-duration: 0.6s;
  126. -webkit-transition-duration: 0.6s;
  127. -o-transition-duration: 0.6s;
  128. }
  129.  
  130. #entry {
  131. margin-left:540px;
  132. margin-top:100px;
  133. width:440px;
  134. {block:if500px}
  135. width:540px;
  136. {/block:if500px}
  137. }
  138.  
  139. .post {
  140. -webkit-filter:grayscale(0%);
  141. -webkit-transition: all 0.6s ease-in-out;
  142. overflow:hidden;
  143. float:center;
  144. margin-top:10px;
  145. margin-bottom:100px;
  146. padding-top:20px;
  147. padding-bottom:10px;
  148. width:400px;
  149. overflow:hidden;
  150. {block:if500px}
  151. width:500px;
  152. {/block:if500px}
  153. }
  154.  
  155. .post:hover {
  156. -webkit-filter:none;
  157. -webkit-transition: all 0.6s ease-in-out;
  158. }
  159.  
  160. .info {
  161. width:400px;
  162. margin-bottom:10px;
  163. font-family:times;
  164. font-size:8px;
  165. font-style:none;
  166. text-align:center;
  167. letter-spacing:0.05em;
  168. line-height:150%;
  169. text-transform:lowercase;
  170. padding-top:5px;
  171. {block:indexpage}
  172. {block:ifhover}
  173. opacity:0;
  174. {/block:ifhover}
  175. {block:indexpage}
  176. transition-duration: 0.5s;
  177. -moz-transition-duration: 0.5s;
  178. -webkit-transition-duration: 0.5s;
  179. -o-transition-duration: 0.5s;
  180. {block:if500px}
  181. width:500px;
  182. padding-top:7px;
  183. {/block:if500px}
  184. }
  185.  
  186. .info a {
  187. color:{color:tags};
  188. padding:5px;
  189. }
  190. .info a:hover {
  191. color:{color:tags hover};
  192. }
  193.  
  194. {block:ifhover}
  195. .post:hover .info {
  196. opacity:1;
  197. -webkit-transition: all 0.5s ease-in-out;
  198. -moz-transition: all 0.5s ease-in-out;
  199. -o-transition: all 0.5s ease-in-out;
  200. -ms-transition: all 0.5s ease-in-out;
  201. }
  202. {/block:ifhover}
  203.  
  204. h1 {
  205. font-size:7px;
  206. text-transform:uppercase;
  207. letter-spacing:4px;
  208. font-weight:lighter !important;
  209. text-align:center;
  210. line-height:150%;
  211. padding:8px 5px 5px 5px;
  212. background-color:#f8f8f8;
  213. }
  214. h1 a {
  215. color:{color:title};
  216. font-weight:lighter;
  217. }
  218.  
  219. h3 {
  220. font-family:times;
  221. font-size:7px;
  222. text-transform:uppercase;
  223. font-weight:normal;
  224. text-align:center;
  225. padding:7px;
  226. letter-spacing:4px;
  227. line-height:150%;
  228. color:{color:background};
  229. }
  230.  
  231. #sidebar {
  232. width:280px;
  233. height:100%;
  234. left:280px;
  235. font-size:9px;
  236. text-align:left;
  237. position:fixed;
  238. top:250px;
  239. overflow:hidden;
  240. {block:ifsidebarimg}
  241. top:50px;
  242. {/block:ifsidebarimg}
  243. }
  244.  
  245. {block:ifsidebarimg}
  246. #sidebar img {
  247. -webkit-filter:grayscale(25%);
  248. width:90px;
  249. height:auto;
  250. margin-bottom:10px;
  251. margin-top:150px;
  252. border:3px solid #f8f8f8;
  253. margin-left:10px;
  254. }
  255. {/block:ifsidebarimg}
  256.  
  257. #blogtitle {
  258. width:100px;
  259. font-family:helvetica;
  260. text-transform:uppercase;
  261. font-size:11px;
  262. font-weight:lighter;
  263. text-align:left;
  264. margin-left:1px;
  265. padding:10px;
  266. padding-bottom:9px;
  267. letter-spacing:4px;
  268. }
  269. #blogtitle a {
  270. color:{color:title};
  271. }
  272.  
  273. /*sidebar shit*/
  274. div { position:relative; }
  275.  
  276. input[type=checkbox] {
  277. position:absolute;
  278. top:0;
  279. left:0;
  280. width:100%;
  281. height:100%;
  282. opacity:0;
  283. }
  284.  
  285. h2 {
  286. display:navigate;
  287. font-family:times;
  288. font-size:9px;
  289. letter-spacing:0.02em;
  290. width:100px;
  291. font-weight:normal;
  292. text-align:left;
  293. font-style:none;
  294. text-transform:lowercase;
  295. line-height:180%;
  296. padding-left:4px;
  297. padding-right:3px;
  298. margin-left:5px;
  299. z-index:9999;
  300. color:{color:sidelink};
  301. }
  302. h2 a {
  303. color:{color:sidelink} !important;
  304.  
  305. }
  306.  
  307. label {
  308. cursor:pointer;
  309. }
  310. label {
  311. position:relative;
  312. display:block;
  313. padding-left:10px;
  314. font-family:times;
  315. font-size:10px;
  316. z-index:9999;
  317. }
  318.  
  319. label:before {
  320. content:"";
  321. position:absolute;
  322. width:0;
  323. height:0;
  324. top:50%;
  325. left:10px;
  326. z-index:9999;
  327.  
  328. }
  329.  
  330. input[type=checkbox]:checked ~ h2 label:before {
  331. margin-left:-4px;
  332. margin-top:-4px;
  333. z-index:9999;
  334. }
  335.  
  336. #description {
  337. max-height:0;
  338. overflow:hidden;
  339. padding-left:30px;
  340. transition:max-height 0.8s ease;
  341. font-family:times;
  342. font-size:10px;
  343. width:170px;
  344. line-height:150%;
  345. }
  346.  
  347. input[type=checkbox]:checked ~ h2 ~ #description {
  348. max-height:250px; /*MAX HEIGHT OF SIDEBAR CONTENT CHANGED HERE*/
  349. z-index:9999;
  350. }
  351.  
  352. .text_box:before {
  353. content :"";
  354. position :absolute;
  355. margin-left:2px;
  356. width:2px;
  357. height:16px;
  358. background:#f8f8f8;
  359. filter:alpha(opacity=100);
  360. -moz-opacity:1;
  361. -khtml-opacity:1;
  362. opacity:1;
  363. z-index:999;
  364. transition-duration: 0.8s;
  365. -moz-transition-duration: 0.8s;
  366. -webkit-transition-duration: 0.8s;
  367. -o-transition-duration: 0.8s;
  368. }
  369.  
  370. input[type="checkbox"]:hover ~ h2 .text_box:before {
  371. width:2px;
  372. background:#dddddd;
  373. transition-duration: 0.8s;
  374. -moz-transition-duration: 0.8s;
  375. -webkit-transition-duration: 0.8s;
  376. -o-transition-duration: 0.8s;
  377. }
  378.  
  379. input[type="checkbox"]:checked ~ h2 .text_box:before {
  380. width:100px;
  381. background:#f8f8f8;
  382. transition-duration: 0.8s;
  383. -moz-transition-duration: 0.8s;
  384. -webkit-transition-duration: 0.8s;
  385. -o-transition-duration: 0.8s;
  386. }
  387.  
  388. #pagination {
  389. width:400px;
  390. bottom:20px;
  391. padding-bottom:30px;
  392. font-size:8px;
  393. font-family:helvetica;
  394. text-align:center;
  395. letter-spacing:6px;
  396. {block:if500px}
  397. width:500px;
  398. {/block:if500px}
  399. }
  400. #pagination a {
  401. color:{color:sidelink};
  402. }
  403. .jump_page {
  404. padding:10px;
  405. color:{color:sidelink};
  406. border-top:2px solid {color:background};
  407. }
  408. .jump_page:hover {
  409. color:{color:sidelink hover};
  410. border-top:2px solid #eeeeee;
  411. }
  412. .current_page {
  413. padding:10px 8px 10px 10px;
  414. color:{color:sidelink};
  415. border-top:2px solid {color:border};
  416. }
  417.  
  418.  
  419. .quote {
  420. font-family:times;
  421. font-size:10px;
  422. font-style:none;
  423. text-align:center;
  424. line-height:125%;
  425. padding:10px;
  426. border:2px solid #f8f8f8;
  427. }
  428.  
  429. #source {
  430. font-size:7px;
  431. text-transform:uppercase;
  432. letter-spacing:4px;
  433. text-align:center;
  434. padding:8px 5px 5px 5px;
  435. background-color:#f8f8f8;
  436. }
  437.  
  438. #source a {
  439. color:{color:text};
  440. border-bottom:1px solid #b8b8b8;
  441. }
  442.  
  443. /*AUDIO*/
  444.  
  445. .post .audio {
  446. text-align:left;
  447. background-color:rgba(0,0,0,1);
  448. padding:3px;
  449. height:27px;
  450. margin:auto;
  451. overflow:hidden;
  452. }
  453. .post .audio .plyr {
  454. width:27px;
  455. height:27px;
  456. overflow:hidden;
  457. position:absolute;
  458. }
  459. .post .audio .track {
  460. width:100%;
  461. height:27px;
  462. left:32px;
  463. position:relative;
  464. line-height:27px;
  465. overflow:hidden;
  466. text-transform:uppercase;
  467. font-size:7px;
  468. font-weight:lighter;
  469. letter-spacing:2px;
  470. color:rgba(255,255,255,.80);
  471. }
  472.  
  473.  
  474.  
  475. .caption {
  476. text-align:justify;
  477. font-family:times;
  478. font-size:10px;
  479. padding:3px 20px 3px 30px;
  480. display:block;
  481. color:{color:text};
  482. background:#f5f5f5;
  483. }
  484. .caption img {
  485. max-width:360px;
  486. }
  487. .caption a {
  488. color:{color:text};
  489. border-bottom:1px solid #b8b8b8;
  490. }
  491.  
  492. blockquote {
  493. padding-left:12px;
  494. margin-left:0px;
  495. border-left:1px solid #ddd;
  496. width:95%;
  497. }
  498.  
  499. #asker {
  500. text-align:left;
  501. margin-top:0px;
  502. margin-bottom:-10px;
  503. font-style:none;
  504. padding:10px;
  505. background-color:#f8f8f8;
  506. }
  507.  
  508. #asker a {
  509. background:none;
  510. border-bottom:1px solid #b8b8b8;
  511. color:{color:text}
  512. }
  513.  
  514. #asked {
  515. font-size:10px;
  516. font-family:times;
  517. letter-spacing:0px;
  518. background:none;
  519. }
  520.  
  521. #answer {
  522. padding:2px 10px 5px 10px;
  523. margin-top:7px;
  524. margin-bottom:5px;
  525. border:2px solid #f8f8f8;
  526. }
  527.  
  528.  
  529.  
  530. ol.notes {
  531. padding-bottom:2%;
  532. width:360px;
  533. list-style-type:upper-roman;
  534. text-align:left;
  535. font-size:9px;
  536. {block:if500px}
  537. width:460px;
  538. {/block:if500px}
  539. }
  540.  
  541. ol.notes li.note{
  542. border-bottom:1px solid {color:border};
  543. padding:2%;
  544. }
  545.  
  546. ol.notes li.note img.avatar{
  547. width:0px;
  548. height:0px;}
  549.  
  550. #fade {
  551. display: none;
  552. background: #000;
  553. position: fixed;
  554. left: 0;
  555. top: 0;
  556. width: 100%;
  557. height: 100%;
  558. opacity: .80;
  559. z-index: 9999;
  560. }
  561.  
  562. .popup_block{
  563. display: none;
  564. background:transparent;
  565. padding: 20px;
  566. float: left;
  567. position: fixed;
  568. top: 50%;
  569. left: 50%;
  570. z-index: 99999;
  571. }
  572.  
  573. *html #fade {
  574. position: absolute;
  575. }
  576.  
  577. *html .popup_block {
  578. position: absolute;
  579. }
  580.  
  581.  
  582. .showhide_element {
  583. display: none;
  584. }
  585.  
  586. #credit {
  587. bottom:15px;
  588. text-align:center;
  589. font-size:7px;
  590. letter-spacing:3px;
  591. font-family:helvetica;
  592. opacity:1;
  593. width:400px;
  594. {block:if500px}
  595. width:500px;
  596. {/block:if500px}
  597. }
  598.  
  599. #cr {
  600. bottom:0px;
  601. right:0px;
  602. position:fixed;
  603. z-index:1000;
  604. padding:8px 9px;
  605. background-color:{color:background};
  606. }
  607. #cr a {
  608. font-size:7px;
  609. line-height:8px;
  610. background-color:transparent;
  611. font-family:arial;
  612. letter-spacing:0px;
  613. color:#4f4f4f;
  614.  
  615.  
  616. </style></head>
  617. <body>
  618. <div id="sidebar">
  619. {block:ifsidebarimg}<div id="sidebar img"><a href="/"><img src="{image:sidebar}"/></a></div>{/block:ifsidebarimg}
  620. <div>
  621. <input type="checkbox" id="description">
  622. <h2><div class="text_box"><label for="description">about</label></div></h2>
  623. <div id="description">trish, twenty one, gemini (she/her)<br> i like cute boys, romance novels, indian food, cold coffee and pastel colors.
  624. <ul>
  625. <li>bae #1: <a href="/tagged/hs">harry styles</a></li>
  626. <li>bae #2: <a href="/tagged/ts">taylor swift</a></li>
  627. <li>bae #3: <a href="/tagged/bellamy blake">bellamy blake</a></li>
  628.  
  629.  
  630. </ul></div>
  631. </div>
  632.  
  633. <!-- 1ST LINK -->
  634. <div>
  635. <input type="checkbox" id="01">
  636. <h2><div class="text_box"><label for="01">{text:link 1 title}</label></div></h2>
  637. <div id="description">
  638. <!-- CONTENT BEGINS -->
  639. <ul>
  640. <li><a href="/tagged/!">all edits</a></li>
  641. <li><a href="/tagged/typo">typography</a></li>
  642. <li><a href="/tagged/1k">1k notes</a></li>
  643. <li><a href="/tagged/5k">5k notes</a></li>
  644. <li><a href="/icons">icons</a></li>
  645. </ul>
  646. <!-- CONTENT ENDS -->
  647. </div>
  648. </div>
  649.  
  650. <!-- 2ND LINK -->
  651. <div><input type="checkbox" id="02">
  652. <h2><div class="text_box"><label for="02">{text:link 2 title}</label></div></h2>
  653. <div id="description">
  654. <!-- CONTENT BEGINS -->
  655. <ul>
  656. <li><a href="/tv">tv shows</a></li>
  657. <li><a href="/books">books</a></li>
  658. <li><a href="/ficrec">fic rec</a></li>
  659. <li><a href="/tagged/tunes">music</a></li>
  660. <li><a href="/blogroll">blogroll</a></li>
  661. <li><a href="/tagss">all tags + links</a></li>
  662. </ul>
  663. <!-- CONTENT ENDS -->
  664. </div>
  665. </div>
  666.  
  667. <!-- 3RD LINK -->
  668. <div>
  669. <input type="checkbox" id="03">
  670. <h2><div class="text_box"><label for="03">{text:link 3 title}</label></div></h2>
  671. <div id="description">
  672. <!-- CONTENT BEGINS -->
  673.  
  674. currently reading:
  675. <ul>
  676. <li>hothouse flower by krista and becca ritchie</li>
  677. <li>the bell jar by sylvia plath</li>
  678. <li>the girlfriend by abigail barnette</li>
  679.  
  680. </ul>
  681. currently watching:
  682. <p>
  683. <ul>
  684. <li><a href="/tagged/the 100">the 100</a></li>
  685. <li><a href="/tagged/htgawm">how to get away with murder</a></li>
  686. <li><a href="/tagged/tmp">the mindy project</a></li>
  687. <li><a href="/tagged/grey's anatomy">grey's anatomy</a></li>
  688. <li><a href="/tagged/parenthood">parenthood</a></li>
  689. <li><a href="/tagged/scandal">scandal</a></li>
  690. </ul>
  691.  
  692. <!-- CONTENT ENDS -->
  693. </div>
  694. </div>
  695.  
  696. <!-- ASK LINK -->
  697. <div>
  698. <input type="checkbox" id="ask">
  699. <h2><a href="#?w=500" rel="askpop" class="poplight"><div class="text_box"><label for="ask">queries</label></div></a></h2>
  700. </div>
  701.  
  702. </div>
  703.  
  704. <div id="entry">
  705.  
  706. {block:Posts}
  707.  
  708. <div class="post">
  709.  
  710. {block:Text}
  711. {block:Title}<h1>{Title}</h1>{/block:Title}
  712. {Body}
  713. {/block:Text}
  714.  
  715.  
  716. {block:Photo}
  717. {block:if400px}
  718. <center><a href="{Permalink}"><img src="{PhotoURL-400}"></a></center>
  719. {/block:if400px}
  720. {block:if500px}
  721. <center><a href="{Permalink}"><img src="{PhotoURL-500}"></a></center>
  722. {/block:if500px}
  723.  
  724.  
  725. {/block:Photo}
  726.  
  727.  
  728. {block:Photoset}
  729. {block:if400px}
  730. {Photoset-400}
  731. {/block:if400px}
  732. {block:if500px}
  733. {Photoset-500}
  734. {/block:if500px}
  735.  
  736. {/block:Photoset}
  737.  
  738. {block:Quote}
  739. {block:Source}
  740. <div id="source">{Source}</div>
  741. {/block:Source}
  742. <div class="quote">❝ {Quote} ❞</div>
  743. {/block:Quote}
  744.  
  745.  
  746. {block:Link}
  747. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  748. {block:Description}
  749. <div style="padding-left:5px;padding-right:5px;">{Description}</div>
  750. {/block:Description}
  751. {/block:Link}
  752.  
  753.  
  754. {block:Chat}
  755. {block:Title}<h1>{Title}</h1>{/block:Title}
  756. {block:Lines}
  757. {block:Label}<b>{Label}</b>{/block:Label} {Line}<br>
  758. {/block:Lines}
  759. {/block:Chat}
  760.  
  761. {block:Audio}<!-- audio --><div class="audio">{block:AudioPlayer}<div class="plyr">{AudioPlayerBlack}</div>{/block:AudioPlayer}<div class="track">{block:Artist}{Artist}{/block:Artist} &ndash; {block:TrackName}{TrackName}{/block:TrackName}</div></div>{/block:Audio}
  762.  
  763. {block:Caption}
  764. {block:ifshowcaptions}
  765. <span class="caption">{Caption}</span>
  766. {/block:ifshowcaptions}
  767. {/block:Caption}
  768. {/block:Audio}
  769.  
  770.  
  771.  
  772. {block:Video}
  773. {block:if400px}
  774. {Video-400}
  775. {/block:if400px}
  776. {block:if500px}
  777. {Video-500}
  778. {/block:if500px}
  779.  
  780. {block:Caption}
  781. {block:ifshowcaptions}
  782. <span class="caption">{Caption}</span>
  783. {/block:ifshowcaptions}
  784. {/block:Caption}
  785. {/block:Video}
  786.  
  787.  
  788. {block:Answer}
  789. <div id="asker">{Asker} <font id="asked">asked:</font>
  790. <font-style="font-family:times new roman;"><i>{Question}</i></font></div>
  791. <div id="answer">{Answer}</div>
  792. {/block:Answer}
  793.  
  794. {block:IndexPage}
  795. <div class="info">{block:Date}<a href="{Permalink}">{DayOfMonth} . {MonthNumberWithZero} . {ShortYear}</small>{/block:Date} {block:HasTags}{block:Tags}
  796. <a href="/tagged/{Tag}">{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}{block:NoteCount}&nbsp;&nbsp; <a href="{Permalink}">+{NoteCount}</a>{/block:NoteCount}</div>
  797. {/block:IndexPage}
  798.  
  799. {block:PermalinkPage}
  800. <div class="info">{block:Date}<a href="{Permalink}">{DayOfMonth} . {MonthNumberWithZero} . {ShortYear}</small></a>{/block:Date} {block:HasTags}{block:Tags}
  801. <a href="/tagged/{Tag}">{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}{block:NoteCount}&nbsp;&nbsp; <a href="{Permalink}">+{NoteCount}</a>{/block:NoteCount}</div>
  802. <center><font style="padding:5px;font-size:6px;text-transform:uppercase;letter-spacing:3px;">{block:ContentSource}by: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} {block:RebloggedFrom} &nbsp; via: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}</a></font></center>
  803. {/block:PermalinkPage}
  804.  
  805. </div>
  806. {/block:Posts}
  807.  
  808. {block:PermalinkPage}
  809. {block:PostNotes}
  810. <div id="notes">{PostNotes}</div>
  811. {/block:PostNotes}
  812. {/block:permalinkpage}
  813.  
  814. <div id="pagination">
  815. {block:IndexPage}
  816. {block:Pagination}
  817. {block:PreviousPage}
  818. <a href="{PreviousPage}">←</a>&nbsp;&nbsp;
  819. {/block:PreviousPage}
  820. {block:JumpPagination length="5"}
  821. {block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}
  822. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  823. {/block:JumpPagination}
  824. {block:NextPage}
  825. &nbsp;&nbsp;<a href="{NextPage}">→</a>
  826. {/block:NextPage}
  827. {/block:Pagination}
  828. {/block:IndexPage}
  829. </div>
  830.  
  831. <div id="cr"><script language="JavaScript">
  832. var ref = (''+document.referrer+'');
  833. var w_h = window.screen.width + " x " + window.screen.height;
  834. document.write('<script src="http://freehostedscripts.net/ocounter.php?site=ID4496455&e1=&e2=&r=' + ref + '&wh=' + w_h + '"><\/script>');
  835. </script></div>
  836.  
  837. </div>
  838.  
  839. </div>
  840.  
  841. <div id="askpop" class="popup_block">
  842. <center>
  843. <h3>{text:ask title}</h3>
  844. theme by <a href="http://intrawar.tumblr.com/codes">aryasnark</a><br><br>
  845. <iframe frameborder="0" border="0" scrolling="no" width="100%" height="190" allowtransparency="true" src="http://www.tumblr.com/ask_form/{text:username}.tumblr.com" style="background-color:transparent; overflow:hidden;"></iframe>
  846. </center>
  847. </div>
  848. </div></div></div></div></div></div></div></div></div></div>
  849.  
  850. </body>
  851. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement