Don't like ads? PRO users don't see any ads ;-)

Pear Theme

By: becaxo on May 5th, 2012  |  syntax: None  |  size: 20.75 KB  |  hits: 95  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!--
  2.  
  3. theme by rebecaxo.com, remove the credit and i'll report you.
  4.  
  5. -->
  6.  
  7.  
  8. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  9. <html xmlns="http://www.w3.org/1999/xhtml">
  10.  
  11.  
  12.  
  13.  
  14.  
  15. <head>
  16.  
  17. <script type="text/javascript"
  18. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  19. <script>
  20. $(document).ready(function() {
  21. //
  22. $('a.poplight[href^=#]').click(function() {
  23. var popID = $(this).attr('rel'); //Get Popup Name
  24. var popURL = $(this).attr('href'); //Get Popup href to define size
  25. var query= popURL.split('?');
  26. var dim= query[1].split('&');
  27. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  28. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="Close" alt="Close" /></a>');
  29. var popMargTop = ($('#' + popID).height() + 80) / 2;
  30. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  31. //Apply Margin to Popup
  32. $('#' + popID).css({
  33. 'margin-top' : -popMargTop,
  34. 'margin-left' : -popMargLeft
  35. });
  36. $('body').append('<div id="fade"></div>');
  37. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  38. return false;
  39. });
  40. $('a.close, #fade').live('click', function() {
  41. $('#fade , .popup_block').fadeOut(function() {
  42. $('#fade, a.close').remove(); //fade them both out
  43. });
  44. return false;
  45. });
  46. });
  47. </script>
  48.  
  49.  
  50. <script type="text/javascript">
  51. // <![CDATA[
  52. var bgcolour="#9f9eaa"; // background colour
  53. var fgcolour="#000000"; // foreground colour
  54. var speed=100; // speed of bubbling, lower is faster
  55. var shades=10; // number of shades of bubble
  56.  
  57. /****************************
  58. * Bubbling Text Effect *
  59. *(c) 2003-6 mf2fm web-design*
  60. * http://www.mf2fm.com/rv *
  61. * DON'T EDIT BELOW THIS BOX *
  62. ****************************/
  63. var bubbcol=new Array();
  64. var bubbler, bubbtxt;
  65. var bubbchr=new Array();
  66. window.onload=function() { if (document.getElementById) {
  67. for (bubbler=0; bubbler<=shades; bubbler++) {
  68. bubbtxt="#";
  69. for (var i=1; i<6; i+=2) {
  70. var bg=parseInt(bgcolour.substring(i,i+2),16);
  71. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  72. }
  73. bubbcol[bubbler+1]=bubbtxt;
  74. }
  75. bubbler=document.getElementById("bubble");
  76. bubbtxt=bubbler.firstChild.nodeValue;
  77. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  78. for (var i=0; i<bubbtxt.length; i++) {
  79. var bubbi=document.createElement("span");
  80. bubbi.setAttribute("id", "bubb"+i);
  81. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  82. bubbler.appendChild(bubbi);
  83. }
  84. bubbler=setInterval ("bubbling()", speed);
  85. }}
  86.  
  87. function dechex(dec) {
  88. var hex=dec.toString(16);
  89. if (dec<16) return "0"+hex;
  90. else return hex;
  91. }
  92.  
  93. function bubbling() {
  94. for (var i=0; i<bubbtxt.length; i++) {
  95. var bubbme=document.getElementById("bubb"+i);
  96. if (bubbchr[i]) {
  97. bubbme.style.color=bubbcol[bubbchr[i]];
  98. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  99. }
  100. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  101. }
  102. }
  103. // ]]>
  104. </script>
  105.  
  106.  
  107. <link href='http://fonts.googleapis.com/css?family=Happy+Monkey' rel='stylesheet' type='text/css'>
  108.  
  109. <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
  110.  
  111. <link href='http://fonts.googleapis.com/css?family=Cedarville+Cursive' rel='stylesheet' type='text/css'>
  112.  
  113.  
  114. <script type="text/javascript"
  115. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  116.  
  117.  
  118. <script type="text/javascript">
  119.   WebFontConfig = {
  120.     google: { families: [ 'Happy+Monkey::latin' ] }
  121.   };
  122.   (function() {
  123.     var wf = document.createElement('script');
  124.     wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  125.       '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  126.     wf.type = 'text/javascript';
  127.     wf.async = 'true';
  128.     var s = document.getElementsByTagName('script')[0];
  129.     s.parentNode.insertBefore(wf, s);
  130.   })(); </script>
  131.  
  132.  
  133.  
  134. <script type="text/javascript">
  135.   WebFontConfig = {
  136.     google: { families: [ 'Amatic+SC::latin' ] }
  137.   };
  138.   (function() {
  139.     var wf = document.createElement('script');
  140.     wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  141.       '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  142.     wf.type = 'text/javascript';
  143.     wf.async = 'true';
  144.     var s = document.getElementsByTagName('script')[0];
  145.     s.parentNode.insertBefore(wf, s);
  146.   })(); </script>
  147.  
  148.  
  149.  <script type="text/javascript">
  150.   WebFontConfig = {
  151.     google: { families: [ 'Cedarville+Cursive::latin' ] }
  152.   };
  153.   (function() {
  154.     var wf = document.createElement('script');
  155.     wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  156.       '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  157.     wf.type = 'text/javascript';
  158.     wf.async = 'true';
  159.     var s = document.getElementsByTagName('script')[0];
  160.     s.parentNode.insertBefore(wf, s);
  161.   })(); </script>
  162.  
  163.  
  164. <style type="text/css">
  165. ::-webkit-scrollbar {
  166. height:10px;
  167. width:10px;
  168. background-color:#FFF;
  169. background-image: -webkit-gradient(
  170. linear,
  171. left top,
  172. right top,
  173. color-stop(0, #858585),
  174. color-stop(0.50, #FFFFFF)
  175. );
  176. background-image: -moz-linear-gradient(
  177. left center,
  178. #858585 0%,
  179. #FFFFFF 50%
  180. );}
  181. ::-webkit-scrollbar-thumb:vertical {
  182. background-color:#5a586f;;
  183. height:100px;
  184. -webkit-border-radius: 100px;
  185. -moz-border-radius: 100px;
  186. border-radius: 100px;}
  187. ::-webkit-scrollbar-thumb:horizontal {
  188. background-color:#5a586f;
  189. height:10px !important;}
  190. </style>
  191.  
  192. <title>{title}</title>
  193.  
  194. <link rel="shortcut icon" href="{Favicon}">
  195. <link rel="alternate" type="application/rss+xml" href="http://rebecaxo.com/rss">
  196.  
  197. <meta name="description" content="{metadescription}" />
  198.  
  199.  
  200. <meta name="color:Background" content="#FFFFFF"/>
  201. <meta name="color:Text" content="#130C11"/>
  202. <meta name="color:Hover" content="#130C11"/>
  203. <meta name="color:Link" content="#000000"/>
  204.  
  205. <meta name="image:sidebar" content="1"/>
  206. <meta name="image:Background" content="1"/>
  207. <meta name="if:show photo" content="0"/>
  208.  
  209. <meta name="text:Custom Link One Title" content= >
  210. <meta name="text:Custom Link One" content="http://" />
  211. <meta name="text:Custom Link Two Title" content= >
  212. <meta name="text:Custom Link Two" content="http://" />
  213. <meta name="text:Custom Link Three Title" content= >
  214. <meta name="text:Custom Link Three" content="http://" />
  215. <meta name="text:Custom Link Four Title" content= >
  216. <meta name="text:Custom Link Four" content="http://" />
  217.  
  218.  
  219.  
  220.  
  221. <style type="text/css">
  222. @import url(http://fonts.googleapis.com/css?family=Happy+Monkey);
  223. @import url(http://fonts.googleapis.com/css?family=Amatic+SC);
  224. @import url(http://fonts.googleapis.com/css?family=Cedarville+Cursive);
  225.  
  226. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>{block:Description}<meta name=”description” content=”{MetaDescription}” />{/block:Description}
  227. {block:ifinfinitescrolling}<script type=”text/javascript” src=”http://codysherman.com/tools/infinite-scrolling/code”></script>{/block:ifinfinitescrolling}
  228. <script type=”text/javascript”>
  229. //
  230. function desabilitaMenu(e)
  231. {
  232. if (window.Event)
  233. {
  234. if (e.which == 2 || e.which == 3)
  235. return false;
  236. }
  237. else
  238. {
  239. event.cancelBubble = true
  240. event.returnValue = false;
  241. return false;
  242. }
  243. }
  244. document.oncontextmenu = desabilitaMenu;
  245. document.onmousedown = desabilitaBotaoDireito;
  246. document.onmouseup = desabilitaBotaoDireito;
  247. </script>
  248. {/block:Ifnorightclick}
  249.  
  250.  
  251. #fade { /*--Transparent background layer--*/
  252.     display: none; /*--hidden by default--*/
  253.     background: #000;
  254.     position: fixed; left: 0; top: 0;
  255.     width: 100%; height: 80%;
  256.     opacity: .00;
  257.     z-index: 9999;
  258. }
  259. .popup_block{
  260.     display: none; /*--hidden by default--*/
  261.     background: #e5e5e5;
  262.     padding: 8px;
  263.     border: 00px solid #ddd;
  264.     float: left;
  265.     font-size: 12px;
  266.     position: fixed;
  267.     top: 50%; left: 50%;
  268.     z-index: 99999;
  269.         /*--CSS3 Box Shadows--*/
  270.         -webkit-box-shadow: 0px 0px 5px rgba(50, 50, 50, 0);
  271.     -moz-box-shadow:    0px 0px 5px rgba(50, 50, 50, 0);
  272.     box-shadow:         0px 0px 5px rgba(50, 50, 50, 0);
  273.         /*--CSS3 Rounded Corners--*/
  274.     border-radius: 9px;
  275.     -moz-border-radius: 9px;
  276.     -webkit-border-radius: 9px;
  277.     border: 1px solid #B8B8B8;
  278. }
  279. img.btn_close {
  280.         float: right;
  281.  
  282.         margin: -5px -5px 0 0;
  283. }
  284. /*--Making IE6 Understand Fixed Positioning--*/
  285. *html #fade {
  286.         position: absolute;
  287. }
  288. *html .popup_block {
  289.         position: absolute;
  290. }
  291.  
  292.  
  293.  
  294. #tumblr_controls{
  295. position:fixed !important;
  296. }
  297.  
  298. .wrapper{
  299. margin: 0px auto;
  300. width: 882px;
  301. }
  302.  
  303. .header{
  304. float: left;
  305. width: 100%;
  306. }
  307.  
  308. .left{
  309. float: left;
  310. margin-right: 20px;
  311. width: 802px;
  312. }
  313.  
  314. .right{
  315. float: right;
  316. width: 200px;
  317. background-color: {color:Background};
  318. }
  319.  
  320. body {
  321. padding: 0px;
  322. margin: 0px;
  323. color:{color:text};
  324. font-family: 'Happy Monkey', cursive;
  325. font-size: 14px;
  326. background-color: {color:Background};
  327. background-image:url({image:Background});
  328. background-attachment: fixed;
  329. background-repeat: repeat
  330. text-align: justify;
  331. }
  332.  
  333. a:link, a:active, a:visited{
  334. color:{color:link};
  335. text-decoration: none;
  336. -webkit-transition: color 0.4s ease-out;
  337. -moz-transition: color 0.4s ease-out;
  338. }
  339.  
  340. a:hover{
  341. color:{color:Hover};
  342. -webkit-transition: color 0.4s ease-out;
  343. -moz-transition: color 0.4s ease-out;
  344. }
  345.  
  346.  
  347.  
  348.  
  349.  
  350. .entry {
  351. margin:0px;
  352. padding: 2px;
  353. float:left;
  354. text-align: justify;
  355. background-color: transparent;
  356. font-family: 'Happy Monkey', cursive;
  357. font-size: 13px;
  358. line-height:10px;
  359. {block:IndexPage}
  360. width:350px;
  361. {/block:IndexPage}
  362. {block:PermalinkPage}
  363. width:696px;
  364. margin-left: 357x;
  365. {/block:PermalinkPage}
  366. -o-border-radius: 3px
  367. -webkit-border-radius: 3px;
  368. -moz-border-radius: 3px;
  369. border-radius: 3px;
  370. }
  371.  
  372. .entry .permalink{
  373. position: absolute;
  374. margin-top: 50px;
  375. margin-left: 150px;
  376. opacity: 0;
  377. -webkit-transition: all .3s ease;
  378. -moz-transition: all .3s ease;
  379. -o-transition: all .3s ease;
  380. transition: all .3s ease;
  381. }
  382. .entry:hover .permalink{
  383. margin-top: 0px;
  384. margin-left: 150px;
  385. opacity: 1;
  386. -webkit-transform:rotate(360deg);
  387. -moz-transform:rotate(360deg);
  388. -o-transform:rotate(360deg);
  389. }
  390.  
  391.  
  392. .countreblog {
  393. color: #000;
  394. width:relative;
  395. letter-spacing:0px;
  396. font-family: 'Short Stack', cursive;
  397. font-size:10px;
  398. line-height:30px;
  399. padding:3px 5px;
  400. margin: 0px;
  401. background: white;
  402. -webkit-transition: all 0.7s linear;
  403. -webkit-transition: all 0.7s linear;
  404. -moz-transition: all 0.7s linear;
  405. transition: all 0.7s linear;
  406. -webkit-border-radius: 90px;
  407. -moz-border-radius: 90px;
  408. border-radius: 90px;
  409. border: 1px solid #fff;
  410. }
  411.  
  412. .countreblog:hover {
  413. opacity: 1;
  414. -webkit-transition: 0.3s ease-out;
  415. -moz-transition: 0.3s ease-out;
  416. }
  417.  
  418. .countreblog a {
  419. color: black;
  420. }
  421.  
  422.  
  423.  
  424. div#sidebar{
  425. z-index:999999999999999;
  426. position:absolute !important;
  427. position:fixed !important;
  428. font-family: 'Happy Monkey', cursive;
  429. font-size: 12px;
  430. background-color:#FFF;
  431. width:230px;
  432. height:auto;
  433. opacity:0.8;
  434. margin-top: 300px;
  435. margin-left: 0px;
  436. padding:2px;
  437. z-index:10;
  438. border: 1px #000 dotted;
  439. overflow:hidden;
  440. -webkit-transition-duration: .6s;
  441. -moz-transition: all .2s ease-in-out;
  442. -o-transition: all .2s ease-in-out;
  443. transition: all .2s ease-in-out;
  444. -webkit-transition: all .2s ease-in-out;
  445. -webkit-transition-duration: .7s;
  446. -webkit-transition-duration: .7s;
  447. -webkit-transition-duration: .7s;
  448. }
  449.  
  450. div#sidebar:hover{
  451. opacity:1;
  452. }
  453.    
  454. .links {
  455. display : block;
  456. text-align: center;
  457. background : #CECBCB;
  458. font-size: 12px;
  459. width: 50px;
  460. height: 50px;
  461. letter-spacing:0px;
  462. margin-top:5px;
  463. margin-left:3px;
  464. line-height:50px;
  465. color: #000;
  466. font-family: 'happy monkey', sans-serif;
  467. text-align:center;
  468. -webkit-transition-duration: .7s;
  469. border-radius: 50px;
  470. -moz-border-radius: 50px;
  471. -webkit-border-radius: 50px;
  472. display: inline-block;
  473. opacity: 0.7;
  474. }
  475.  
  476.  
  477.  
  478. .links:hover {
  479. background-color: #C9C9C9;
  480. -moz-transition: all .5s ease-in-out;
  481. -o-transition: all .5s ease-in-out;
  482. transition: all .5s ease-in-out;
  483. -webkit-transition: all .5s ease-in-out;
  484. -webkit-transition-duration: .5s;
  485. border-radius: 0px;
  486. -moz-border-radius: 0px;
  487. -webkit-border-radius: 0px;
  488. -webkit-transform:rotate(360deg);
  489. -moz-transform:rotate(360deg);
  490. -o-transform:rotate(360deg);
  491. -webkit-transition-duration: .5s;
  492. -webkit-transition-duration: .5s;
  493. opacity: 0.9;
  494. }
  495.  
  496.    
  497. .links2 {
  498. display : block;
  499. text-align: center;
  500. background : #CECBCB;
  501. font-size: 12px;
  502. width: 160px;
  503. height: 20px;
  504. letter-spacing:0px;
  505. margin-top:5px;
  506. margin-left:3px;
  507. line-height:20px;
  508. color: #000;
  509. font-family: 'happy monkey', sans-serif;
  510. text-align:center;
  511. -webkit-transition-duration: .6s;
  512. border-radius: 50px;
  513. -moz-border-radius: 50px;
  514. -webkit-border-radius: 50px;
  515. display: inline-block;
  516. opacity: 0.7;
  517. }
  518.  
  519.  
  520.  
  521. .links2:hover {
  522. width:100px;
  523. background-color: #C9C9C9;
  524. -moz-transition: all .5s ease-in-out;
  525. -o-transition: all .5s ease-in-out;
  526. transition: all .5s ease-in-out;
  527. -webkit-transition: all .5s ease-in-out;
  528. -webkit-transition-duration: .5s;
  529. -webkit-transition-duration: .5s;
  530. -webkit-transition-duration: .5s;
  531. opacity: 0.9;
  532. }
  533.  
  534. .lol {
  535. text-align: center;
  536. float:left;
  537. margin:10px;
  538. width: 30px;
  539. position:fixed;
  540. height:60px;
  541. background: white;
  542. font-size: 10px;
  543. line-height:30px;
  544. font-family: 'Happy Monkey', cursive;
  545. text-transform:uppercase;
  546. border-radius: 0px 0px 50px 50px;
  547. -moz-border-radius: 0px 0px 50px 50px;
  548. -webkit-border-radius: 0px 0px 50px 50px;
  549. border: 1px dashed #000000;
  550. }
  551.  
  552.  
  553. .credss {
  554. color: #FFFFFF;
  555. letter-spacing:1px;
  556. font-family: arial;
  557. font-size:10px;
  558. z-index: 99999999999999px;
  559. line-height:14px;
  560. margin: 2px;
  561. background-image:url(http://static.tumblr.com/8jq17g7/CH8lofvyp/dark-transparent.png);
  562. background-repeat:repeat;
  563. border:1px solid rgba(0,0,0,0.1);
  564. padding:3px 5px;
  565. -webkit-border-radius:2px;
  566. moz-border-radius:2px;
  567. -o-border-radius:2px;
  568. border-radius:2px;
  569. }
  570.  
  571. .credss a { color: #FFF; }
  572.  
  573.  
  574. #posts {
  575. float:center;
  576. margin-top: 0px;
  577. -webkit-transition-duration: .6s;
  578. -moz-transition: all .2s ease-in-out;
  579. -o-transition: all .2s ease-in-out;
  580. transition: all .2s ease-in-out;
  581. -webkit-transition: all .2s ease-in-out;
  582. -webkit-transition-duration: .7s;
  583. -webkit-transition-duration: .7s;
  584. -webkit-transition-duration: .7s;
  585. width:710px;
  586. margin-left:240px;
  587. background: #fff;
  588. z-index: -500px;
  589. }
  590.  
  591.  
  592.  
  593.  
  594. .blogtitle{
  595. font-size:30px;
  596. text-align: center;
  597. letter-spacing:1px;
  598. line-height:auto;
  599. font-family: 'Amatic SC', cursive;
  600. font-weight: 800;
  601. text-transform:uppercase;
  602. color:#000;
  603. -webkit-transition: all 0.2s ease-out;-moz-transition: all 0.2s ease-out;-o-transition: all 0.2s ease-out;
  604. -webkit-transition: all 0.8s ease-out;
  605. -moz-transition: all 0.8s ease-out;
  606. -o-transition: all 0.8s ease-out;
  607. }
  608.  
  609. .blogtitle:hover{
  610. color:#dde8ee;
  611. }
  612.  
  613. .title{
  614. font-family: 'Happy Monkey', cursive;
  615. font-size: 20px;
  616.  
  617. color: black;
  618. font-weight: normal;
  619. }
  620.  
  621.  
  622. </style>
  623.  
  624. {block:IndexPage}
  625. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  626. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  627.  
  628. <script type="text/javascript">
  629. $(window).load(function () {
  630. var $content = $('#posts');
  631. $content.masonry({itemSelector: '.entry'}),
  632. $content.infinitescroll({
  633. navSelector : 'div#pagination',
  634. nextSelector : 'div#pagination a#nextPage',
  635. itemSelector : '.entry',
  636. loading: {
  637. finishedMsg: '',
  638. img: 'http://static.tumblr.com/dbek3sy/pX1lrx8xv/ajax-loader.gif'
  639. },
  640. bufferPx : 600,
  641. debug : false,
  642. },
  643. // call masonry as a callback.
  644. function( newElements ) {
  645. var $newElems = $( newElements );
  646. $newElems.hide();
  647. // ensure that images load before adding to masonry layout
  648. $newElems.imagesLoaded(function(){
  649. $content.masonry( 'appended', $newElems, true, function(){$newElems.fadeIn(300);} );
  650.  
  651.  
  652. });
  653. });
  654. });
  655. </script>
  656.  
  657. {/block:IndexPage}
  658. <span class="lol"> <br>
  659. <a href="http://kittythemes.tumblr.com"><img src="http://i41.tinypic.com/3am9c.jpg" /></a> </span> </>
  660.  
  661.  
  662.  
  663. <div style="position: fixed; right:0px;top:28px;">
  664. <span class="credss">
  665. <a href="http://kittythemes.tumblr.com/" target="_blank">
  666. Theme Credit
  667. </a></span></div>
  668.  
  669. </div>
  670. <title>{title}</title>
  671.  
  672. <link rel="shortcut icon" href="http://static.tumblr.com/gikbzax/bVim3d2lw/kitty.gif">
  673. <meta name="viewport" content="width=820" />
  674.  
  675. </head>
  676. <body>
  677. <div class="wrapper">
  678. <div class="header">
  679. </div>
  680.  
  681.  
  682.  
  683.  
  684.  
  685. <div id="sidebar">
  686. <center>
  687.  
  688.  
  689. <a title="" href="/">
  690. <div class="blogtitle">{title}</a></div>
  691.  
  692.  
  693. {block:ifshowphoto}<center><a title="" href="/"><img src="{image:sidebar}" width=230px height=auto></a></center>{/block:ifshowphoto}
  694.  
  695.  
  696. <center>{Description} <br>
  697.  
  698.  
  699. <div class="links">
  700. <a href="/">home</a></a>
  701. </div>
  702.  
  703.  
  704.  
  705. <div class="links">
  706. <a href="/ask">ask</a></a>
  707. </div>
  708.  
  709. <div class="links">
  710. <a href="http://rebecaxo.com/">theme</a></a> <br>
  711. </div>
  712.  
  713.  
  714. {block:ifCustomLinkOneTitle}
  715. <div class="links2"><a href="{text:Custom Link One}" class="links1">{text:Custom Link One Title}</a></div>
  716. {/block:ifCustomLinkOneTitle}
  717.  <br>
  718. {block:ifCustomLinkTwoTitle}
  719. <div class="links2"><a href="{text:Custom Link Two}" class="links1">{text:Custom Link Two Title}</a></div>
  720. {/block:ifCustomLinkTwoTitle}
  721.  <br>
  722. {block:ifCustomLinkThreeTitle}
  723. <div class="links2"><a href="{text:Custom Link Three}" class="links1">{text:Custom Link Three Title}</a></div>
  724. {/block:ifCustomLinkThreeTitle}
  725.  <br>
  726. {block:ifCustomLinkFourTitle}
  727. <div class="links2"><a href="{text:Custom Link Four}" class="links1">{text:Custom Link Four Title}</a></div>
  728. {/block:ifCustomLinkFourTitle}
  729.  <br>
  730. {block:ifCustomLinkFiveTitle}
  731. <div class="links2"><a href="{text:Custom Link Five}" class="links1">{text:Custom Link Five Title}</a></div>
  732. {/block:ifCustomLinkFiveTitle}
  733.  
  734.  
  735.  
  736. </center></div>
  737.  
  738.  
  739. <div class="content">
  740.  
  741.  
  742. <div class="left">
  743.  
  744. <div id="posts">
  745.  
  746.  
  747.  
  748. {block:Posts}
  749. <div class="entry">
  750.  
  751. {block:IndexPage}
  752. <div class="permalink">
  753. <span class=""><a href="" target="_blank"></a></span>
  754. <span class="countreblog"><a href="{ReblogURL}" target="_blank">reblog</a></span>
  755.  
  756. <span class="countreblog"><a href="{Permalink}">{NoteCountWithLabel}</a></span> </div>
  757. {/block:IndexPage}
  758.  
  759. {block:Text}
  760. <div style="padding-top:10px; padding-bottom:0px; padding-left:10px; padding-right:10px;">
  761. {block:Title}
  762. <a href="{permalink}"><span class="title">{Title}</span></a>
  763. {/block:Title}
  764. <span class="entrytext" style="line-height:12px;">{Body}</span>
  765. <a href="{Permalink}"></a></div>
  766. {block:IndexPage}
  767. <div align="right">
  768. <a href="{permalink}"></a></div>
  769. {/block:Date}{/block:IndexPage}
  770. {/block:Text}
  771.  
  772. {block:Link}
  773. <a href="{URL}" class="title">{Name}</a>
  774. {block:Description}{Description}{/block:Description}
  775. {block:Link}
  776.  
  777. {block:Photo}
  778. {block:IndexPage}{LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="350"/></a></div>{LinkCloseTag}{/block:IndexPage}
  779. {block:PermalinkPage}{LinkOpenTag}<a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="550"/></a>{LinkCloseTag}{/block:PermalinkPage}
  780. {/block:Photo}
  781.  
  782. {block:Photoset}
  783. {block:IndexPage}
  784. <center>
  785. {Photoset-340}</center>
  786. {/block:IndexPage}
  787. {block:PermalinkPage}
  788. <center>
  789. {Photoset-550}</center>
  790. {/block:PermalinkPage}
  791. {/block:Photoset}
  792.  
  793. {block:Quote}
  794. {Quote}</span>
  795. {block:Source}<strong>{Source}</strong>{/block:Source}
  796. {/block:Quote}
  797.  
  798. {block:Chat}
  799. {block:Title}<span class="title">{Title}</span>{/block:Title}
  800. <ul class="chat">
  801. {block:Lines}
  802. <li class="user_{UserNumber}">
  803. {block:Label}
  804. <span class="label">{Label}</span>
  805. {/block:Label}
  806.  
  807. {Line}
  808. </li>
  809. {/block:Lines}
  810. </ul>
  811. {/block:Chat}
  812.  
  813. {block:Audio}
  814. <center><div style="width:340px; height:28px;"><div style="float:left">{AudioPlayerBlack}</div><div style="margin-top:10px; float:right;">
  815. {block:ExternalAudio}{/block:ExternalAudio}</div></div></center>
  816. {/block:Audio}
  817.  
  818. {block:Video}
  819. {block:IndexPage}
  820. <center>
  821. {Video-340}</center>
  822. {/block:IndexPage}
  823. {block:PermalinkPage}
  824. <center>
  825. {Video-550}</center>
  826. {/block:PermalinkPage}
  827. {block:Video}
  828.  
  829. {block:PermalinkPage}
  830. <center>
  831. <br>{block:Caption}{Caption}{/block:Caption}{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}{block:HasTags} &middot; {block:Tags}<a href="TagURL"> #{Tag}</a> {/block:Tags}{/block:hasTags}</center>
  832.  
  833.  
  834. {/block:PermalinkPage}
  835.  
  836.  
  837. {block:PostNotes}{PostNotes}
  838. {/block:PostNotes}
  839. </div>
  840.  
  841.  
  842. {/block:Posts}
  843. </div>
  844. </div>
  845. {block:IndexPage}
  846. {block:Pagination}
  847. <div id="pagination">
  848. {block:NextPage}
  849. <a id="nextPage" href="{NextPage}">&nbsp;&rarr;</a>
  850. {/block:NextPage}
  851. {block:PreviousPage}
  852. <a href="{PreviousPage}">&larr;&nbsp;</a>
  853. {/block:PreviousPage}
  854. </div>
  855. {/block:Pagination}
  856. {/block:IndexPage}
  857. </div>
  858.  
  859.  
  860.  
  861.  
  862.  
  863.  
  864. </body>
  865.  
  866.  
  867.  
  868.  
  869. <br>
  870. <br>
  871.  
  872. </html>