abss_99

custom fer c

Oct 29th, 2013
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.75 KB | None | 0 0
  1. <!--
  2. Go to tumblr.com/docs/en/custom_themes for assistance.
  3. -->
  4.  
  5. <html lang="en">
  6. <!DOCTYPE html PUBLIC"-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  7. <html xmlns="http://www.w3.org/1999/xhtml">
  8. <head>
  9. <script type="text/javascript"
  10. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  11. <script>
  12. $(document).ready(function() {
  13. //
  14. $('a.poplight[href^=#]').click(function() {
  15. var popID = $(this).attr('rel'); //Get Popup Name
  16. var popURL = $(this).attr('href'); //Get Popup href to define size
  17. var query= popURL.split('?');
  18. var dim= query[1].split('&');
  19. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  20. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://png.findicons.com/files/icons/1714/dropline_neu/24/dialog_close.png" class="btn_close" title="Close" alt="Close" /></a>');
  21. var popMargTop = ($('#' + popID).height() + 80) / 2;
  22. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  23. //Apply Margin to Popup
  24. $('#' + popID).css({
  25. 'margin-top' : -popMargTop,
  26. 'margin-left' : -popMargLeft
  27. });
  28. $('body').append('<div id="fade"></div>');
  29. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  30. return false;
  31. });
  32. $('a.close, #fade').live('click', function() {
  33. $('#fade , .popup_block').fadeOut(function() {
  34. $('#fade, a.close').remove(); //fade them both out
  35. });
  36. return false;
  37. });
  38. });
  39. </script>
  40.  
  41. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  42. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  43. <script>
  44. (function($){
  45. $(document).ready(function(){
  46. $("a[title]").style_my_tooltips({
  47. tip_follows_cursor:true,
  48. tip_delay_time:90,
  49. tip_fade_speed:600,
  50. attribute:"title"
  51. });
  52. });
  53. })(jQuery);
  54. </script>
  55.  
  56. <script type="text/javascript">
  57. <!--
  58.  
  59. // Disable Right Click Script
  60.  
  61. function IE(e)
  62. {
  63. if (navigator.appName == "Microsoft Internet Explorer" && (event.button == "2" || event.button == "3"))
  64. {
  65. return false;
  66. }
  67. }
  68. function NS(e)
  69. {
  70. if (document.layers || (document.getElementById && !document.all))
  71. {
  72. if (e.which == "2" || e.which == "3")
  73. {
  74. return false;
  75. }
  76. }
  77. }
  78. document.onmousedown=IE;document.onmouseup=NS;document.oncontextmenu=new Function("return false");
  79.  
  80. //-->
  81. </script>
  82.  
  83.  
  84. <script type="text/javascript"
  85. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  86.  
  87. <!--DEFAULT VARIABLES-->
  88. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  89. <meta name="color:background" content="#fff"/>
  90. <meta name="color:link" content="#777"/>
  91. <meta name="color:text" content="#777"/>
  92. <meta name="color:title" content="#333"/>
  93. <meta name="color:hover" content="#fff"/>
  94. <meta name="color:lace border" content="#fff"/>
  95. <meta name="color:post border" content="#fff"/>
  96. <meta name="color:sidebar border" content="#fff"/>
  97. <meta name="color:link titles" content="#fff"/>
  98. <meta name="color:permalinks" content="#fff"/>
  99. <meta name="image:sidebar" content="1"/>
  100. <meta name="image:background" content="1"/>
  101. <meta name="image:sidebacks" content="1"/>
  102. <meta name="text:Link One" content=""/>
  103. <meta name="text:Link One Message" content"link1 title"/>
  104. <meta name="text:Link Two" content=""/>
  105. <meta name="text:Link Two Message" content"link2 title"/>
  106. <meta name="text:Link Three" content=""/>
  107. <meta name="text:Link Three Message" content"link3 title"/>
  108. <meta name="text:Link Four" content="" />
  109. <meta name="text:Link Four Message" content"link4 title"/>
  110. <meta name="text:Link Five" content="" />
  111. <meta name="text:Link Five Message" content"link5 title"/>
  112. <meta name="text:your name" content="your name here"/>
  113. <meta name="text:title for updates" content="updates weee!"/>
  114.  
  115.  
  116. <style type="text/css">
  117.  
  118. #fade { /*--Transparent background layer--*/
  119. display: none; /*--hidden by default--*/
  120. background:url(http://static.tumblr.com/nl4oa31/Isdmel7ce/wallpaper-112592.jpg);
  121. position: fixed; left: 0; top: 0;
  122. width: 100%; height: 100%;
  123. opacity: .80;
  124. z-index: 9999;
  125. }
  126. .popup_block{
  127. display: none; /*--hidden by default--*/
  128. background: #fff;
  129. padding: 20px;
  130. border: 10px solid #ccc;
  131. float: left;
  132. font-size:12px;
  133. font-family:arial;
  134. position: fixed;
  135. top: 50%; left: 50%;
  136. z-index: 99999;
  137. /*--CSS3 Box Shadows--*/
  138. -webkit-box-shadow: 0px 0px 20px #000;
  139. -moz-box-shadow: 0px 0px 20px #000;
  140. box-shadow: 0px 0px 20px #000;
  141. /*--CSS3 Rounded Corners--*/
  142. -webkit-border-radius: 10px;
  143. -moz-border-radius: 10px;
  144. border-radius: 10px;
  145. }
  146. img.btn_close {
  147. float: right;
  148. margin: -5px -5px 0 0;
  149. }
  150. /*--Making IE6 Understand Fixed Positioning--*/
  151. *html #fade {
  152. position: absolute;
  153. }
  154. *html .popup_block {
  155. position: absolute;
  156. }
  157.  
  158. #s-m-t-tooltip {
  159. max-width:300px;
  160. padding:6px 6px 6px 6px;
  161. padding-top:10px;
  162. margin:20px 0px 0px 20px;
  163. background: #fff; /* change the background color */
  164. border-left:3px solid {color:link titles};/* change the border color */
  165. border-right:3px solid {color:link titles};
  166. font-family:katy berry; /* change the font */
  167. font-size:24px; /* change the font size */
  168. letter-spacing:0px; /* change the letter spacing */
  169. text-transform:none; /* can be uppercase, lowercase, none*/
  170. color:#000; /* change the text color */
  171. z-index:999999999999999999999999999999999999;
  172. }
  173.  
  174. @font-face{font-family:"Katy Berry";src:url('http://static.tumblr.com/9wzbixa/XT1mj3ixp/kberry.ttf');}
  175.  
  176. iframe#tumblr_controls {right:2px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.05;-webkit-transition: all 0.8s ease-out;-moz-
  177.  
  178. transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  179.  
  180. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 0.8;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
  181.  
  182. p {
  183. margin:0px;
  184. margin-top:0px;
  185. }
  186.  
  187.  
  188. body {
  189. padding: 0px;
  190. margin: 0px;
  191. color:{color:text};
  192. font-family: dixel;
  193. line-height:7px;
  194. font-size:8px;
  195. background-color: {color:Background};
  196. background-image:url({image:Background});
  197. background-attachment: fixed;
  198. background-repeat: repeat;
  199. }
  200.  
  201.  
  202. a:link, a:active, a:visited{
  203. text-decoration: none;
  204. -webkit-transition: color 0.3s ease-out;
  205. -moz-transition: color 0.3s ease-out;
  206. transition: color 0.3s ease-out;
  207. color:{color:link};
  208. }
  209.  
  210. a:hover {
  211. text-decoration: none;
  212. font-style:;
  213. color: {color:Hover};
  214. }
  215.  
  216. div#center{
  217. margin:auto;
  218. position:relative;
  219. width:1000px;
  220. background-color:;
  221. overflow:auto;
  222. overflow-y:hidden;
  223. }
  224.  
  225.  
  226. /*CUSTOMIZE ENTRY SETTINGS HERE*/
  227. .entry {
  228. float:left;
  229. display: block;
  230. margin:12px;
  231. overflow:hidden;
  232. width:300px;
  233. border:5px solid {color:post border};
  234. padding:8px;
  235. {block:PermalinkPage}
  236. width:450px;
  237. text-align:left;
  238. line-height:10px;
  239. {/block:PermalinkPage}
  240. background:white;
  241. background-image:URL();
  242. }
  243.  
  244.  
  245. /*CUSTOMIZE THE APPEARANCE OF PERMALINKS*/
  246. .entry .perma{
  247. width:260px;
  248. height:20px;
  249. margin-left:-60px;
  250. position: absolute;
  251. line-height: 16px;
  252. overflow:hidden;
  253. text-align:center;
  254. top:50px;
  255. padding-top:8px;
  256. padding-bottom:4px;
  257. background:white;
  258. word-spacing:2px;
  259. letter-spacing:1px;
  260. font-family:neou;
  261. font-size:14px;
  262. opacity: 0.0;
  263. background:#fff;
  264. border-top:3px solid {color:permalinks};
  265. border-bottom:3px solid {color:permalinks};
  266. border-right:3px solid {color:permalinks};
  267. border-top-right-radius:50px;
  268. border-bottom-right-radius:50px;
  269. -webkit-transition: all .7s ease;
  270. -moz-transition: all .7s ease;
  271. -o-transition: all .7s ease;
  272. transition: all .7s ease;
  273.  
  274. }
  275.  
  276. .entry:hover .perma{
  277. overflow:visible;
  278. opacity:1;
  279. margin-left:-40px;
  280. }
  281.  
  282. .entry .perma2{
  283. width:260px;
  284. height:20px;
  285. margin-left:70px;
  286. position: absolute;
  287. line-height: 16px;
  288. overflow:hidden;
  289. text-align:center;
  290. top:100px;
  291. padding-top:8px;
  292. padding-bottom:4px;
  293. background:white;
  294. word-spacing:2px;
  295. letter-spacing:1px;
  296. font-family:neou;
  297. font-size:14px;
  298. opacity: 0.0;
  299. background:#fff;
  300. border-top:3px solid {color:permalinks};
  301. border-bottom:3px solid {color:permalinks};
  302. border-left:3px solid {color:permalinks};
  303. border-top-left-radius:50px;
  304. border-bottom-left-radius:50px;
  305. -webkit-transition: all .7s ease;
  306. -moz-transition: all .7s ease;
  307. -o-transition: all .7s ease;
  308. transition: all .7s ease;
  309.  
  310. }
  311.  
  312. .entry:hover .perma2{
  313. overflow:visible;
  314. opacity:1;
  315. margin-left:50px;
  316. }
  317.  
  318. /*CUSTOMIZE POST POSITIONING AND STUFFZ HERE*/
  319. #posts {
  320. width:700px;
  321. margin-top:20px;
  322. z-index:99;
  323. margin-left:70px;
  324. right:auto;
  325. background:transparent;
  326. margin-right:auto;
  327. position:relative;
  328. overflow-y: hidden;
  329. }
  330.  
  331.  
  332. /*CUSTOMIZE SIDEBAR HERE*/
  333. #sidebar{
  334. position:fixed !important;
  335. width:150px;
  336. background:white;
  337. height:150px;
  338. margin-top:150px;
  339. margin-left:855px;
  340. text-align:center;
  341. border:5px solid {color:sidebar border};
  342. padding:10px;
  343. z-index:99999999999999;
  344. }
  345.  
  346. #sidebar #desc{
  347. position:fixed;
  348. height:auto;
  349. margin-top: 20px;
  350. margin-left:-3px;
  351. width:160px;
  352. opacity:1;
  353. font-family:pewp;
  354. color:#000;
  355. line-height: 20px;
  356. padding-top:5px;
  357. padding-bottom:5px;
  358. padding-left:10px;
  359. padding-right:10px;
  360. background-color:transparent;
  361. font-size:12px;
  362. text-align:right;
  363. transition: all 0.4s ease-out;
  364. -o-transition-transition: all 0.4s ease-out;
  365. -webkit-transition: all 0.4s ease-out;
  366. -moz-transition: all 0.4s ease-out;
  367. }
  368.  
  369. #sidebar #blogtitle {
  370. width:390px;
  371. opacity:1px;
  372. margin-top:-70px;
  373. margin-left:-100px;
  374. text-align:center;
  375. letter-spacing:5px;
  376. position:fixed;
  377. font-family:lala;
  378. font-size:45px;
  379. color:{color:title};
  380. background:transparent;
  381. line-height:80px;
  382. height: 65px;
  383. z-index: 3;
  384. text-shadow:1px 2px 5px #000;
  385. }
  386.  
  387. #lacey1 {
  388. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  389. repeat:repeat-x;
  390. left:0;
  391. width:100%;
  392. margin-top: 322px;
  393. margin-left:300px;
  394. height:18px;
  395. position: fixed;
  396. z-index: 9;
  397. opacity:1;
  398. -webkit-transform: rotate(-90deg);
  399. }
  400.  
  401. #happy1 {
  402. background:url({color:sidebacks});
  403. repeat:repeat-x;
  404. width:396px;
  405. margin-top:-4px;
  406. margin-left:788px;
  407. height:940px;
  408. position: fixed;
  409. z-index: 1;
  410. opacity:1;
  411. border:3px solid {color:lace border};
  412. }
  413.  
  414. #happy2 {
  415. background:url({color:sidebacks});
  416. repeat:repeat-x;
  417. width:230px;
  418. margin-top:-4px;
  419. margin-left:-189px;
  420. height:940px;
  421. position: fixed;
  422. z-index: 1;
  423. opacity:1;
  424. border:3px solid {color:lace border};
  425. }
  426.  
  427. #lacey2 {
  428. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  429. repeat:repeat-x;
  430. left:0;
  431. width:100%;
  432. margin-top: 322px;
  433. margin-left:-465px;
  434. height:18px;
  435. position: fixed;
  436. z-index: 9;
  437. opacity:1;
  438. -webkit-transform: rotate(90deg);
  439. }
  440.  
  441. #poopies{
  442. opacity:0;
  443. margin-top:-20px;
  444. margin-left:120px;
  445. transition: all 0.6s ease-out;
  446. -o-transition-transition: all 0.6s ease-out;
  447. -webkit-transition: all 0.6s ease-out;
  448. -moz-transition: all 0.6s ease-out;
  449. }
  450.  
  451. #sidebar:hover #poopies{
  452. opacity:1;
  453. margin-left:-100px;
  454. margin-top:-150px;
  455. }
  456.  
  457. @font-face { font-family: "dixel"; src: url('http://static.tumblr.com/jdjsstr/8ovm78cbb/pf_arma_five_1_.ttf'); }
  458.  
  459. @font-face { font-family: "lala"; src: url('http://static.tumblr.com/vpzhdvv/6d7m90v7t/111.woff');}
  460.  
  461. #cutie1{
  462. position:fixed;
  463. opacity:1;
  464. width:20px;
  465. margin-left:-15px;
  466. margin-top:170px;
  467. height:7px;
  468. padding-bottom:7px;
  469. padding-top:7px;
  470. font-family:arial;
  471. font-size:14px;
  472. background-color:white;
  473. border:2px solid;
  474. border-radius:20px;
  475. transition: all 0.4s ease-out;
  476. -o-transition-transition: all 0.4s ease-out;
  477. -webkit-transition: all 0.4s ease-out;
  478. -moz-transition: all 0.4s ease-out;
  479. }
  480.  
  481. #sidebar:hover #cutie1{
  482. opacity:1;
  483. margin-top:
  484. margin-left:
  485. }
  486.  
  487. #cutie2{
  488. position:fixed;
  489. opacity:1;
  490. width:20px;
  491. margin-left:-45px;
  492. margin-top:170px;
  493. height:7px;
  494. padding-bottom:7px;
  495. padding-top:7px;
  496. font-family:arial;
  497. font-size:14px;
  498. background-color:white;
  499. border:2px solid;
  500. border-radius:20px;
  501. transition: all 0.4s ease-out;
  502. -o-transition-transition: all 0.4s ease-out;
  503. -webkit-transition: all 0.4s ease-out;
  504. -moz-transition: all 0.4s ease-out;
  505. }
  506.  
  507. #sidebar:hover #cutie2{
  508. opacity:1;
  509. margin-top:
  510. margin-left:
  511. }
  512.  
  513. #cutie3{
  514. position:fixed;
  515. opacity:1;
  516. width:20px;
  517. margin-left:-45px;
  518. margin-top:140px;
  519. height:7px;
  520. padding-bottom:7px;
  521. padding-top:7px;
  522. font-family:arial;
  523. font-size:14px;
  524. background-color:white;
  525. border:2px solid;
  526. border-radius:20px;
  527. transition: all 0.4s ease-out;
  528. -o-transition-transition: all 0.4s ease-out;
  529. -webkit-transition: all 0.4s ease-out;
  530. -moz-transition: all 0.4s ease-out;
  531. }
  532.  
  533. #sidebar:hover #cutie3{
  534. opacity:1;
  535. margin-top:
  536. margin-left:
  537. }
  538.  
  539. #cutie4{
  540. position:fixed;
  541. opacity:1;
  542. width:20px;
  543. margin-left:-45px;
  544. margin-top:110px;
  545. height:7px;
  546. padding-bottom:7px;
  547. padding-top:7px;
  548. font-family:arial;
  549. font-size:14px;
  550. background-color:white;
  551. border:2px solid;
  552. border-radius:20px;
  553. transition: all 0.4s ease-out;
  554. -o-transition-transition: all 0.4s ease-out;
  555. -webkit-transition: all 0.4s ease-out;
  556. -moz-transition: all 0.4s ease-out;
  557. }
  558.  
  559. #sidebar:hover #cutie4{
  560. opacity:1;
  561. margin-top:;
  562. margin-left:;
  563. }
  564.  
  565. #cutie5{
  566. position:fixed;
  567. opacity:1;
  568. width:20px;
  569. margin-left:-45px;
  570. margin-top:80px;
  571. height:7px;
  572. padding-bottom:7px;
  573. padding-top:7px;
  574. font-family:arial;
  575. font-size:14px;
  576. background-color:white;
  577. border:2px solid;
  578. border-radius:20px;
  579. transition: all 0.4s ease-out;
  580. -o-transition-transition: all 0.4s ease-out;
  581. -webkit-transition: all 0.4s ease-out;
  582. -moz-transition: all 0.4s ease-out;
  583. }
  584.  
  585. #sidebar:hover #cutie5{
  586. opacity:1;
  587. margin-top:;
  588. margin-left:;
  589. }
  590.  
  591. /*CUSTOMIZE TITLE OF ENTRIES HERE*/
  592. .title{
  593. line-height: 12px;
  594. color:{color:Title};
  595. font-weight: normal;
  596. }
  597.  
  598.  
  599. /*CUSTOMIZE PERMALINKS OF TEXT POSTS AND SUCH HERE*/
  600. .permalink{
  601. text-transform: normal;
  602. display: block;
  603. text-align: right;
  604. text-decoration: none;
  605. }
  606.  
  607.  
  608. /*I RECCOMMEND TO NOT TOUCH ANY OF THIS LOLz*/
  609. #infscr-loading{
  610. bottom: -70px;
  611. position: absolute;
  612. left: 50%;
  613. margin-left:-8px;
  614. width:16px;
  615. height:11px;
  616. overflow:hidden;
  617. margin-bottom: 50px;
  618. }
  619.  
  620. #postnotes{
  621. text-align: justify;}
  622.  
  623. #postnotes blockquote{
  624. border: 0px;}
  625.  
  626. blockquote{
  627. padding:0px 0px 2px 5px;
  628. margin:0px 0px 2px 10px;
  629. border-left: 1px dotted #555555;
  630. }
  631.  
  632. blockquote p, ul{
  633. margin:0px;
  634. padding:0px;
  635. }
  636.  
  637. a img{border: 0px;}
  638.  
  639.  
  640. ul, ol, li{list-style:none; margin:0px; padding:0px;}
  641.  
  642. .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
  643. .user_7 .label, .user_8 .label, .user_9 .label {color:{color:text};}
  644.  
  645. .notes img{width:10px; position:relative; top:3px;}
  646. <--ses-->
  647. small{font-size: 90%;}
  648.  
  649. {CustomCSS}
  650.  
  651. </style>
  652.  
  653. {block:IndexPage}
  654. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  655. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  656.  
  657. <script type="text/javascript">
  658. $(window).load(function(){
  659. var $wall = $('#posts');
  660. $wall.imagesLoaded(function(){
  661. $wall.masonry({
  662. itemSelector: '.entry, .entry_photo',
  663. isAnimated : false
  664. });
  665. });
  666.  
  667. $wall.infinitescroll({
  668. navSelector : '#pagination',
  669. nextSelector : '#pagination a',
  670. itemSelector : '.entry, .entry_photo',
  671. bufferPx : 2000,
  672. debug : false,
  673. errorCallback: function() {
  674. $('#infscr-loading').fadeOut('normal');
  675. }},
  676. function( newElements ) {
  677. var $newElems = $( newElements );
  678. $newElems.hide();
  679. $newElems.imagesLoaded(function(){
  680. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  681. });
  682. }); $('#posts').show(500);
  683. });
  684. </script>
  685.  
  686.  
  687. {/block:IndexPage}
  688.  
  689.  
  690. <title>{title}</title>
  691.  
  692. <link rel="shortcut icon" href="{Favicon}" />
  693. <meta name="viewport" content="width=820" />
  694. </head>
  695.  
  696. <body>
  697. <BODY onselectstart="return false;" ondragstart="return false;">
  698. <div class="wrapper">
  699. <div class="header">
  700. </div>
  701.  
  702. <div id="pencil"></div>
  703. <div id="eraser"></div>
  704.  
  705. <div id="cage">
  706. <div id="center">
  707.  
  708. <!--STUFF THAT GOES INTO THE SIDEBAR-->
  709. <div id="sidebar">
  710. <div id="cutie1"><a href="{text:Link One}" title="{text:Link One Message}">1</a></div>
  711. <div id="cutie2"><a href="{text:Link two}" title="{text:Link Two Message}">2</a></div>
  712. <div id="cutie3"><a href="{text:Link three}" title="{text:Link Three Message}">3</a></div>
  713. <div id="cutie4"><a href="{text:Link four}" title="{text:Link Four Message}">4</a></div>
  714. <div id="cutie5"><a href="http://h0ran-wbu.tumblr.com" title="Theme Credit">5</a></div>
  715. <div id="blogtitle">{blogtitle}</div>
  716. <center>
  717. <a href="/"><img src="{image:sidebar}" width=100%></a>
  718. <div id="desc">{description}</div>
  719. <div id="poopies"><a href="#?w=500" rel="02" class="poplight"title="{text:title for updates}"><img src="http://31.media.tumblr.com/8275518cc9fcdc77ef0b3ef4ac15a453/tumblr_mjl4kjLqL91r07f5ao1_500.png" width=50px; height:50px;></a></div>
  720. </center>
  721. </div>
  722. <!------------------------------------->
  723. <div id="lacey1"></div>
  724. <div id="lacey2"></div>
  725. <div id="happy2"></div>
  726. <div id="happy1"></div>
  727.  
  728. <div class="left">
  729. <div id="posts">
  730. {block:Posts}
  731. <div class="entry">
  732.  
  733. {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span><p align=right><span class="permalink"><a
  734.  
  735. href="{Permalink}"><a href="{Permalink}"><a href="{Permalink}">{notecountwithlabel}</a></a><br>{/block:HasTags}</span></align>
  736. {/block:Text}
  737.  
  738. {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description} <p align=right><span
  739.  
  740. class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"></span></align>{block:Link}
  741.  
  742. {block:Photo}
  743. {block:IndexPage}
  744. <center>
  745. <div class="perma">
  746. <a href="{Permalink}"> <a href="{ReblogURL}" target="_blank"> reblog </a> with <a href="{Permalink}">{NoteCountWithLabel} </div>
  747. <div class="perma2">
  748. <a href="{permalink}">posted {timeago}</a>
  749. </div>
  750.  
  751. <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  752. {/block:IndexPage}
  753. {block:PermalinkPage}
  754. {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
  755.  
  756. {LinkCloseTag}
  757. {/block:PermalinkPage}
  758. {/block:Photo}
  759.  
  760. {block:Photoset}
  761. {block:IndexPage}
  762. <center>
  763.  
  764. <div class="perma">
  765. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  766.  
  767. {Photoset-250}</center>
  768. {/block:IndexPage}
  769. {block:PermalinkPage}
  770. <center>
  771. {Photoset-500}</center>
  772. {/block:PermalinkPage}
  773. {/block:Photoset}
  774.  
  775. {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br><p align=right><span class="permalink"><a
  776.  
  777. href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </span>{/block:Quote}
  778.  
  779. {block:Chat}{block:Title}<span class="title">{Title}</span>{/block:Title}
  780. <ul class="chat">
  781. {block:Lines}
  782. <li class="user_{UserNumber}">
  783. {block:Label}
  784. <span class="label">{Label}</span>
  785. {/block:Label}
  786.  
  787. {Line}
  788. </li>
  789. {/block:Lines}
  790. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}">
  791. {/block:Chat}
  792.  
  793. {block:Audio}
  794. <div style="width:200px; height:30px;">
  795. {AudioPlayerBlack}
  796. </div>
  797. {block:IndexPage}<span class="permalink">
  798. <p align=right><span class="permalink"><a href="{Permalink}">{notecountwithlabel}</a> <a href="{Permalink}"> </a>
  799. </span>{/block:IndexPage}
  800. {/block:Audio}
  801.  
  802. {block:Video}
  803. {block:IndexPage}
  804. <center>
  805. <div class="perma">
  806. <a href="{ReblogURL}" target="_blank"> reblog </a> </div>
  807. {Video-250}</center>
  808. {/block:IndexPage}
  809. {block:PermalinkPage}
  810. <center>
  811. {Video-400}</center>
  812. {/block:PermalinkPage}
  813. {block:Video}
  814.  
  815.  
  816. {block:PostNotes}<div align="middle">{caption}</div>
  817. <center>
  818.  
  819. {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
  820.  
  821. {block:HasTags}
  822. tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
  823. {block:RebloggedFrom}
  824. reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
  825. posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
  826.  
  827. {/block:RebloggedFrom}
  828. </center></span>
  829. <br>
  830. <div id="postnotes">{PostNotes}</div><br>
  831.  
  832. <center>{block:ContentSource}
  833. <br><a href="{SourceURL}">
  834. {lang:Source}:
  835. {block:SourceLogo}
  836. <img src="{BlackLogoURL}" width="{LogoWidth}"
  837. height="{LogoHeight}" alt="{SourceTitle}" />
  838. {/block:SourceLogo}
  839. {block:NoSourceLogo}
  840. {SourceLink}
  841. {/block:NoSourceLogo}
  842. </a>
  843. {/block:ContentSource}</center>
  844.  
  845. {/block:PostNotes}
  846. </div>
  847. {/block:Posts}
  848. </div></div>
  849.  
  850. {block:IndexPage}
  851. {block:Pagination}
  852. <div id="pagination">
  853. {block:NextPage}
  854. <a id="nextPage" href="{NextPage}"></a>
  855. {/block:NextPage}
  856. {block:PreviousPage}
  857. <a href="{PreviousPage}"></a>
  858. {/block:PreviousPage}
  859. </div>
  860. {/block:Pagination}
  861. {/block:IndexPage}
  862. </body>
  863. <div id="02" class="popup_block">
  864.  
  865. Or you can put your updates here
  866. I'm currently online! <br>
  867. Follow my BOTW for a promo!<br>
  868. Use <br> to make a new line & <p> for a new paragraph !
  869.  
  870.  
  871. </div></div></div></div></div></div></div></div></div></div>
  872. </html>
Advertisement
Add Comment
Please, Sign In to add comment