Advertisement
containes

Sleep theme

Apr 24th, 2014
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.77 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. <!-----------------------------------------------------------------
  4.  
  5.  
  6. // Sleep Theme
  7. // PERMEATE THEMES
  8. // Don't copy
  9.  
  10.  
  11.  
  12. ------------------------------------------------------------------>
  13. <head>
  14. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"><!--mce:0--></script>
  15. <script src="toggle.js" type="text/javascript"><!--mce:1--></script>
  16. <script type="text/javascript">
  17. $(document).ready(function(){
  18. $(".description").hide();
  19. $(".about").click(function(){
  20. $('.description').slideToggle("fast");
  21. return true;
  22. });
  23. });
  24.  
  25. </script>
  26. <meta name="color:Background" content="#fff" />
  27. <meta name="color:Text" content="#333" />
  28. <meta name="color:Links" content="#333"/>
  29. <meta name="color:Hover" content="#dad8d8"/>
  30. <meta name="color:Scrollbar" content="#666666"/>
  31. <meta name="color:Scrollbar Background" content="#dad8d8"/>
  32. <meta name="color:Posts" content="#F2F2F2"/>
  33. <meta name="color:Borders" content="#dad8d8"/>
  34. <meta name="color:Sidebar" content="#F8F8F8"/>
  35. <meta name="color:Sidebar Border" content="#dad8d8"/>
  36. <meta name="color:Accent" content="#dad8d8"/>
  37. <meta name="color:Answer" content="#ebebeb"/>
  38. <meta name="color:Entry Hover" content="#dad8d8"/>
  39.  
  40. <meta name="image:Background" content=""/>
  41. <meta name="image:Content" content="http://24.media.tumblr.com/8505f31a272258bceb1ad8f8254f67d3/tumblr_murx7wSaZh1qi9kppo4_500.jpg"/>
  42. <meta name="image:Sidebar" content=""/>
  43.  
  44. <meta name="text:First custom link title" content="link 1"/>
  45. <meta name="text:First custom link url" content=""/>
  46. <meta name="text:Second custom link title" content="link 2"/>
  47. <meta name="text:Second custom link url" content=""/>
  48. <meta name="text:Third custom link title" content="link 3"/>
  49. <meta name="text:Third custom link url" content=""/>
  50. <meta name="text:Fourth custom link title" content="link 4"/>
  51. <meta name="text:Fourth custom link url" content=""/>
  52. <meta name="text:Fifth custom link title" content="link 5"/>
  53. <meta name="text:Fifth custom link url" content=""/>
  54. <meta name="text:Title Font Size" content="60"/>
  55. <meta name="text:Sidebar Top Margin" content="100"/>
  56.  
  57.  
  58. <meta name="if:Show Image" content="0"/>
  59. <meta name="if:Show Title" content="1"/>
  60. <meta name="if:Sidebar Border" content="1"/>
  61. <meta name="if:Home link" content="1"/>
  62. <meta name="if:Message link" content="1"/>
  63. <meta name="if:Submit link" content="0"/>
  64. <meta name="if:Archive link" content="1"/>
  65. <meta name="if:First custom link" content="0"/>
  66. <meta name="if:Second custom link" content="0"/>
  67. <meta name="if:Third custom link" content="0"/>
  68. <meta name="if:Fourth custom link" content="0"/>
  69. <meta name="if:Fifth custom link" content="0"/>
  70. <meta name="if:Inverted fade" content="0" />
  71. <meta name="if:Faded images" content="1" />
  72. <meta name="if:Transparent Post Backgrounds" content="0"/>
  73. <meta name="if:Sidebar Text Shadow" content="1"/>
  74. <meta name="if:Custom Font Title" content="1"/>
  75.  
  76. <meta name="font:Body" content="Lucida Sans"/>
  77. <meta name="font:Title" content="Courier New"/>
  78. <meta name="font:Permalink" content="Arial"/>
  79.  
  80. <title>{Title}</title>
  81. <link rel="shortcut icon" href="{Favicon}">
  82. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  83. <link rel="shortcut icon" href="{Favicon}">
  84. <title>Untitled Document</title>
  85. <link rel="shortcut icon" href="{Favicon}">
  86. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  87.  
  88. {block:Description}
  89. <meta name="description" content="{MetaDescription}" />
  90. {/block:Description}
  91.  
  92. <style type="text/css">
  93. {CustomCSS}
  94.  
  95. p{
  96. margin:0px;
  97. padding:0px;
  98. }
  99.  
  100. #tumblr_controls{
  101. position:fixed !important;
  102. }
  103.  
  104. #tumblr_controls{
  105. -webkit-transition: opacity 0.2s linear;
  106. opacity: 0.7;
  107. }
  108. #tumblr_controls:hover{
  109. -webkit-transition: opacity 0.2s linear;
  110. opacity: 1;
  111. }
  112.  
  113. a{
  114. text-decoration: none;
  115. color:{color:links};
  116. -moz-transition: all 0.3s ease-out;
  117. -o-transition: all 0.3s ease-out;
  118. -webkit-transition: all 0.3s ease-out;
  119. transition: all 0.3s ease-out;
  120.  
  121. }
  122.  
  123. a:hover{
  124. color:{color:hover};
  125.  
  126. -moz-transition: all 0.3s ease-out;
  127. -o-transition: all 0.3s ease-out;
  128. -webkit-transition: all 0.3s ease-out;
  129. transition: all 0.3s ease-out;
  130. }
  131.  
  132. body{
  133. color:{color:Text};
  134. background-color:{color:Background};
  135. background-image:url({image:Background});
  136. background-attachment: fixed; background-repeat: repeat;
  137. font-size:10px;
  138. text-align:center;
  139. font-family: {font:Body};
  140. line-height:10px;
  141.  
  142.  
  143. }
  144.  
  145. #content{
  146. margin: auto auto auto auto ;
  147. width:100%;
  148. top:-2px;
  149. left:0px;
  150. position:relative;
  151.  
  152. }
  153.  
  154. #content .posts{
  155. width:934px;
  156. font-family: {font:Body};
  157. margin: 0px 0px 0px 0px;
  158. margin-left: 330px;
  159. {block:PermalinkPage}
  160. font-size:10px;
  161. line-height:10px;
  162. width:500px !important;
  163. margin-left:450px;
  164. margin-top:-3px;
  165. background-color:{color:Accent};
  166. {/block:PermalinkPage}
  167. }
  168.  
  169. #content .entry{
  170. {block:IndexPage}
  171. width:250px;
  172. margin:15px;
  173. padding:5px 5px 4px 5px;
  174. float:left;
  175. {block:ifnottransparentpostbackgrounds}
  176. background-color:{color:Posts};
  177. border-width:1px;
  178. border-style:solid;
  179. border-color:{color:Borders};
  180. {/block:ifnottransparentpostbackgrounds}
  181. {block:iftransparentpostbackgrounds}
  182. background-color:transparent;
  183. {block:iftransparentpostbackgrounds}
  184.  
  185. {/block:IndexPage}
  186. {block:PermalinkPage}
  187. width:500px;
  188. {/block:PermalinkPage}
  189. -webkit-transition-duration:0.5s;
  190. }
  191.  
  192. {block:IndexPage}
  193. #content .entry:hover{
  194. opacity:1;
  195. -webkit-transition-duration:0.5s;
  196. background-color:{color:Entry Hover};
  197. }
  198. {/block:IndexPage}
  199.  
  200. #content .entry img{
  201. {block:IndexPage}
  202. max-width:250px;
  203.  
  204. {/block:IndexPage}
  205.  
  206. }
  207.  
  208. {block:IndexPage}
  209. {block:ifinvertedfade}
  210. img{
  211. opacity:1;
  212. -webkit-transition-duration:0.7s;
  213. }
  214.  
  215. img:hover{
  216. opacity:0.8;
  217. -webkit-transition-duration:0.7s;
  218. }
  219. {/block:ifinvertedfade}
  220.  
  221. {block:iffadedimages}
  222. img{
  223. opacity:0.8;
  224. -webkit-transition-duration:0.7s;
  225. }
  226. img:hover{
  227. opacity:1;
  228. -webkit-transition-duration:0.7s;
  229. }
  230. {/block:iffadedimages}
  231. {/block:IndexPage}
  232.  
  233. .textperma{
  234. font-family:trebuchet ms;
  235. letter-spacing:0px;
  236. font-size:10px;
  237. line-height:10px;
  238. letter-spacing:2px;
  239. text-align:right;
  240. opacity: 0;
  241. margin-top:7px;
  242. margin-bottom:2px;
  243. -webkit-transition-duration:0.7s;
  244. }
  245.  
  246. .entry:hover .textperma{
  247. opacity:1;
  248. padding-top:0px;
  249. }
  250.  
  251. .top{
  252. width:300px;
  253. opacity:1;
  254. text-align:left;
  255. z-index:5000;
  256. position: fixed;
  257. padding-top:{text:Sidebar Top Margin}px;
  258. padding-left:5px;
  259. padding-bottom:5px;
  260. padding-right:5px;
  261. font-size:11px;
  262. letter-spacing:-1px;
  263. top:0px;
  264. left:0px;
  265. height:100%;
  266. background-color:{Color:Sidebar};
  267. background-image:url({image:Content});
  268. background-attachment: fixed; background-repeat: repeat;
  269. {block:ifsidebarborder}
  270. border-right-style:solid;
  271. border-width:10px;
  272. border-color:{color:Sidebar Border};
  273. {/block:ifsidebarborder}
  274.  
  275. {block:ifsidebartextshadow}
  276. -webkit-transition-duration:1.7s;
  277. text-shadow: black 0.1em 0.1em 0.2em;
  278. {/block:ifsidebartextshadow}
  279. }
  280.  
  281. .entry:hover .tc {
  282. opacity: .5;
  283. filter: alpha(opacity = 50);
  284. margin-left: 0;
  285. }
  286.  
  287. .entry .permaone {
  288. position: absolute;
  289. width: 244px;
  290. text-align: center;
  291. top:5px;
  292. left:5px;
  293. opacity: 0;
  294. filter:alpha(opacity=0);
  295. z-index: 10000;
  296. background: rgba(255, 255, 255, 0.9);
  297. font-size: 15px; /* xxx */
  298. height: 14px;
  299. line-height: 14px;
  300. font-family: {font:Permalink};
  301. text-transform: Uppercase;
  302. color:#000000;
  303. padding: 3px;
  304. -webkit-transition: all 0.4s ease-in-out;
  305. -moz-transition: all 0.4s ease-in-out;
  306. -o-transition: all 0.4s ease-in-out;
  307. transition: all 0.4s ease-in-out;
  308. }
  309.  
  310. .entry:hover .permaone{
  311. opacity: 1;
  312. filter:alpha(opacity=100);
  313. }
  314.  
  315. .permaone:hover{
  316. background: rgba(255, 255, 255, 100);
  317. }
  318.  
  319. .permaone a{
  320. color:#000;
  321. -webkit-transition: all 0.4s ease-in-out;
  322. -moz-transition: all 0.4s ease-in-out;
  323. -o-transition: all 0.4s ease-in-out;
  324. transition: all 0.4s ease-in-out;
  325. }
  326.  
  327. .permaone a:hover{
  328. color:{color:hover};
  329. -webkit-transition: all 0.4s ease-in-out;
  330. -moz-transition: all 0.4s ease-in-out;
  331. -o-transition: all 0.4s ease-in-out;
  332. transition: all 0.4s ease-in-out;
  333. }
  334.  
  335. .entry:hover .tc {
  336. opacity: .5;
  337. filter: alpha(opacity = 50);
  338. margin-left: 0;
  339. }
  340.  
  341. .entry .permatwo {
  342. position: absolute;
  343. width: 244px;
  344. text-align: center;
  345. top:27px;
  346. left:5px;
  347. opacity: 0;
  348. filter:alpha(opacity=0);
  349. z-index: 10000;
  350. background: rgba(255, 255, 255, 0.8);
  351. font-size: 15px; /* xxx */
  352. height: 14px;
  353. line-height: 14px;
  354. font-family: {font:Permalink};
  355. text-transform: Uppercase;
  356. color:#000000;
  357. padding: 3px;
  358. -webkit-transition: all 0.6s ease-in-out;
  359. -moz-transition: all 0.6s ease-in-out;
  360. -o-transition: all 0.6s ease-in-out;
  361. transition: all 0.6s ease-in-out;
  362. }
  363.  
  364. .entry:hover .permatwo{
  365. opacity: 1;
  366. filter:alpha(opacity=100);
  367. }
  368.  
  369. .permatwo:hover{
  370. background: rgba(255, 255, 255, 100);
  371. }
  372.  
  373. .permatwo a{
  374. color:#000;
  375. -webkit-transition: all 0.6s ease-in-out;
  376. -moz-transition: all 0.6s ease-in-out;
  377. -o-transition: all 0.6s ease-in-out;
  378. transition: all 0.6s ease-in-out;
  379. }
  380.  
  381. .permatwo a:hover{
  382. color:{color:hover};
  383. -webkit-transition: all 0.6s ease-in-out;
  384. -moz-transition: all 0.6s ease-in-out;
  385. -o-transition: all 0.6s ease-in-out;
  386. transition: all 0.6s ease-in-out;
  387. }
  388.  
  389. .entry:hover .tc {
  390. opacity: .5;
  391. filter: alpha(opacity = 50);
  392. margin-left: 0;
  393. }
  394.  
  395. .entry .permathree {
  396. position: absolute;
  397. width: 244px;
  398. text-align: center;
  399. top:49px;
  400. left:5px;
  401. opacity: 0;
  402. filter:alpha(opacity=0);
  403. z-index: 10000;
  404. background: rgba(255, 255, 255, 0.70);
  405. font-size: 15px; /* xxx */
  406. height: 14px;
  407. line-height: 14px;
  408. font-family: {font:Permalink};
  409. text-transform: Uppercase;
  410. color:#000000;
  411. padding: 3px;
  412. -webkit-transition: all 0.8s ease-in-out;
  413. -moz-transition: all 0.8s ease-in-out;
  414. -o-transition: all 0.8s ease-in-out;
  415. transition: all 0.8s ease-in-out;
  416. }
  417.  
  418. .entry:hover .permathree{
  419. opacity: 1;
  420. filter:alpha(opacity=100);
  421. }
  422.  
  423. .permathree:hover{
  424. background: rgba(255, 255, 255, 100);
  425. }
  426.  
  427. .permathree a{
  428. color:#000;
  429. -webkit-transition: all 0.8s ease-in-out;
  430. -moz-transition: all 0.8s ease-in-out;
  431. -o-transition: all 0.8s ease-in-out;
  432. transition: all 0.8s ease-in-out;
  433. }
  434.  
  435. .permathree a:hover{
  436. color:{color:hover};
  437. -webkit-transition: all 0.8s ease-in-out;
  438. -moz-transition: all 0.8s ease-in-out;
  439. -o-transition: all 0.8s ease-in-out;
  440. transition: all 0.8s ease-in-out;
  441. }
  442.  
  443. .entry:hover .tc {
  444. opacity: .5;
  445. filter: alpha(opacity = 50);
  446. margin-left: 0;
  447. }
  448.  
  449. .entry .permafour {
  450. position: absolute;
  451. width: 244px;
  452. text-align: center;
  453. top:71px;
  454. left:5px;
  455. opacity: 0;
  456. filter:alpha(opacity=0);
  457. z-index: 10000;
  458. background: rgba(255, 255, 255, 0.5);
  459. font-size: 15px; /**/
  460. height: 14px;
  461. line-height: 14px;
  462. font-family: {font:Permalink};
  463. text-transform: Uppercase;
  464. color:#000000;
  465. padding: 3px;
  466. -webkit-transition: all 1.0s ease-in-out;
  467. -moz-transition: all 1.0s ease-in-out;
  468. -o-transition: all 1.0s ease-in-out;
  469. transition: all 1.0s ease-in-out;
  470. }
  471.  
  472. .entry:hover .permafour{
  473. opacity: 1;
  474. filter:alpha(opacity=100);
  475. }
  476.  
  477. .permafour:hover{
  478. background: rgba(255, 255, 255, 100);
  479. }
  480.  
  481. .permafour a{
  482. color:#000;
  483. -webkit-transition: all 1.0s ease-in-out;
  484. -moz-transition: all 1.0s ease-in-out;
  485. -o-transition: all 1.0s ease-in-out;
  486. transition: all 1.0s ease-in-out;
  487. }
  488.  
  489. .permafour a:hover{
  490. color:{color:hover};
  491. -webkit-transition: all 1.0s ease-in-out;
  492. -moz-transition: all 1.0s ease-in-out;
  493. -o-transition: all 1.0s ease-in-out;
  494. transition: all 1.0s ease-in-out;
  495. }
  496.  
  497. .notes{
  498. width:537px;
  499. padding-left:3px;
  500. text-align:left;
  501. font-size:10px;
  502. background-color:{color:Accent};
  503. text-transform:uppercase;
  504. margin-top:-2px;
  505. }
  506.  
  507. .h1{
  508. display:block;
  509. font-size:15px;
  510. letter-spacing: 1px;
  511. line-height:15px;
  512. text-align: center;
  513. font-family: {font:Body};
  514. }
  515.  
  516. .h2{
  517. font-size:21px;
  518. letter-spacing: 1px;
  519. line-height:23px;
  520. font-family: {font:Body};
  521. }
  522.  
  523. .h4{
  524. font-size:12px;
  525. line-height:12px;
  526. text-align:center;
  527. letter-spacing:1px;
  528. }
  529.  
  530. .h5{
  531. font-size:9px;
  532. line-height:10px;
  533. letter-spacing:0px;
  534. text-align:justify;
  535. font-family: {font:Body};
  536. font-color:{color:text};
  537. }
  538.  
  539. .h6{
  540. font-size:10px;
  541. line-height:9px;
  542. text-align:center;
  543. padding:1px;
  544. font-family: {font:Body};
  545. letter-spacing:1px;
  546. font-color:{color:text};
  547. }
  548.  
  549. .h9{
  550. font-size:10px;
  551. line-height:10px;
  552. text-align:left;
  553. padding:1px;
  554. font-family: {font:Body};
  555. letter-spacing:0px;
  556. font-color:{color:text};
  557. }
  558.  
  559. #blogtitle{
  560. font-size:{text:Title Font Size}px;
  561. line-height:{text:Title Font Size}px;
  562. text-align:center;
  563. padding-bottom:2px;
  564. {block:ifcustomfonttitle}
  565. font-family: homenaje;
  566. {block:ifcustomfonttitle}
  567. {block:ifnotcustomfonttitle}
  568. font-family:{font:Title};
  569. {block:ifnotcustomfonttitle}
  570. Letter-spacing:1px;
  571. width:246px;
  572. background-color:transparent;
  573. margin-bottom:2px;
  574. }
  575.  
  576. .nav{
  577. text-align:justify;
  578. margin-top:0px;
  579. margin-bottom:0px;
  580. letter-spacing:1px;
  581. font-family: {font:Body};
  582. }
  583.  
  584. .quote{
  585. font-size:17px;
  586. line-height:20px;
  587. text-transform:none;
  588. margin-bottom:5px;
  589. font-family: {font:Body};
  590. }
  591.  
  592. .audio{
  593. {block:IndexPage}
  594. width:240px;
  595. {/block:IndexPage}
  596. {block:PermalinkPage}
  597. width:530px;
  598. {/block:PermalinkPage}
  599. background-color:#e3e3e3;
  600. padding:5px;
  601. margin-bottom:0px;
  602. }
  603.  
  604. .albumart, .albumart img{
  605. {block:IndexPage}
  606. width:250px;
  607. {/block:IndexPage}
  608. {block:PermalinkPage}
  609. width:540px;
  610. {/block:PermalinkPage}
  611. }
  612.  
  613. div.video embed,
  614. div.post div.video object {
  615. {block:IndexPage}
  616. width:250px !important;
  617. height:150px !important;
  618. {/block:IndexPage}
  619. {block:PermalinkPage}
  620. width:500px !important;
  621. height:400px !important;
  622. {/block:PermalinkPage}
  623. }
  624.  
  625. #bg img {
  626. z-index:-1;
  627. position:fixed;
  628. background-repeat:repeat;
  629. }
  630.  
  631. .question{
  632. margin-bottom:5px;
  633. font-size:10px;
  634. line-height:10px;
  635. display:block;
  636. font-family: {font:Body};
  637. background-color:{color:Answer};
  638. border-left-style:solid;
  639. border-right-style:solid;
  640. border-width:2px;
  641. border-color:{color:Borders};
  642. padding:5px;
  643. }
  644.  
  645. .asker{
  646. font-family: {font:Body};
  647. font-size:10px;
  648. line-height:10px;
  649. }
  650.  
  651. .answer{
  652. padding:3px;
  653. font-size:10px;
  654. line-height:10px;
  655. font-family: {font:Body};
  656. color: {color:text};
  657. }
  658.  
  659. ::-webkit-scrollbar-thumb:vertical{
  660. background-color:{color:Scrollbar};
  661. height:75px;
  662. }
  663.  
  664. ::-webkit-scrollbar-thumb:horizontal{
  665. background-color:{color:Scrollbar};
  666. height:10px;
  667. }
  668.  
  669. ::-webkit-scrollbar{
  670. height:10px;
  671. width:8px;
  672. background-color:{color:Scrollbar Background};
  673. }
  674.  
  675. #desc{
  676. text-decoration: none;
  677. background-color:transparent;
  678. width:236px;
  679. text-align:justify;
  680. margin-top:-5px;
  681. padding:5px;
  682. }
  683.  
  684. #link{
  685. width:530px;
  686. height:auto;
  687. margin-bottom:2px;
  688. padding:5px;
  689. background-color:{color:Accent};
  690. z-index:999999;
  691. }
  692.  
  693. #chat{
  694. width:530px;
  695. height:auto;
  696. margin-bottom:2px;
  697. padding:5px;
  698. background-color:{color:Accent};
  699. z-index:999999;
  700. margin-top:0px;
  701. }
  702.  
  703. #quote{
  704. width:530px;
  705. height:auto;
  706. margin-bottom:2px;
  707. padding:5px;
  708. background-color:{color:Accent};
  709. z-index:999999;
  710. margin-top:0px;
  711. }
  712.  
  713. #text{
  714. width:530px;
  715. height:auto;
  716. margin-bottom:2px;
  717. padding:5px;
  718. background-color:{color:Accent};
  719. z-index:999999;
  720. }
  721.  
  722. #vid{
  723. width:530px;
  724. height:auto;
  725. margin-bottom:2px;
  726. padding:5px;
  727. background-color:{color:Accent};
  728. z-index:999999;
  729. }
  730.  
  731. #photoset{
  732. width:530px;
  733. height:auto;
  734. margin-bottom:2px;
  735. padding:5px;
  736. background-color:{color:Accent};
  737. z-index:999999;
  738. }
  739.  
  740. #ans{
  741. width:540px;
  742. height:auto;
  743. margin-bottom:2px;
  744. padding:5px;
  745. background-color:{color:Accent};
  746. z-index:999999;
  747. }
  748.  
  749. </style>
  750. <script type="text/javascript" src="http://pastebin.com/raw.php?i=UMbxSSWh "></script> <!-- fontes -->
  751. <script type="text/javascript" src="http://pastebin.com/raw.php?i=pvhCWKxc"></script>
  752. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/rSGl20lfv/masonry.js">
  753. </script>
  754. <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>
  755. <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
  756. <script src="http://draggabilly.desandro.com/draggabilly.pkgd.min.js"></script>
  757.  
  758.  
  759. <script type="text/javascript">
  760.  
  761. $(window).load(function () {
  762. $('.posts').masonry(),
  763. $('.masonryWrap').infinitescroll({
  764. navSelector : "div#navigation",
  765. // selector for the paged navigation (it will be hidden)
  766. nextSelector : "div#navigation a#nextPage",
  767. // selector for the NEXT link (to page 2)
  768. itemSelector : ".entry",
  769. // selector for all items you'll retrieve
  770. bufferPx : 10000,
  771. extraScrollPx: 11000,
  772. loadingImg : "",
  773. loadingText : "<em></em>",
  774. },
  775. // call masonry as a callback.
  776. function() { $('.posts').masonry({ appendedContent: $(this) }); }
  777. );
  778. });
  779. </script>
  780. <script type="text/javascript">$(window).load(function(){$("p").remove(":contains('Source:')");});</script></head>
  781.  
  782.  
  783.  
  784. <body>
  785.  
  786. <div class="top"><br>
  787. <center>{block:ifshowtitle}<div id="blogtitle"><a href="/">{Title}</a></span></div>{block:ifshowtitle}<div id="nav"><span class="h9"><br><br>
  788. {block:ifhomelink}<a href="/">Home</a> {block:ifhomelink}
  789. <br><br>
  790. {block:ifmessagelink}<a href="/ask">Message</a> {block:ifmessagelink}<br><br>
  791. {block:ifarchivelink} <a href="/archive">Archive</a>{/block:ifarchivelink}<br><br>
  792. {block:ifsubmitlink}<a href="/submit">Submit</a>{block:ifsubmitlink}<br><br>
  793. {block:iffirstcustomlink}<a href="{text:first custom link url}">
  794. <br><br>{text:first custom link title}</a>{/block:iffirstcustomlink}{block:ifsecondcustomlink}<a href="{text:second custom link url}">
  795. <br>{text:second custom link title}</a>{/block:ifsecondcustomlink}<br><br>
  796. {block:ifthirdcustomlink}<a href="{text:third custom link url}">{text:third custom link title}</a>{/block:ifthirdcustomlink}<br><br>
  797. {block:iffourthcustomlink}<a href="{text:fourth custom link url}">{text:fourth custom link title}</a>{/block:iffourthcustomlink}<br><br>
  798. {block:iffifthcustomlink}<a href="{text:fifth custom link url}">{text:fifth custom link title}</a>{/block:iffifthcustomlink}
  799. <div id="desc"><div class="nav"><div align="center">
  800. <br>
  801. <span class="h5">{Description}</span>
  802. </div></div></div></div></a></div></div></div></span></div></div></div></div>
  803.  
  804. <div id="content">
  805. <div class="posts">
  806. {block:Posts}
  807. <div class="entry">
  808.  
  809. {block:Text}
  810. {block:IndexPage}
  811. {block:Title}<span class="h1">{Title}</span>{/block:Title}
  812. {Body}{/block:IndexPage}
  813. {block:IndexPage}<div class="textperma"><a href="{Permalink}">{NoteCount}</a>{/block:IndexPage}</span></div>
  814. {block:PermalinkPage}<div style="margin-left:0px;"</div>{/block:PermalinkPage}{block:PermalinkPage}<div id="text">{block:Title}<span class="h1">{Title}</span>{/block:Title}
  815. {Body}</div>{/block:PermalinkPage}
  816. {/block:Text}
  817.  
  818. {block:Photo}
  819. {block:IndexPage}
  820. <b><div class="permaone"><a href="{Permalink}"><a href="{Permalink}">Permalink</a> ∞ <a href="{ReblogURL}">Reblog</a></div><div class="permatwo"><a href="{Permalink}">{TimeAgo}</a></div><div class="permathree"><a href="{Permalink}">{NoteCountWithLabel}</a></div><div class="permafour"><a href="{Permalink}">{24HourWithZero}:{Minutes}</a></div></b><a href="{Permalink}" target="_blank"><img src="{PhotoURL-400}" alt="{PhotoAlt}" width="250"/>
  821. {/block:IndexPage}
  822. {block:PermalinkPage}
  823. {LinkOpenTag}
  824. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="540"/></a>
  825. {LinkCloseTag}
  826. {/block:permalinkpage}
  827. {/block:Photo}
  828.  
  829. {block:Photoset}
  830. {block:IndexPage}{Photoset-250}{/block:IndexPage}
  831. {block:IndexPage}<div class="textperma"><a href="{Permalink}">{NoteCountWithLabel}</a> / <a href="{ReblogURL}" target="_blank">Reblog</a><div>{/block:IndexPage}</span></div></div>{block:PermalinkPage}<div style="margin-left:450px;"</div>{/block:PermalinkPage}{block:PermalinkPage}<div id="photoset">{Photoset-500}</div>{/block:PermalinkPage}
  832. {/block:Photoset}
  833.  
  834. {block:Quote}
  835. {block:IndexPage}<div class="quote"><b><i>"</i></b>{Quote}<b><i>"</i></b> </div> {block:Source}<small>{Source}</small>{/block:Source}{/block:IndexPage}{block:IndexPage}<div class="textperma"><a href="{Permalink}">{NoteCount}</a>{/block:IndexPage}</span></div>
  836. {block:PermalinkPage}<div style="margin-left:0px;"</div>{/block:PermalinkPage}{block:PermalinkPage}<div id="quote"><b><i>"</i></b>{Quote}<b><i>"</i></b> - {block:Source}<small>{Source}</small>{/block:Source}</div>{/block:PermalinkPage}
  837. {/block:Quote}
  838.  
  839. {block:Link}
  840. {block:IndexPage}<a href="{URL}"{Target}><span class="h2">+{Name}</span></a>{block:Description}<small>{Description}</small>{/block:Description}{/block:IndexPage}{block:IndexPage}<div class="textperma"><a href="{Permalink}">{NoteCount}</a>{/block:IndexPage}</span></div>
  841. {block:PermalinkPage}<div style="margin-left:0px;"</div>{/block:PermalinkPage}{block:PermalinkPage}
  842. <div id="link"><a href="{URL}"{Target}><span class="h2"> +{Name}</span></a>
  843. {block:Description}<small>{Description}</small>{/block:Description}</div>{/block:PermalinkPage}
  844. {/block:Link}
  845.  
  846. {block:Video}
  847. <div class="video">
  848. {block:IndexPage}{Video-250}{/block:IndexPage}
  849. </div>{block:IndexPage}<div class="videocap"></a></div><div class="textperma"><a href="{Permalink}">{NoteCountWithLabel}</a> / <a href="{ReblogURL}" target="_blank">Reblog</a><div>{/block:IndexPage}</span></div></div>{/block:IndexPage}{block:PermalinkPage}<div style="margin-left:450px;"</div>
  850. {/block:PermalinkPage}{block:PermalinkPage}<div id="vid">{Video-500}</div>{/block:PermalinkPage}
  851. {/block:Video}
  852.  
  853. {block:Chat}
  854. {block:IndexPage}{block:Title}<div class="ptitle">{Title}</div>
  855. {/block:Title}{block:Lines}{block:Label}<b>{Label}</b> {/block:Label}{Line}<br>{/block:Lines}{/block:IndexPage}{block:IndexPage}<div class="textperma"><a href="{Permalink}">{NoteCount}</a>{/block:IndexPage}</span></div>{block:PermalinkPage}<div style="margin-left:0px;"</div>{/block:PermalinkPage}{block:PermalinkPage}<div id="chat">{block:Title}<div class="ptitle">{Title}</div>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b> {/block:Label}{Line}<br>{/block:Lines}</div>{/block:PermalinkPage}
  856. {/block:Chat}
  857.  
  858. {block:Audio}
  859. <a href="{Permalink}">
  860. {block:AlbumArt}<div class="albumart"><img src="{AlbumArtURL}"></a></div>{/block:AlbumArt}</a><div class="audio">{AudioPlayerGrey}</div>
  861. {block:PermalinkPage}{/block:PermalinkPage}
  862. {/block:Audio}
  863.  
  864. {block:Answer}
  865. {block:IndexPage}
  866. <div class="question">{Asker} said:</a> {Question}</div>
  867. <div class="answer"><i>{Answer}</i></div>{/block:IndexPage}
  868. {block:IndexPage}<div class="textperma"><a href="{Permalink}">{NoteCount}</a></div>{/block:IndexPage}{block:PermalinkPage}<div style="margin-left:0px;"</div>{/block:PermalinkPage}{block:PermalinkPage}<div id="ans"><div class="question">{Asker} said:</a> {Question}</div>
  869. <div class="answer"><i>{Answer}</i></div>{/block:PermalinkPage}
  870. {/block:Answer}
  871.  
  872. {block:PermalinkPage}<div class="notes"><br>
  873. {block:Caption}{Caption}{/block:Caption}
  874. Posted on {Month} {DayofMonth}{DayofMonthSuffix} at {12Hour}:{Minutes} {CapitalAMPM}
  875. <br>Has a total of: {NoteCount} Notes
  876. {block:PostNotes}<br><br><div style="background-color:{color:Accent}; text-align:left; max-height: 200px; width:537px; overflow-y: auto; overflow-x: hidden;">{PostNotes}</div>{/block:PostNotes}</div></div>
  877. {/block:PermalinkPage}
  878. </div>{/block:Posts}</div></div>
  879.  
  880. {block:IndexPage}
  881. <div class="column navigation" id="navigation">
  882. {block:Pagination}
  883. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  884. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  885. </div>
  886. {/block:IndexPage}
  887.  
  888. <div style="position:fixed; bottom:5px; color: {color:Text}; right:1px; font-size:36px; opacity:1; background-color:{color:Posts}; border-radius:18px; padding:9px; font-family:Times New Roman;"><a href="http://lsaac.tumblr.com">+</a></div><div style="right: 3px; top: 26px; position:fixed; opacity:0.6;z-index:99999999;"><a href="http://permeate.tumblr.com"><img src="http://static.tumblr.com/ykziu7r/dGgm6nq81/install_theme.png"/></a>
  889.  
  890. </div></div></div></div></div></body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement