Advertisement
rasperries

as II

Dec 5th, 2014
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.12 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. ::-webkit-scrollbar {width:7px; height:auto; background:{color:scrollbar bg};}
  86. ::-webkit-scrollbar-corner {background:{color:scrollbar};}
  87. ::-webkit-scrollbar-thumb:vertical {background:{color:scrollbar};}
  88. ::-webkit-scrollbar-thumb:horizontal {background:{color:scrollbar};}
  89.  
  90. body {
  91. margin:0px;
  92. padding:0px;
  93. font-family:helvetica;
  94. font-size:9px;
  95. letter-spacing:0.02em;
  96. color:{color:text};
  97. text-align:justify;
  98. background:{color:background};
  99. line height:125%;
  100. font-weight:lighter;
  101. }
  102.  
  103. small, sub {
  104. font-family:helvetica;
  105. font-size:9px;
  106. font-weight:lighter;
  107. letter-spacing:0.02em;
  108. vertical-align:baseline;
  109. }
  110.  
  111. a:link, a, a:active, a:visited {
  112. text-decoration:none;
  113. color:{color:link};
  114. transition-duration: 0.6s;
  115. -moz-transition-duration: 0.6s;
  116. -webkit-transition-duration: 0.6s;
  117. -o-transition-duration: 0.6s;
  118. }
  119. a:hover {
  120. color:{color:link hover};
  121. transition-duration: 0.6s;
  122. -moz-transition-duration: 0.6s;
  123. -webkit-transition-duration: 0.6s;
  124. -o-transition-duration: 0.6s;
  125. }
  126.  
  127. #entry {
  128. margin-left:540px;
  129. margin-top:75px;
  130. width:440px;
  131. font-family:helvetica;
  132. {block:if500px}
  133. width:540px;
  134. {/block:if500px}
  135. }
  136.  
  137. .post {
  138. overflow:hidden;
  139. float:center;
  140. margin-top:10px;
  141. margin-bottom:120px;
  142. padding-top:20px;
  143. padding-bottom:10px;
  144. width:400px;
  145. overflow:hidden;
  146. {block:if500px}
  147. width:500px;
  148. {/block:if500px}
  149. }
  150.  
  151. .info {
  152. width:400px;
  153. margin-bottom:10px;
  154. font-family:helvetica;
  155. font-size:8px;
  156. font-style:none;
  157. text-align:center;
  158. letter-spacing:0.05em;
  159. line-height:150%;
  160. text-transform:lowercase;
  161. padding-top:5px;
  162. {block:indexpage}
  163. {block:ifhover}
  164. opacity:0;
  165. {/block:ifhover}
  166. {block:indexpage}
  167. transition-duration: 0.5s;
  168. -moz-transition-duration: 0.5s;
  169. -webkit-transition-duration: 0.5s;
  170. -o-transition-duration: 0.5s;
  171. {block:if500px}
  172. width:500px;
  173. padding-top:7px;
  174. {/block:if500px}
  175. }
  176.  
  177. .info a {
  178. color:{color:tags};
  179. padding:5px;
  180. }
  181. .info a:hover {
  182. color:{color:tags hover};
  183. }
  184.  
  185. {block:ifhover}
  186. .post:hover .info {
  187. opacity:1;
  188. -webkit-transition: all 0.5s ease-in-out;
  189. -moz-transition: all 0.5s ease-in-out;
  190. -o-transition: all 0.5s ease-in-out;
  191. -ms-transition: all 0.5s ease-in-out;
  192. }
  193. {/block:ifhover}
  194.  
  195. h1 {
  196. font-family:helvetica;
  197. text-transform:;
  198. font-size:11px;
  199. font-weight:lighter;
  200. text-align:center;
  201. padding:7px;
  202. letter-spacing:1px;
  203. background:#f9f9f9;
  204. }
  205. h1 a {
  206. color:{color:title};
  207. font-weight:lighter;
  208. }
  209.  
  210. h3 {
  211. font-family:helvetica;
  212. text-transform:;
  213. font-size:11px;
  214. font-weight:lighter !important;
  215. text-align:center;
  216. padding:7px;
  217. letter-spacing:1px;
  218. line-height:150%;
  219. color:{color:background};
  220. }
  221.  
  222. #sidebar {
  223. width:280px;
  224. height:100%;
  225. left:280px;
  226. font-size:9px;
  227. text-align:left;
  228. position:fixed;
  229. top:200px;
  230. overflow:hidden;
  231. {block:ifsidebarimg}
  232. top:50px;
  233. {/block:ifsidebarimg}
  234. }
  235.  
  236. {block:ifsidebarimg}
  237. #sidebar img {
  238. width:240px;
  239. height:auto;
  240. margin-bottom:10px;
  241. border:5px solid #f8f8f8;
  242. margin-left:10px;
  243. }
  244. {/block:ifsidebarimg}
  245.  
  246. #blogtitle {
  247. width:100px;
  248. font-family:helvetica;
  249. text-transform:uppercase;
  250. font-size:11px;
  251. font-weight:lighter;
  252. text-align:left;
  253. padding:10px;
  254. padding-bottom:9px;
  255. letter-spacing:4px;
  256. }
  257. #blogtitle a {
  258. color:{color:title};
  259. }
  260.  
  261. /*sidebar shit*/
  262. div { position:relative; }
  263.  
  264. input[type=checkbox] {
  265. position:absolute;
  266. top:0;
  267. left:0;
  268. width:100%;
  269. height:100%;
  270. opacity:0;
  271. }
  272.  
  273. h2 {
  274. display:navigate;
  275. font-family:helvetica;
  276. font-weight:lighter;
  277. width:100px;
  278. font-size:9px;
  279. letter-spacing:0.05em;
  280. text-align:left;
  281. font-style:none;
  282. text-transform:lowercase;
  283. line-height:180%;
  284. padding-left:3px;
  285. padding-right:3px;
  286. margin-left:5px;
  287. z-index:9999;
  288. color:{color:sidelink};
  289. }
  290. h2 a {
  291. color:{color:sidelink} !important;
  292.  
  293. }
  294.  
  295. label {
  296. cursor:pointer;
  297. }
  298. label {
  299. position:relative;
  300. display:block;
  301. padding-left:10px;
  302. font-family:helvetica;
  303. font-weight:lighter;
  304. z-index:9999;
  305. }
  306.  
  307. label:before {
  308. content:"";
  309. position:absolute;
  310. width:0;
  311. height:0;
  312. top:50%;
  313. left:10px;
  314. z-index:9999;
  315.  
  316. }
  317.  
  318. input[type=checkbox]:checked ~ h2 label:before {
  319. margin-left:-4px;
  320. margin-top:-4px;
  321. z-index:9999;
  322. }
  323.  
  324. #description {
  325. max-height:0;
  326. overflow:hidden;
  327. padding-left:30px;
  328. transition:max-height 0.8s ease;
  329. font-family:helvetica;
  330. font-weight:lighter;
  331. font-size:9px;
  332. letter-spacing:0.02em;
  333. width:170px;
  334. line-height:150%;
  335. }
  336.  
  337. input[type=checkbox]:checked ~ h2 ~ #description {
  338. max-height:250px; /*MAX HEIGHT OF SIDEBAR CONTENT CHANGED HERE*/
  339. z-index:9999;
  340. }
  341.  
  342. .text_box:before {
  343. content :"";
  344. position :absolute;
  345. margin-left:2px;
  346. width:2px;
  347. height:16px;
  348. background:#f8f8f8;
  349. filter:alpha(opacity=100);
  350. -moz-opacity:1;
  351. -khtml-opacity:1;
  352. opacity:1;
  353. z-index:999;
  354. transition-duration: 0.8s;
  355. -moz-transition-duration: 0.8s;
  356. -webkit-transition-duration: 0.8s;
  357. -o-transition-duration: 0.8s;
  358. }
  359.  
  360. input[type="checkbox"]:hover ~ h2 .text_box:before {
  361. width:2px;
  362. background:#dddddd;
  363. transition-duration: 0.8s;
  364. -moz-transition-duration: 0.8s;
  365. -webkit-transition-duration: 0.8s;
  366. -o-transition-duration: 0.8s;
  367. }
  368.  
  369. input[type="checkbox"]:checked ~ h2 .text_box:before {
  370. width:100px;
  371. background:#f8f8f8;
  372. transition-duration: 0.8s;
  373. -moz-transition-duration: 0.8s;
  374. -webkit-transition-duration: 0.8s;
  375. -o-transition-duration: 0.8s;
  376. }
  377.  
  378. #pagination {
  379. width:400px;
  380. bottom:20px;
  381. padding-bottom:30px;
  382. font-size:8px;
  383. font-family:helvetica;
  384. text-align:center;
  385. letter-spacing:6px;
  386. {block:if500px}
  387. width:500px;
  388. {/block:if500px}
  389. }
  390. #pagination a {
  391. color:{color:sidelink};
  392. }
  393. .jump_page {
  394. padding:10px;
  395. color:{color:sidelink};
  396. border-top:2px solid {color:background};
  397. }
  398. .jump_page:hover {
  399. color:{color:sidelink hover};
  400. border-top:2px solid #eeeeee;
  401. }
  402. .current_page {
  403. padding:10px 8px 10px 10px;
  404. color:{color:sidelink};
  405. border-top:2px solid {color:border};
  406. }
  407.  
  408.  
  409. .quote {
  410. font-family:helvetica;
  411. font-size:9px;
  412. font-style:none;
  413. text-align:center;
  414. letter-spacing:0.02em;
  415. line-height:125%;
  416. padding:10px;
  417. border:2px solid #f8f8f8;
  418. }
  419.  
  420. #source {
  421. font-size:7px;
  422. text-transform:uppercase;
  423. letter-spacing:4px;
  424. text-align:center;
  425. padding:8px 5px 5px 5px;
  426. background-color:#f8f8f8;
  427. }
  428.  
  429. #source a {
  430. color:{color:text};
  431. border-bottom:1px solid #b8b8b8;
  432. }
  433.  
  434. /*AUDIO*/
  435.  
  436. .playbutton {
  437. width:20px;
  438. height:30px;
  439. overflow:hidden;
  440. position:relative;
  441. opacity:0.8;
  442. z-index:100;
  443. margin:9px 18px 7px 10px;
  444. }
  445.  
  446. .playbox {
  447. margin-top:10px;
  448. margin-left:13px;
  449. opacity:0.8;
  450. border:1px solid #e5e5e5;
  451. position: absolute;
  452. z-index: 100;
  453. }
  454.  
  455. .audiodata {
  456. font-size:8px;
  457. letter-spacing:2px;
  458. color:{color:text};
  459. padding:1px 10px 10px 10px;
  460. text-transform:uppercase;
  461. line-height:200%;
  462. height:55px;
  463. width:305px;
  464. margin-top:0px;
  465. margin-left:75px;
  466. text-align:right;
  467. {block:if500px}
  468. width:405px;
  469. {/block:if500px}
  470. }
  471.  
  472.  
  473. .caption {
  474. text-align:left;
  475. font-size:9px;
  476. letter-spacing:0.02em;
  477. padding:3px 20px 3px 30px;
  478. font-family:helvetica;
  479. display:block;
  480. color:{color:text};
  481. background:#f5f5f5;
  482. }
  483. .caption img {
  484. max-width:360px;
  485. }
  486. .caption a {
  487. color:{color:text};
  488. border-bottom:1px solid #b8b8b8;
  489. }
  490.  
  491. blockquote {
  492. padding-left:12px;
  493. margin-left:0px;
  494. border-left:1px solid #ddd;
  495. width:95%;
  496. }
  497.  
  498. #asker {
  499. text-align:left;
  500. margin-top:0px;
  501. margin-bottom:-10px;
  502. font-style:none;
  503. padding:10px;
  504. background-color:#f5f5f5;
  505. }
  506.  
  507. #asker a {
  508. background:none;
  509. border-bottom:1px solid #b8b8b8;
  510. color:{color:text}
  511. }
  512.  
  513. #asked {
  514. font-size:9px;
  515. font-family:helvetica;
  516. letter-spacing:0px;
  517. background:none;
  518. }
  519.  
  520. #answer {
  521. font-family:helvetica;
  522. font-size:9px;
  523. font-style:none;
  524. text-align:left;
  525. letter-spacing:0px;
  526. padding:2px 10px 5px 10px;
  527. margin-top:7px;
  528. margin-bottom:5px;
  529. border:2px solid #f8f8f8;
  530. }
  531.  
  532.  
  533.  
  534. ol.notes {
  535. padding-bottom:2%;
  536. width:360px;
  537. list-style-type:upper-roman;
  538. text-align:left;
  539. font-size:9px;
  540. {block:if500px}
  541. width:460px;
  542. {/block:if500px}
  543. }
  544.  
  545. ol.notes li.note{
  546. border-bottom:1px solid {color:border};
  547. padding:2%;
  548. }
  549.  
  550. ol.notes li.note img.avatar{
  551. width:0px;
  552. height:0px;}
  553.  
  554. #fade {
  555. display: none;
  556. background: #000;
  557. position: fixed;
  558. left: 0;
  559. top: 0;
  560. width: 100%;
  561. height: 100%;
  562. opacity: .80;
  563. z-index: 9999;
  564. }
  565.  
  566. .popup_block{
  567. display: none;
  568. background:transparent;
  569. padding: 20px;
  570. float: left;
  571. position: fixed;
  572. top: 50%;
  573. left: 50%;
  574. z-index: 99999;
  575. }
  576.  
  577. *html #fade {
  578. position: absolute;
  579. }
  580.  
  581. *html .popup_block {
  582. position: absolute;
  583. }
  584.  
  585.  
  586. .showhide_element {
  587. display: none;
  588. }
  589.  
  590. #credit {
  591. bottom:15px;
  592. text-align:center;
  593. font-size:7px;
  594. letter-spacing:3px;
  595. font-family:helvetica;
  596. opacity:1;
  597. width:400px;
  598. {block:if500px}
  599. width:500px;
  600. {/block:if500px}
  601. }
  602.  
  603. #cr {
  604. bottom:0px;
  605. right:0px;
  606. position:fixed;
  607. z-index:1000;
  608. padding:8px 9px;
  609. background-color:{color:background};
  610. }
  611. #cr a {
  612. font-size:7px;
  613. line-height:8px;
  614. background-color:transparent;
  615. font-family:arial;
  616. letter-spacing:0px;
  617. color:#4f4f4f;
  618.  
  619.  
  620. </style></head>
  621. <body>
  622. <div id="sidebar">
  623. {block:ifsidebarimg}<div id="sidebar img"><img src="{image:sidebar}"/></div>{/block:ifsidebarimg}
  624. <div id="blogtitle"><a href="/">paracosm</a></div>
  625. <div>
  626. <input type="checkbox" id="description">
  627. <h2><div class="text_box"><label for="description">about</label></div></h2>
  628. <div id="description">trish, twenty one, gemini.<br>i like cute boys, romance novels, indian food, cold coffee and pastel colors.
  629. <ul>
  630. <li>bae #1: harry styles</li>
  631. <li>bae #2: taylor swift</li>
  632. <li>bae #3: bellamy blake</li>
  633.  
  634.  
  635. </ul></div>
  636. </div>
  637.  
  638. <!-- 1ST LINK -->
  639. <div>
  640. <input type="checkbox" id="01">
  641. <h2><div class="text_box"><label for="01">{text:link 1 title}</label></div></h2>
  642. <div id="description">
  643. <!-- CONTENT BEGINS -->
  644. <ul>
  645. <li><a href="/tagged/!">all edits</a></li>
  646. <li><a href="/tagged/typo">typography</a></li>
  647. <li><a href="/tagged/1k">1k notes</a></li>
  648. <li><a href="/tagged/5k">5k notes</a></li>
  649. <li><a href="/icons">icons</a></li>
  650. </ul>
  651. <!-- CONTENT ENDS -->
  652. </div>
  653. </div>
  654.  
  655. <!-- 2ND LINK -->
  656. <div><input type="checkbox" id="02">
  657. <h2><div class="text_box"><label for="02">{text:link 2 title}</label></div></h2>
  658. <div id="description">
  659. <!-- CONTENT BEGINS -->
  660. <ul>
  661. <li><a href="/tv">tv shows</a></li>
  662. <li><a href="/books">books</a></li>
  663. <li><a href="/ficrec">fic rec</a></li>
  664. <li><a href="/tagged/tunes">music</a></li>
  665. <li><a href="/blogroll">blogroll</a></li>
  666. <li><a href="/tagss">all tags + links</a></li>
  667. </ul>
  668. <!-- CONTENT ENDS -->
  669. </div>
  670. </div>
  671.  
  672. <!-- 3RD LINK -->
  673. <div>
  674. <input type="checkbox" id="03">
  675. <h2><div class="text_box"><label for="03">{text:link 3 title}</label></div></h2>
  676. <div id="description">
  677. <!-- CONTENT BEGINS -->
  678. currently watching:
  679. <ul>
  680. <li><a href="/tagged/the 100">the 100</a></li>
  681. </ul>
  682. <p>currently reading:
  683. <ul>
  684. <li>siege and storm by leigh bardugo</li>
  685. <li>this time around by chantal fernando</li>
  686. <li>big little lies by liane moriarty</li>
  687.  
  688. </ul>
  689. <!-- CONTENT ENDS -->
  690. </div>
  691. </div>
  692.  
  693. <!-- ASK LINK -->
  694. <div>
  695. <input type="checkbox" id="ask">
  696. <h2><a href="#?w=500" rel="askpop" class="poplight"><div class="text_box"><label for="ask">queries</label></div></a></h2>
  697. </div>
  698.  
  699. </div>
  700.  
  701. <div id="entry">
  702.  
  703. {block:Posts}
  704.  
  705. <div class="post">
  706.  
  707. {block:Text}
  708. {block:Title}<h1>{Title}</h1>{/block:Title}
  709. {Body}
  710. {/block:Text}
  711.  
  712.  
  713. {block:Photo}
  714. {block:if400px}
  715. <center><a href="{Permalink}"><img src="{PhotoURL-400}"></a></center>
  716. {/block:if400px}
  717. {block:if500px}
  718. <center><a href="{Permalink}"><img src="{PhotoURL-500}"></a></center>
  719. {/block:if500px}
  720.  
  721.  
  722. {/block:Photo}
  723.  
  724.  
  725. {block:Photoset}
  726. {block:if400px}
  727. {Photoset-400}
  728. {/block:if400px}
  729. {block:if500px}
  730. {Photoset-500}
  731. {/block:if500px}
  732.  
  733. {/block:Photoset}
  734.  
  735. {block:Quote}
  736. {block:Source}
  737. <div id="source">{Source}</div>
  738. {/block:Source}
  739. <div class="quote">❝ {Quote} ❞</div>
  740. {/block:Quote}
  741.  
  742.  
  743. {block:Link}
  744. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  745. {block:Description}
  746. <div style="padding-left:5px;padding-right:5px;">{Description}</div>
  747. {/block:Description}
  748. {/block:Link}
  749.  
  750.  
  751. {block:Chat}
  752. {block:Title}<h1>{Title}</h1>{/block:Title}
  753. {block:Lines}
  754. {block:Label}<b>{Label}</b>{/block:Label} {Line}<br>
  755. {/block:Lines}
  756. {/block:Chat}
  757.  
  758. {block:Audio}
  759.  
  760. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div></div>
  761. <div class="audiodata"><br>{block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br><b>{Artist}</b>{/block:Artist}</div>
  762.  
  763. {/block:Audio}
  764.  
  765. {block:Caption}
  766. {block:ifshowcaptions}
  767. <span class="caption">{Caption}</span>
  768. {/block:ifshowcaptions}
  769. {/block:Caption}
  770. {/block:Audio}
  771.  
  772.  
  773.  
  774. {block:Video}
  775. {block:if400px}
  776. {Video-400}
  777. {/block:if400px}
  778. {block:if500px}
  779. {Video-500}
  780. {/block:if500px}
  781.  
  782. {block:Caption}
  783. {block:ifshowcaptions}
  784. <span class="caption">{Caption}</span>
  785. {/block:ifshowcaptions}
  786. {/block:Caption}
  787. {/block:Video}
  788.  
  789.  
  790. {block:Answer}
  791. <div id="asker">{Asker} <font id="asked">asked:</font>
  792. <font-style="font-family:times new roman;"><i>{Question}</i></font></div>
  793. <div id="answer">{Answer}</div>
  794. {/block:Answer}
  795.  
  796. {block:IndexPage}
  797. <div class="info">{block:Date}<a href="{Permalink}">{DayOfMonth} . {MonthNumberWithZero} . {ShortYear}</small>{/block:Date} {block:HasTags}{block:Tags}
  798. <a href="/tagged/{Tag}">{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}{block:NoteCount}&nbsp;&nbsp; <a href="{Permalink}">+{NoteCount}</a>{/block:NoteCount}</div>
  799. {/block:IndexPage}
  800.  
  801. {block:PermalinkPage}
  802. <div class="info">{block:Date}<a href="{Permalink}">{DayOfMonth} . {MonthNumberWithZero} . {ShortYear}</small></a>{/block:Date} {block:HasTags}{block:Tags}
  803. <a href="/tagged/{Tag}">{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}{block:NoteCount}&nbsp;&nbsp; <a href="{Permalink}">+{NoteCount}</a>{/block:NoteCount}</div>
  804. <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>
  805. {/block:PermalinkPage}
  806.  
  807. </div>
  808. {/block:Posts}
  809.  
  810. {block:PermalinkPage}
  811. {block:PostNotes}
  812. <div id="notes">{PostNotes}</div>
  813. {/block:PostNotes}
  814. {/block:permalinkpage}
  815.  
  816. <div id="pagination">
  817. {block:IndexPage}
  818. {block:Pagination}
  819. {block:PreviousPage}
  820. <a href="{PreviousPage}">←</a>&nbsp;&nbsp;
  821. {/block:PreviousPage}
  822. {block:JumpPagination length="5"}
  823. {block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}
  824. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  825. {/block:JumpPagination}
  826. {block:NextPage}
  827. &nbsp;&nbsp;<a href="{NextPage}">→</a>
  828. {/block:NextPage}
  829. {/block:Pagination}
  830. {/block:IndexPage}
  831. </div>
  832.  
  833. <div id="cr"><script language="JavaScript">
  834. var ref = (''+document.referrer+'');
  835. var w_h = window.screen.width + " x " + window.screen.height;
  836. document.write('<script src="http://freehostedscripts.net/ocounter.php?site=ID4496455&e1=&e2=&r=' + ref + '&wh=' + w_h + '"><\/script>');
  837. </script></div>
  838.  
  839. </div>
  840.  
  841. </div>
  842.  
  843. <div id="askpop" class="popup_block">
  844. <center>
  845. <h3>{text:ask title}</h3>
  846. <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>
  847. </center>
  848. </div>
  849. </div></div></div></div></div></div></div></div></div></div>
  850.  
  851. </body>
  852. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement