Advertisement
rasperries

narry 3

May 31st, 2014
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.67 KB | None | 0 0
  1. <!--
  2.  
  3. theme by septim
  4.  
  5. ╔╔ ══ ══ Rules:
  6. ║║ -do not use as base
  7. ╚╚ ══ ╗╗ -do not steal bits of code
  8. ║║ -do not remove credits
  9. ══ ══ ╝╝
  10.  
  11.  
  12. -->
  13.  
  14.  
  15.  
  16.  
  17. <!DOCTYPE html>
  18. <head>
  19.  
  20. <title>{Title}</title>
  21.  
  22. <link rel="shortcut icon" href="{Favicon}">
  23. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  24. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  25.  
  26. <!--Default Variables-->
  27.  
  28. <meta name="color:Background" content="#ffffff"/>
  29. <meta name="color:Text" content="#cccccc"/>
  30. <meta name="color:link" content="#a7a7a7"/>
  31. <meta name="color:title"content="#070707"/>
  32. <meta name="color:blog title"content="#aaaaaa"/>
  33. <meta name="color:scrollbar" content="#d5d5d5" />
  34. <meta name="color:accents" content="#f4f4f4"/>
  35. <meta name="color:Post Shadow" content="#aaaaaa"/>
  36. <meta name="color:link hover" content="#aaaaaa"/>
  37. <meta name="color:posts" content="#ffffff"/>
  38. <meta name="color:borders" content="#eeeeee"/>
  39. <meta name="if:Infinite scrolling" content="0"/>
  40. <meta name="if:Hide Captions" content="0"/>
  41. <meta name="if:Show Tags" content="0"/>
  42. <meta name="if:Rounded Posts" content="0"/>
  43. <meta name="if:Post Shadow" content="1"/>
  44. <meta name="if:Hover Captions" content="1"/>
  45.  
  46.  
  47.  
  48. <meta name="image:sidebar image" content=""/>
  49.  
  50. <meta name="text:Link 1 URL" content="" />
  51. <meta name="text:Link 1" content="" />
  52. <meta name="text:Link 2 URL" content="" />
  53. <meta name="text:Link 2" content="" />
  54. <meta name="text:Link 3 URL" content="" />
  55. <meta name="text:Link 3" content="" />
  56.  
  57. <meta name="if:show sidebar image" content="1"/>
  58.  
  59. <meta name="text:post spacing" content="150"/>
  60.  
  61.  
  62.  
  63. <!-- jquery -->
  64.  
  65.  
  66. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  67.  
  68. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  69.  
  70. <script>
  71.  
  72. (function($){
  73.  
  74. $(document).ready(function(){
  75.  
  76. $("a[title]").style_my_tooltips({
  77.  
  78. tip_follows_cursor:true,
  79.  
  80. tip_delay_time:30,
  81.  
  82. tip_fade_speed:300,
  83.  
  84. attribute:"title"
  85.  
  86. });
  87.  
  88. });
  89.  
  90. })(jQuery);
  91.  
  92. </script>
  93.  
  94. <script>
  95. $(document).ready(function(){
  96. $("#bar").click(function(){
  97. $("#standardlinks").slideToggle("slow");
  98. });
  99. });
  100. </script>
  101.  
  102.  
  103. <!--CSS customization here. -->
  104.  
  105. <style type="text/css">
  106.  
  107. #s-m-t-tooltip{
  108. font-size:9px;
  109. position:absolute;
  110. margin-top: 15px;
  111. border:1px solid {color:text};
  112. z-index:9999;
  113. font-family:verdana;
  114. background:white;
  115. text-transform:lowercase;
  116. padding:1px 5px ;
  117. -webkit-transition:all 0.3s;
  118. -moz-transition:all 0.3s;
  119. -ms-transition:all 0.3s;
  120. -o-transition:all 0.3s;
  121. transition:all 0.3s;
  122. }
  123.  
  124.  
  125.  
  126.  
  127.  
  128. /*scrollbar*/
  129. ::-webkit-scrollbar{height: 5px;
  130. width: 8px;
  131. -webkit-border-radius: 0px;
  132. background-color:{color:posts}}
  133. ::-webkit-scrollbar-thumb{background-color:{color:posts};
  134. border:1px solid {color:scrollbar};}
  135. ::-webkit-scrollbar-track{background-color:{color:background};}
  136.  
  137.  
  138.  
  139.  
  140.  
  141.  
  142.  
  143. #text {margin-bottom:100px;
  144. font-size:6px;
  145. letter-spacing:1px;
  146. margin-top:10px;
  147. text-transform:uppercase;}
  148. /*main structure*/
  149. blockquote {padding:5px 0 5px 10px;
  150. border-left:1px solid {color:accents};
  151. margin-left:10px;
  152. }
  153. .caption blockquote {text-align:justify;
  154. padding:0 0 0 10px;
  155. border-left:1px solid {color:accents};}
  156.  
  157.  
  158. body {
  159. background:{color:background}; margin: 0;
  160. color:{color:text};
  161. font-family:helvetica;
  162. font-size:9px;
  163. text-align:justify;
  164. line-height:15px;}
  165.  
  166.  
  167. a {
  168. color:{color:link};
  169. text-decoration:none;
  170. border-bottom:1px dotted transparent;
  171. -webkit-transition:all 0.6s;
  172. -moz-transition:all 0.6s;
  173. -ms-transition:all 0.6s;
  174. -o-transition:all 0.6s;
  175. transition:all 0.6s;
  176. }
  177.  
  178. a:hover {border-bottom:1px dotted {color:link hover};
  179. -webkit-transition:all 0.6s;
  180. -moz-transition:all 0.6s;
  181. -ms-transition:all 0.6s;
  182. -o-transition:all 0.6s;
  183. transition:all 0.6s; }
  184.  
  185. img{
  186. opacity:1;
  187. border:none;
  188. text-decoration:none}
  189.  
  190.  
  191. b, strong {
  192. color:{color:title}}
  193. i, em {
  194. color:{color:text}}
  195. p {
  196. margin-top:5px;
  197. margin-bottom:5px}
  198. ol {
  199. list-style:normal;}
  200. ul {
  201. list-style:square;}
  202.  
  203. small {
  204. font-size:9px;}
  205.  
  206. big {
  207. font-size:12px;}
  208.  
  209.  
  210.  
  211.  
  212. #title {
  213. font-weight:bold;
  214. text-transform:uppercase;
  215. margin-left:20px;
  216. margin-top:20px;
  217. margin-bottom:5px;
  218. text-align:left;
  219. color:{color:title};}
  220. #title a {color:{color:title};}
  221.  
  222.  
  223.  
  224.  
  225. /*header*/
  226. #headers {
  227. width:225px;
  228. position:fixed;
  229. bottom:300px;
  230. margin-left:-295px;
  231. text-align:left}
  232.  
  233.  
  234. #blogt {font-size:20px;
  235. font-weight:bold;
  236. line-height:20px;
  237. letter-spacing:-1px;
  238. margin-bottom:5px;
  239. text-align:center;
  240. text-transform:lowercase;}
  241.  
  242. #blogt a {color:{color:blog title};
  243. }
  244. #bar {padding:5px 10px;
  245. border:1px solid {color:borders};
  246. cursor:help;
  247. font-size:8px;
  248. letter-spacing:1px;
  249. text-transform:uppercase;
  250. font-weight:bold;
  251. color:{color:blog title};
  252. background:{color:posts};
  253. margin-top:10px;}
  254.  
  255. #standardlinks {
  256. width:223px;
  257. background:{color:background};
  258. display:none;
  259. position:absolute;
  260. font-size:8px;
  261. letter-spacing:1px;
  262. text-transform:uppercase;
  263. font-weight:bold;
  264. border:1px solid {color:borders};
  265. border-top:0px;
  266. }
  267. #standardlinks a {padding:5px 10px;
  268. border-bottom:1px solid {color:borders};
  269. display:block;}
  270. #standardlinks a:last-of-type {border-bottom:0px;}
  271. #standardlinks a:hover {background:{color:borders};
  272. color:{color:link};}
  273.  
  274. #bar:after {position:absolute;
  275. content:'▾';
  276. font-size:14px;
  277. right:10px;
  278. margin-top:-2px;}
  279.  
  280. #description {margin-top:10px;
  281. font-size:9px;text-align:justify;padding-left:5px;width:210px;}
  282.  
  283. #imag img {display:block;
  284. width:215px;
  285. padding:4px;
  286. background-color:{color:posts};
  287. border:1px solid {color:borders};}
  288.  
  289.  
  290. /*pagination*/
  291. #pagination {
  292. width:390px;
  293. padding:1px 8px;
  294. background:{color:posts};
  295. text-align:center;
  296. border:1px solid {color:accents};
  297. font-size:9px;
  298. font-family:helvetica;
  299. margin-top:50px;
  300. {block:IfRoundedPosts}
  301. border-radius:10px;
  302. {/block:IfRoundedPosts}
  303. {block:IfPostShadow}
  304. box-shadow:10px 10px {color:post shadow};
  305. {/block:IfPostShadow}
  306. }
  307. #pagination a {
  308. margin:0 5px;
  309. display:inline-block;
  310. border:none;
  311. }
  312.  
  313. .current_page {margin:0 5px;
  314. text-decoration:none;
  315. font-weight:bold;
  316. display:inline-block;}
  317.  
  318.  
  319. /*container*/
  320. #con {
  321. left:50%;
  322. margin-left:-181px;
  323. position:absolute;
  324. }
  325.  
  326.  
  327.  
  328. /*posts*/
  329.  
  330. #entries {
  331. margin-top:75px;
  332. width:352px;
  333. }
  334.  
  335.  
  336.  
  337. #posts {overflow:hidden;
  338. width:400px;
  339. {block:IfPostShadow}
  340. box-shadow:10px 10px {color:post shadow};
  341. {/block:IfPostShadow}
  342. background:{color:posts};
  343. {block:IfRoundedPosts}
  344. border-radius:10px;
  345. {/block:IfRoundedPosts}
  346. border:1px solid {color:accents};
  347. {block:IndexPage}
  348. margin-bottom:{text:post spacing}px;
  349. {/block:IndexPage}
  350. {block:PermalinkPage}
  351. margin-bottom:50px;
  352. {/block:PermalinkPage}
  353.  
  354. }
  355. #posts img {
  356. max-width:400px;
  357. display:block;
  358.  
  359. }
  360. .photo img {width:400px;}
  361. .photoset {display:block;
  362. margin-bottom:-3px;}
  363.  
  364.  
  365.  
  366. #titlequote{
  367. line-height:15px;
  368. font-weight:;
  369. border-bottom:1px solid {color:accents};
  370. padding:15px;
  371. color:{color:title};
  372. }
  373.  
  374. #source {padding:15px;text-align:right;}
  375.  
  376. #posts li, #posts blockquote {max-width: 100%;}
  377. .caption img{max-width:400px;}
  378. .caption {
  379. {block:IfHoverCaptions}
  380. width:360px;
  381. margin:10px;
  382. position:absolute;
  383. background:{color:posts};
  384. border:1px solid {color:accents};
  385. opacity:0;-webkit-transition:all 0.6s;
  386. -moz-transition:all 0.6s;
  387. -ms-transition:all 0.6s;
  388. -o-transition:all 0.6s;
  389. transition:all 0.6s;
  390. {/block:IfHoverCaptions}
  391. {block:IfRoundedPosts}
  392. border-radius:10px;
  393. {/block:IfRoundedPosts}
  394. padding:9px;
  395. text-transform:none;
  396. {block:IfHideCaptions}
  397. {block:IndexPage}
  398. display:none;
  399. {/block:IndexPage}
  400. {/block:IfHideCaptions}
  401. }
  402. {block:IfHoverCaptions}
  403. #posts:hover .caption {opacity:1;-webkit-transition:all 0.6s;
  404. -moz-transition:all 0.6s;
  405. -ms-transition:all 0.6s;
  406. -o-transition:all 0.6s;
  407. transition:all 0.6s; }
  408. {/block:IfHoverCaptions}
  409.  
  410.  
  411. /*audio*/
  412. .tumblr_audio_player {height:50px;
  413. width:315px;
  414. {block:IfRoundedPosts}
  415. border-bottom-left-radius:10px;
  416. border-bottom-right-radius:10px;
  417. {/block:IfRoundedPosts}
  418. }
  419. .player {
  420. width:400px;
  421. overflow:hidden;
  422. color:black;
  423. background:{color:posts};
  424. z-index:2;
  425. border-top:1px solid {color:Accents};
  426. {block:IfRoundedPosts}
  427. border-bottom-left-radius:10px;
  428. border-bottom-right-radius:10px;
  429. {/block:IfRoundedPosts}}
  430. .sex {
  431. height:50px;
  432. overflow:hidden;}
  433. .audioinfo {
  434. padding:15px;
  435. text-transform:uppercase;
  436. font-size:8px;
  437. letter-spacing:1px;
  438. }
  439. .audioinfo b {font-size:10px;
  440. letter-spacing:0;}
  441.  
  442.  
  443.  
  444. .tt {padding:15px;
  445. }
  446. .tt img {max-width:470px!important;}
  447.  
  448.  
  449.  
  450. /*asks*/
  451. .q {
  452. padding:15px;
  453. border-bottom:1px solid {color:accents};
  454. }
  455. .as {
  456. font-weight:bold;
  457. text-transform:lowercase;}
  458.  
  459. .a {
  460. margin:15px}
  461.  
  462. .a img {max-width:470px!important;}
  463.  
  464.  
  465.  
  466. .chat ol {
  467. padding:0;
  468. line-height:180%;
  469. list-style:none;
  470. }
  471.  
  472. .line.odd {
  473. background:{color:accents};
  474. padding:5px;
  475. }
  476.  
  477. .line.even {
  478. padding:5px;
  479. }
  480.  
  481. .label {font-weight:bold;
  482. padding-right:1px;
  483. letter-spacing:1px;
  484. text-transform:uppercase;
  485. color:{color:title};
  486. }
  487.  
  488.  
  489.  
  490.  
  491.  
  492. /*permalink and notes*/
  493.  
  494.  
  495. #permalink {
  496. text-align:left;
  497. width:390px;
  498. padding:5px;
  499. {block:IfRoundedPosts}
  500. border-top-left-radius:10px;
  501. border-top-right-radius:10px;
  502. {/block:IfRoundedPosts}
  503. border-bottom:1px solid {color:accents};
  504. font-size:9px;
  505. font-family:verdana;
  506. text-transform:uppercase;
  507. }
  508. #permalink a {margin-right:10px;
  509. }
  510.  
  511. .tags {{block:ifNotShowTags}
  512. {block:IndexPage}
  513. display:none;
  514. {/block:IndexPage}
  515. {/block:ifNotShowTags}
  516. word-break:break-all;
  517. font-family:helvetica;
  518. font-size:9px;
  519. width:390px;
  520. padding:5px;
  521. {block:IfRoundedPosts}
  522. border-bottom-left-radius:10px;
  523. border-bottom-right-radius:10px;
  524. {/block:IfRoundedPosts}
  525. border-top:1px solid {color:accents};
  526.  
  527. }
  528. .tags a{
  529. text-transform:none;
  530. margin-right:10px;
  531. text-decoration:none;}
  532.  
  533.  
  534. .pagenotes {margin-bottom:100px;
  535. {block:IndexPage}
  536. display: none!important;
  537. {/block:IndexPage}
  538. {block:PermalinkPage}
  539. width:370px;
  540. padding:15px;
  541. background:{color:posts};
  542. border:1px solid {color:accents};
  543. {/block:PermalinkPage}
  544. text-align:left;
  545. {block:IfPostShadow}
  546. box-shadow:10px 10px {color:post shadow};
  547. {/block:IfPostShadow}
  548. background:{color:posts};
  549. {block:IfRoundedPosts}
  550. border-radius:10px;
  551. {/block:IfRoundedPosts}
  552.  
  553. }
  554. .pagenotes img {
  555. display:none!important;}
  556. .pagenotes li {
  557. list-style-type:none;
  558. padding:5px 0px;
  559. text-align:left;
  560. margin:0 0 0 -40px;
  561. font-size:9px;
  562. text-transform:uppercase;
  563.  
  564. }
  565. .t {
  566. font-size:12px;
  567. font-weight:bold;
  568. color:{color:title};
  569. text-transform:uppercase;}
  570.  
  571.  
  572.  
  573. .dic {width:370px;background:{color:accents};
  574. text-align:right;
  575. padding:5px;
  576. margin:-10px 0 0 -10px;}
  577.  
  578. .dic a {
  579. font-size:10px;
  580. height:12px;
  581. padding:0;
  582. margin-right:2px;
  583. line-height:12px;
  584. display:inline-block;
  585. text-align:center;
  586. width:12px;
  587. background:{color:posts};}
  588.  
  589.  
  590.  
  591. .dac {float:right;
  592. margin-right:-8px;
  593. text-transform:lowercase;
  594. margin-top:2px;}
  595.  
  596. .dac a {
  597. font-size:8px;
  598. height:12px;
  599. padding:0;
  600. line-height:11px;
  601. display:block;
  602. text-align:center;
  603. width:12px;
  604. background:{color:posts};}
  605.  
  606.  
  607. /* TO TOP BUTTON */
  608. #toTop {
  609. text-align:center;
  610. margin:auto;
  611. position:fixed;
  612. display:none;
  613. bottom:20px;
  614. font-size:24px;
  615. cursor:pointer;
  616. }
  617.  
  618. #right_container {
  619. position: fixed;
  620. top: 30%;
  621. right: 50px;
  622. z-index:100;
  623. font-size: 18px;
  624. }
  625.  
  626. #theme{
  627. position:fixed;
  628. bottom:12px;
  629. right:12px;
  630. -webkit-border-radius:100px;
  631. padding:3px 5px 2px;
  632. text-transform:lowercase;
  633. -webkit-transition:0.6s ease-in;
  634. cursor:default;
  635. font-size:8px;
  636. color:white;
  637. }
  638.  
  639. #theme:hover{
  640. background-color:{color:white};
  641. color:white;
  642. }
  643. {CustomCSS}
  644.  
  645.  
  646.  
  647. </style>
  648.  
  649. {block:ifinfinitescrolling}
  650. {block:indexpage}
  651. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  652. <script src="http://static.tumblr.com/misqj4e/wRnm75f7d/totop.js" type="text/javascript"></script>
  653. <script type="text/javascript">
  654. $(function() {
  655. $(window).scroll(function() {
  656. if($(this).scrollTop() != 0) {
  657. $('#toTop').fadeIn();
  658. } else {
  659. $('#toTop').fadeOut();
  660. }
  661. });
  662.  
  663. $('#toTop').click(function() {
  664. $('body,html').animate({scrollTop:0},800);
  665. });
  666. });
  667. </script>
  668.  
  669. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  670. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
  671.  
  672. {/block:indexpage}
  673. {/block:ifinfinitescrolling}
  674.  
  675.  
  676.  
  677.  
  678.  
  679.  
  680.  
  681. </head>
  682.  
  683. <body>
  684. {block:ifinfinitescrolling}
  685. <div id="right_container">
  686. <div id="toTop"><img src="http://24.media.tumblr.com/2dfa9783973861c243e1c7b3fb32818d/tumblr_mzxvwvXKgV1ql1itgo8_250.gif" ></div>
  687. </div>
  688. {/block:ifinfinitescrolling}
  689.  
  690. <div id="con">
  691.  
  692.  
  693. <div id="headers">
  694.  
  695. {block:ifshowsidebarimage}
  696. <div id="imag"><a href="/">
  697.  
  698. <script language="JavaScript">
  699. <!--
  700.  
  701. /*
  702. Random Image Script- By JavaScript Kit (http://www.javascriptkit.com)
  703. Over 400+ free JavaScripts here!
  704. Keep this notice intact please
  705. */
  706.  
  707. function random_imglink(){
  708. var myimages=new Array()
  709. //specify random images below. You can have as many as you wish
  710. myimages[1]="http://25.media.tumblr.com/ff27a52fcaba1bc1d224850188e3e02c/tumblr_mztv6if0Vn1ql1itgo3_250.gif"
  711. myimages[2]="http://24.media.tumblr.com/2dfa9783973861c243e1c7b3fb32818d/tumblr_mzxvwvXKgV1ql1itgo8_250.gif"
  712. myimages[3]="http://31.media.tumblr.com/ce7b01a8bd9634f907173b94e2e32e96/tumblr_mztv6if0Vn1ql1itgo5_250.gif"
  713. myimages[4]="http://37.media.tumblr.com/e38677d685e0f6e6b58b7d7e9f6be8e1/tumblr_mztv6if0Vn1ql1itgo8_250.gif"
  714.  
  715.  
  716.  
  717.  
  718.  
  719.  
  720. var ry=Math.floor(Math.random()*myimages.length)
  721. if (ry==0)
  722. ry=1
  723. document.write('<img src="'+myimages[ry]+'" border=0>')
  724. }
  725. random_imglink()
  726. //-->
  727. </script></a>
  728. </div>
  729. {/block:ifshowsidebarimage}
  730. <div id="bar">navigate</div>
  731. <div id="standardlinks">
  732. <a href="/ask">inbox</a>
  733. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  734. {block:ifLink2}<a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:ifLink2}
  735. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:ifLink3}
  736. <a href="/tagss">links/tags</a>
  737. <a href="/archive">archive</a>
  738. </div>
  739. <div id="description">{Description}</div>
  740. </div>
  741.  
  742.  
  743.  
  744. <div id="entries">
  745. <div class = "autopagerize_page_element">
  746. {block:Posts}
  747. <div id="posts">
  748. {block:Date}
  749. <div id="permalink">
  750. <div class="dac"><a href="{ReblogURL}" target="_blank" title="reblog"><font color="C9C8E5">&hearts;</font></a></div>
  751. <a href="{Permalink}">{MonthNumber}.{DayofMonth}</a>{block:NoteCount}<a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}
  752. {block:PermalinkPage}
  753. {block:ContentSource}
  754. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  755. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  756. {/block:SourceLogo}
  757. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  758. {/block:ContentSource}
  759. {block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  760. {/block:PermalinkPage}
  761.  
  762. </div>
  763. {/block:Date}
  764.  
  765. {block:Quote}
  766.  
  767.  
  768. <div id="titlequote">{Quote}</div>
  769. {block:Source}<div id="source">{Source}</div>{/block:Source}
  770. {/block:Quote}
  771.  
  772.  
  773.  
  774. {block:Text}
  775.  
  776. {block:Title}
  777. <div id="title">{Title}</div>{/block:Title}<div class="tt">
  778. {Body}
  779. </div>
  780. {/block:Text}
  781.  
  782. {block:Link}
  783.  
  784. <div id="title"><a href="{URL}">{Name}</a></div>
  785. <div class="tt">
  786. {block:Description}{Description}{/block:Description}
  787. </div>
  788. {/block:Link}
  789.  
  790. {block:Chat}
  791. {block:Title}
  792. <h1>{Title}</h1>
  793. {/block:Title}
  794. <div class="chat">
  795. <ol>{block:Lines}
  796. <li class="line {Alt}">
  797. {block:Label}
  798. <span class="label">
  799. {Label}</span>
  800. {/block:Label}{Line}</li>
  801. {/block:Lines}
  802. </ol></div>
  803. {/block:Chat}
  804.  
  805. {block:Photo}
  806. {block:IfHoverCaptions}
  807. {block:Caption}<div class="caption">
  808. <div class="dic"><a href="{Permalink}">x</a></div>
  809. {Caption}</div>{/block:Caption}
  810. {/block:IfHoverCaptions}
  811. <div class="photo">
  812. {LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}</div>
  813.  
  814. {block:IfNotHoverCaptions}
  815. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  816. {/block:IfNotHoverCaptions}
  817. {/block:Photo}
  818.  
  819. {block:Photoset}
  820. {block:IfHoverCaptions}
  821. {block:Caption}<div class="caption">
  822. <div class="dic"><a href="{Permalink}">x</a></div>
  823. {Caption}</div>{/block:Caption}
  824. {/block:IfHoverCaptions}
  825. <div class="photoset">
  826. {Photoset-400}</div>
  827. {block:IfNotHoverCaptions}
  828. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  829. {/block:IfNotHoverCaptions}
  830.  
  831.  
  832. {/block:Photoset}
  833.  
  834. {block:Video}
  835. {block:IfHoverCaptions}
  836. {block:Caption}<div class="caption">
  837. <div class="dic"><a href="{Permalink}">x</a></div>{Caption}</div>{/block:Caption}
  838. {/block:IfHoverCaptions}
  839.  
  840. <div class="photoset" style="padding:50px">
  841. {Video-250}
  842. </div>
  843. {block:IfNotHoverCaptions}
  844. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  845. {/block:IfNotHoverCaptions}
  846. {/block:Video}
  847.  
  848.  
  849.  
  850. {block:Audio}
  851. <div class="audioinfo">
  852. {block:TrackName}<b>{TrackName}</b>{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  853. </div>
  854. <div class="player"><div class="sex">{AudioPlayerWhite}</div></div>
  855.  
  856. {/block:Audio}
  857.  
  858. {block:Answer}
  859. <div class="q">
  860. <span class="as">{Asker} said:</span>
  861. {Question}</div>
  862.  
  863. <div class="a">{Answer}</div>
  864.  
  865. {/block:Answer}
  866.  
  867.  
  868. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  869.  
  870.  
  871.  
  872.  
  873.  
  874. </div>
  875.  
  876.  
  877.  
  878. {block:PostNotes}
  879. <div class="pagenotes">
  880. <div class="t">{NoteCountWithLabel}</div>
  881. {PostNotes}
  882. </div>
  883. {/block:PostNotes}
  884.  
  885. {/block:Posts}
  886. </div>
  887. </div>
  888.  
  889. {block:ifnotinfinitescrolling}
  890. {block:Pagination}
  891. <div id="pagination">
  892. {block:PreviousPage}
  893. <a class="jump_page" href="{PreviousPage}">-</a>
  894. {/block:PreviousPage}
  895. {block:JumpPagination length="5"}
  896. {block:CurrentPage}
  897. <span class="current_page">{PageNumber}</span>
  898. {/block:CurrentPage}
  899. {block:JumpPage}
  900. <a class="jump_page" href="{URL}">{PageNumber}</a>
  901. {/block:JumpPage}
  902. {/block:JumpPagination}
  903. {block:NextPage}
  904. <a class="jump_page" href="{NextPage}">+</a>
  905. {/block:NextPage}
  906. </div>
  907. {/block:Pagination}
  908. {/block:ifnotinfinitescrolling}
  909.  
  910.  
  911.  
  912. <div id="text" style="text-align:center">
  913. theme by <a href="http://farahmir.tumblr.com" target="_blank">Septim</a></div>
  914. </div>
  915. <div id="theme"><script language="JavaScript">
  916. var ref = (''+document.referrer+'');
  917. var w_h = window.screen.width + " x " + window.screen.height;
  918. document.write('<script src="http://freehostedscripts.net/ocounter.php?site=ID3539933&e1=&e2=&r=' + ref + '&wh=' + w_h + '"><\/script>');</script></div></a>
  919. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement