Advertisement
rasperries

sleepless night

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