reindropz

THEME #1

Jun 15th, 2012
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 39.84 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4. <script type="text/javascript"
  5. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  6. <script>
  7. $(document).ready(function() {
  8. //
  9. $('a.poplight[href^=#]').click(function() {
  10. var popID = $(this).attr('rel'); //Get Popup Name
  11. var popURL = $(this).attr('href'); //Get Popup href to define size
  12. var query= popURL.split('?');
  13. var dim= query[1].split('&');
  14. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  15. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://www.pixelsxo.com/graphics/images/tiny//th_hmm.gif" class="btn_close" title="Close" alt="Close!!" /></a>');
  16. var popMargTop = ($('#' + popID).height() + 80) / 2;
  17. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  18. //Apply Margin to Popup
  19. $('#' + popID).css({
  20. 'margin-top' : -popMargTop,
  21. 'margin-left' : -popMargLeft
  22. });
  23. $('body').append('<div id="fade"></div>');
  24. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  25. return false;
  26. });
  27. $('a.close, #fade').live('click', function() {
  28. $('#fade , .popup_block').fadeOut(function() {
  29. $('#fade, a.close').remove(); //fade them both out
  30. });
  31. return false;
  32. });
  33. });
  34. </script>
  35. <html>
  36. <title>{Title}</title>
  37.  
  38. <!--
  39. ___________________________________________________________________________
  40.  
  41. CORPUS THEME BY NOCTOS @ TUMBLR
  42. ___________________________________________________________________________
  43.  
  44. -->
  45.  
  46. <link rel="shortcut icon" href="http://media.tumblr.com/tumblr_lkl65q67St1qfamg6.gif">
  47. {block:Description}
  48. <meta name="description" content="{MetaDescription}" />
  49. {/block:Description}
  50. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  51.  
  52. <meta name="text:font" content="cambria" />
  53. <meta name="text:font size" content="9px" />
  54.  
  55. <meta name="image:background" content="" />
  56. <meta name="image:side" content="http://static.tumblr.com/nj7bgyh/iLKm3gsx7/tumblr_lxxy6b9t2a1r6hoxao1_500.jpg" />
  57. <meta name="image:side links BG" content="http://media.tumblr.com/tumblr_m3d3ogLzYw1qklwal.png" />
  58. <meta name="color:background" content="#fff" />
  59. <meta name="color:text" content="#777" />
  60. <meta name="color:links" content="#b4b4b4" />
  61. <meta name="color:links hover" content="#494949" />
  62. <meta name="color:bordering" content="#eee" />
  63. <meta name="color:side links TXT" content="#b3b3b3" />
  64. <meta name="color:side links BG hover" content="#eee" />
  65. <meta name="color:side links TXT hover" content="#b3b3b3" />
  66. <meta name="color:side title" content="#fff" />
  67. <meta name="color:post BG" content="#fff" />
  68. <meta name="color:post title BG" content="#fafafa" />
  69.  
  70. <meta name="if:endless scroll" content="1" />
  71. <meta name="if:show captions" content="0" />
  72. <meta name="if:post bordering" content="1" />
  73.  
  74. <meta name="if:small posts" content="1" />
  75. <meta name="if:medium posts" content="0" />
  76. <meta name="if:large posts" content="0" />
  77.  
  78. <meta name="text:link one" content="" />
  79. <meta name="text:link one title" content="" />
  80. <meta name="text:link two" content="" />
  81. <meta name="text:link two title" content="" />
  82. <meta name="text:link three" content="" />
  83. <meta name="text:link three title" content="" />
  84. <meta name="text:link four" content="" />
  85. <meta name="text:link four title" content="" />
  86. <meta name="text:link five" content="" />
  87. <meta name="text:link five title" content="" />
  88.  
  89. <style type="text/css">
  90. .circlelink {
  91.  
  92. left:6px;
  93.  
  94. border-radius:100px;
  95.  
  96. bottom:5px;
  97.  
  98. background: #FBBBB9;
  99.  
  100. width:70px;
  101.  
  102. height:40px;
  103.  
  104. margin-left:2px;
  105.  
  106. text-align:center;
  107.  
  108. font-color:#fff;
  109.  
  110. margin-bottom:10px;
  111.  
  112. padding-top:30px;
  113.  
  114. -webkit-transition-timing-function: ease-out;
  115.  
  116. -webkit-transition-duration: .7s;
  117.  
  118. -moz-transition-timing-function: ease-out;
  119.  
  120. -moz-transition-duration: .7s;
  121.  
  122. text-transform:uppercase;
  123.  
  124. position:fixed;
  125.  
  126. }
  127.  
  128. .circlelink:hover {
  129.  
  130. border-radius:100px;
  131.  
  132. position:fixed;
  133.  
  134. background-color:transparent;
  135.  
  136. width:70px;
  137.  
  138. height:40px;
  139.  
  140. margin-left:2px;
  141.  
  142. text-align:center;
  143.  
  144. padding-top:30px;
  145.  
  146. -webkit-transition-timing-function: ease-out;
  147.  
  148. -webkit-transition-duration: .7s;
  149.  
  150. -moz-transition-timing-function: ease-out;
  151.  
  152. -moz-transition-duration: .7s;
  153.  
  154. moz-box-shadow: 0 0 1px #E799A3;
  155.  
  156. -webkit-box-shadow: 0 0 8px #C48793;
  157.  
  158. }
  159.  
  160. .circlelink2 {
  161.  
  162. left:66px;
  163.  
  164. background-color:transparent;
  165.  
  166. border-radius:100px;
  167.  
  168. bottom:5px;
  169.  
  170. width:70px;
  171.  
  172. height:40px;
  173.  
  174. margin-left:2px;
  175.  
  176. text-align:center;
  177.  
  178. font-color:#fff;
  179.  
  180. margin-bottom:10px;
  181.  
  182. padding-top:30px;
  183.  
  184. -webkit-transition-timing-function: ease-out;
  185.  
  186. -webkit-transition-duration: .7s;
  187.  
  188. -moz-transition-timing-function: ease-out;
  189.  
  190. -moz-transition-duration: .7s;
  191.  
  192. text-transform:uppercase;
  193.  
  194. position:fixed;
  195.  
  196. moz-box-shadow: 0 0 1px #E799A3;
  197.  
  198. -webkit-box-shadow: 0 0 8px #C48793;
  199.  
  200. }
  201.  
  202. .circlelink2:hover {
  203.  
  204. border-radius:100px;
  205.  
  206. position:fixed;
  207.  
  208. background: #FBBBB9;
  209.  
  210. width:70px;
  211.  
  212. height:40px;
  213.  
  214. margin-left:2px;
  215.  
  216. text-align:center;
  217.  
  218. padding-top:30px;
  219.  
  220. -webkit-transition-timing-function: ease-out;
  221.  
  222. -webkit-transition-duration: .7s;
  223.  
  224. -moz-transition-timing-function: ease-out;
  225.  
  226. -moz-transition-duration: .7s;
  227.  
  228. }
  229.  
  230. {CustomCSS}
  231.  
  232. ::-webkit-scrollbar-thumb:vertical {background-color:{color:bordering};width:6px;border:1px solid #fff;}
  233. ::-webkit-scrollbar {height:0px;width:5px;background-color:{color:background};}
  234.  
  235. iframe#tumblr_controls {right:3px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.5;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
  236.  
  237. iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 1;-webkit-transition: all 0.5s ease-out;-moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;}
  238.  
  239.  
  240. body {
  241. background-image: url('{image:background}');
  242. background-attachment:fixed;
  243. background-color:{color:background};
  244. font-family:{text:font};
  245. font-size:{text:font size};
  246. color:{color:text};
  247. }
  248.  
  249. a {
  250. color:{color:links};
  251. opacity:0.2px;
  252. text-decoration:none;
  253. -webkit-transition: all 0.6s ease-in;
  254. -moz-transition: all 0.6s ease-in;
  255. -o-transition: all 0.6s ease-in;
  256. }
  257.  
  258. a:hover {
  259. color:{color:links hover};
  260. opacity:0.2px;
  261. }
  262.  
  263. h1 {
  264. margin-top:0px;
  265. margin-bottom:-5px;
  266. font-size:16px;
  267. font-weight:lighter;
  268. letter-spacing:-1.5px;
  269. text-transform:uppercase;
  270. background-color:{color:post title BG};
  271. padding-left:6px;
  272. }
  273.  
  274. blockquote {
  275. padding-left:10px;
  276. border-left:1px solid {color:text};
  277. }
  278.  
  279. .audi img {
  280. max-width:100px;
  281. float:left;
  282. margin-right:5px;
  283. }
  284.  
  285. #content {
  286. {block:indexpage}
  287. {block:ifsmallposts}
  288. margin-left:43%;
  289. width:250px;
  290. {/block:ifsmallposts}
  291. {block:ifmediumposts}
  292. margin-left:34%;
  293. width:400px;
  294. {/block:ifmediumposts}
  295. {block:iflargeposts}
  296. margin-left:32%;
  297. width:500px;
  298. {/block:iflargeposts}
  299. {/block:indexpage}
  300. {block:permalinkpage}
  301. margin-left:32%;
  302. width:500px;
  303. {/block:permalinkpage}
  304. }
  305.  
  306. #entry {
  307. width: 250px;
  308. }
  309.  
  310. .post {
  311. float:left;
  312. overflow:hidden;
  313. {block:indexpage}
  314. padding:8px;
  315. margin-bottom:14px;
  316. background-color:{color:post BG};
  317. {block:ifpostbordering}
  318. border:4px solid {color:bordering};
  319. {/block:ifpostbordering}
  320. {block:ifsmallposts}
  321. width:250px;
  322. {/block:ifsmallposts}
  323. {block:ifmediumposts}
  324. width:400px;
  325. {/block:ifmediumposts}
  326. {block:iflargeposts}
  327. width:500px;
  328. {/block:iflargeposts}
  329. {/block:indexpage}
  330. {block:permalinkpage}
  331. width:500px;
  332. {/block:permalinkpage}
  333. }
  334.  
  335. .permalinkbox {
  336. position:relative;
  337. margin-top:-80px;
  338. float:right;
  339. width: 250px;
  340. margin-right:0px;
  341. letter-spacing: 3px;
  342. border-top: 2px solid;
  343. border-bottom: 2px solid;
  344. -webkit-transition: all 0.6s ease-in;
  345. -moz-transition: all 0.6s ease-in;
  346. -o-transition: all 0.6s ease-in;
  347. z-index:1;
  348. opacity:0;
  349. {block:permalinkpage}
  350. display:none;
  351. {/block:permalinkpage}
  352. }
  353.  
  354. .permalink {
  355. background-color: #00FFFF;
  356. color: white;
  357. text-align:center;
  358. padding:4px;
  359. opacity:0.9;
  360. font-family:calibri;
  361. font-size:9px;
  362. text-transform:uppercase;
  363. -webkit-transition: all 0.6s ease-in;
  364. -moz-transition: all 0.6s ease-in;
  365. -o-transition: all 0.6s ease-in;
  366. }
  367.  
  368. .permalink:hover {
  369. opacity:1;
  370. background: #FFEBCD;
  371. color:black;
  372. }
  373.  
  374. .post:hover .permalinkbox {
  375. opacity:1;
  376. margin-top: -24px;
  377. }
  378.  
  379. .notes img {
  380. height:20px;
  381. width:20px;
  382. }
  383.  
  384. .notes {
  385. content: 250px;
  386. width: 250px;
  387. }
  388.  
  389. .img {
  390. position:fixed;
  391. {block:indexpage}
  392. {block:ifsmallposts}
  393. left:43%;
  394. {/block:ifsmallposts}
  395. {block:ifmediumposts}
  396. left:34%;
  397. {/block:ifmediumposts}
  398. {block:iflargeposts}
  399. left:32%;
  400. {/block:iflargeposts}
  401. {/block:indexpage}
  402. {block:permalinkpage}
  403. left:32%;
  404. {/block:permalinkpage}
  405. top:30%;
  406. width:120px;
  407. overflow:hidden;
  408. border: 4px solid;
  409. padding:10px 10px 10px 10px;
  410. background-color: #DCDCDC;
  411. border-radius:0px 0px 0px 0px;
  412. margin-top:30px;
  413. margin-left: -248px;
  414. }
  415.  
  416. .img:hover {
  417. border-radius: 0px 0px 0px 0px;
  418. }
  419.  
  420. #side {
  421. width:240px;
  422. position:fixed;
  423. {block:indexpage}
  424. {block:ifsmallposts}
  425. left:43%;
  426. {/block:ifsmallposts}
  427. {block:ifmediumposts}
  428. left:34%;
  429. {/block:ifmediumposts}
  430. {block:iflargeposts}
  431. left:32%;
  432. {/block:iflargeposts}
  433. {/block:indexpage}
  434. {block:permalinkpage}
  435. left:32%;
  436. {/block:permalinkpage}
  437. top:30%;
  438. margin-left:-284px;
  439. }
  440.  
  441. .desc {
  442. margin-top: 133px;
  443. margin-left: 108px;
  444. width: 30px;
  445. float:left;
  446. position: fixed;
  447. }
  448.  
  449. .descri {
  450. position:fixed;
  451. margin-top:0px;
  452. float:right;
  453. text-transform: lowercase;
  454. width: 140px;
  455. height: 90px;
  456. font-size: 10px;
  457. font: arsenal white;
  458. margin-left: -68px;
  459. background: #EEE9E9;
  460. border-top: 4px solid #8B8989;
  461. border-bottom: 4px solid #8B8989;
  462. -webkit-transition: all 0.2s ease-in;
  463. -moz-transition: all 0.2s ease-in;
  464. -o-transition: all 0.2s ease-in;
  465. z-index:1;
  466. opacity:0;
  467. }
  468.  
  469. .descri:hover {
  470. border-radius: 0px 0px 0px 0px;
  471. opacity:2;
  472. border-top: 4px solid #CDC1C5;
  473. border-bottom: 4px solid #CDC1C5;
  474. background: #EEE9E9;
  475. position: fixed;
  476. color:black;
  477. -webkit-transition: all 0.5s ease-in;
  478. -moz-transition: all 0.5s ease-in;
  479. -o-transition: all 0.5s ease-in;
  480. }
  481.  
  482. .link {
  483. z-index:1;
  484. float:left;
  485. margin-bottom:2px;
  486. background: #CDC9C9;
  487. border-right:6px solid #8B8989;
  488. border-left:6px solid #8B8989;
  489. color:{color:side links TXT};
  490. font: calibri;
  491. font-color: white;
  492. font-size: 8px;
  493. letter-spacing: 6px;
  494. text-transform: uppercase;
  495. height:15px;
  496. width:90px;
  497. padding-left:10px;
  498. margin-top:-109px;
  499. margin-left:-190px;
  500. border-radius:0px 0px 0px 0px;
  501. -webkit-transition: all 0.2s ease-in;
  502. -moz-transition: all 0.2s ease-in;
  503. -o-transition: all 0.2s ease-in;
  504. opacity:1;
  505. }
  506.  
  507. .link:hover {
  508. opacity:0px;
  509. background-color:{color:side links BG hover};
  510. text-transform: uppercase;
  511. width:90px;
  512. font-color: black;
  513. border-right:6px solid black;
  514. border-left:6px solid black;
  515. letter-spacing: 6px;
  516. border-radius:0px 0px 0px 0px;
  517. background: #87CEFA;
  518. color: #EED5D2;
  519. opacity:2;
  520. }
  521.  
  522.  
  523. .link2 {
  524. z-index:1;
  525. float:left;
  526. margin-bottom:2px;
  527. background: #CDC9C9;
  528. border-right:6px solid #8B8989;
  529. border-left:6px solid #8B8989;
  530. color:{color:side links TXT};
  531. font: calibri;
  532. font-color: white;
  533. font-size: 8px;
  534. letter-spacing: 6px;
  535. text-transform: uppercase;
  536. height:15px;
  537. width:80px;
  538. padding-left:10px;
  539. margin-top:-91px;
  540. margin-left:-180px;
  541. border-radius:0px 0px 0px 0px;
  542. -webkit-transition: all 0.2s ease-in;
  543. -moz-transition: all 0.2s ease-in;
  544. -o-transition: all 0.2s ease-in;
  545. opacity:0.6;
  546. }
  547.  
  548. .link2:hover {
  549. opacity:0px;
  550. background-color:{color:side links BG hover};
  551. text-transform: uppercase;
  552. width:80px;
  553. font-color: black;
  554. border-right:6px solid black;
  555. border-left:6px solid black;
  556. letter-spacing: 6px;
  557. border-radius:0px 0px 0px 0px;
  558. background: #FFE4C4;
  559. color: #EED5D2;
  560. opacity:2;
  561. }
  562.  
  563. .link3 {
  564. z-index:1;
  565. float:left;
  566. margin-bottom:2px;
  567. background: #CDC9C9;
  568. border-right:6px solid #8B8989;
  569. border-left:6px solid #8B8989;
  570. color:{color:side links TXT};
  571. font: calibri;
  572. font-color: white;
  573. font-size: 8px;
  574. letter-spacing: 6px;
  575. text-transform: uppercase;
  576. height:15px;
  577. width:70px;
  578. padding-left:10px;
  579. margin-top:-73px;
  580. margin-left:-170px;
  581. border-radius:0px 0px 0px 0px;
  582. -webkit-transition: all 0.2s ease-in;
  583. -moz-transition: all 0.2s ease-in;
  584. -o-transition: all 0.2s ease-in;
  585. opacity:1;
  586. }
  587.  
  588. .link3:hover {
  589. opacity:0px;
  590. background-color:{color:side links BG hover};
  591. text-transform: uppercase;
  592. width:70px;
  593. font-color: black;
  594. border-right:6px solid black;
  595. border-left:6px solid black;
  596. letter-spacing: 6px;
  597. border-radius:0px 0px 0px 0px;
  598. background: #87CEFA;
  599. color: #EED5D2;
  600. opacity:2;
  601. }
  602.  
  603. .link4 {
  604. z-index:1;
  605. float:left;
  606. margin-bottom:2px;
  607. background: #CDC9C9;
  608. border-right:6px solid #8B8989;
  609. border-left:6px solid #8B8989;
  610. color:{color:side links TXT};
  611. font: calibri;
  612. font-color: white;
  613. font-size: 8px;
  614. letter-spacing: 6px;
  615. text-transform: uppercase;
  616. height:15px;
  617. width:60px;
  618. padding-left:10px;
  619. margin-top: -55px;
  620. margin-left:-160px;
  621. border-radius:0px 0px 0px 0px;
  622. -webkit-transition: all 0.2s ease-in;
  623. -moz-transition: all 0.2s ease-in;
  624. -o-transition: all 0.2s ease-in;
  625. opacity:0.6;
  626. }
  627.  
  628. .link4:hover {
  629. opacity:0px;
  630. background-color:{color:side links BG hover};
  631. text-transform: uppercase;
  632. width:60px;
  633. font-color: black;
  634. border-right:6px solid black;
  635. border-left:6px solid black;
  636. letter-spacing: 6px;
  637. border-radius:0px 0px 0px 0px;
  638. background: #FFE4C4;
  639. color: #EED5D2;
  640. opacity:2;
  641. }
  642.  
  643. .link5 {
  644. z-index:1;
  645. float:left;
  646. margin-bottom:2px;
  647. background: #CDC9C9;
  648. border-right:6px solid #8B8989;
  649. border-left:6px solid #8B8989;
  650. color:{color:side links TXT};
  651. font: calibri;
  652. font-color: white;
  653. font-size: 8px;
  654. letter-spacing: 6px;
  655. text-transform: uppercase;
  656. height:15px;
  657. width:50px;
  658. padding-left:10px;
  659. margin-top:-37px;
  660. margin-left:-150px;
  661. border-radius:0px 0px 0px 0px;
  662. -webkit-transition: all 0.2s ease-in;
  663. -moz-transition: all 0.2s ease-in;
  664. -o-transition: all 0.2s ease-in;
  665. opacity:1;
  666. }
  667.  
  668. .link5:hover {
  669. opacity:0px;
  670. background-color:{color:side links BG hover};
  671. text-transform: uppercase;
  672. width:50px;
  673. font-color: black;
  674. border-right:6px solid black;
  675. border-left:6px solid black;
  676. letter-spacing: 6px;
  677. border-radius:0px 0px 0px 0px;
  678. background: #87CEFA;
  679. color: #EED5D2;
  680. opacity:2;
  681. }
  682.  
  683. .titleholder {
  684. height:15px;
  685. width:15px;
  686. border-top:2px solid #EED5D2;
  687. border-bottom:2px solid #EED5D2;
  688. border-right:2px solid #EED5D2;
  689. border-left:2px solid #EED5D2;
  690. text-align:center;
  691. background: #E6E6FA;
  692. position: fixed;
  693. color: black;
  694. margin-top:15px;
  695. margin-left:92px;
  696. border-radius: 10px 10px 10px 10px;
  697. }
  698.  
  699. .title a {
  700. font-family:constantia;
  701. text-transform: lowercase;
  702. font-size:10px;
  703. background: ;
  704. font: ar julian;
  705. color: black;
  706. text-transform:uppercase;
  707. }
  708.  
  709. .title:hover {
  710. color: #000000;
  711. opacity: 2px;
  712. letter-spacing: 0px;
  713. border-radius: 0px 0px 0px 0px;
  714. }
  715.  
  716. .titleholder:hover {
  717. opacity:0.9px;
  718. height: 15px;
  719. width:15px;
  720. border-radius: 10px 10px 10px 10px;
  721. background: #E6E6FA;
  722. -webkit-transition: all 0.4s ease-in;
  723. -moz-transition: all 0.4s ease-in;
  724. -o-transition: all 0.4s ease-in;
  725. }
  726.  
  727. .readholder {
  728. font: calibri;
  729. font-size: 15px;
  730. text-align: center;
  731. background: #E6E6FA;
  732. color: black;
  733. position: fixed;
  734. border-top: 2px solid #EED5D2;
  735. border-bottom: 2px solid #EED5D2;
  736. border-right: 2px solid #EED5D2;
  737. border-left: 2px solid #EED5D2;
  738. height: 15px;
  739. width: 15px;
  740. border-radius: 10px 10px 10px 10px;
  741. margin-top: 15px;
  742. margin-left: 112px;
  743. }
  744.  
  745. .read {
  746. font-family: constantia;
  747. font-size: 10px;
  748. background: ;
  749. color: black;
  750. text-align: center;
  751. }
  752.  
  753. .read:hover {
  754. color: #000000;
  755. opacity: 2px;
  756. }
  757.  
  758. .readholder:hover {
  759. border-radius: 10px 10px 10px 10px;
  760. background: #E6E6FA;
  761. -webkit-transition: all 0.4s ease-in;
  762. -moz-transition: all 0.4s ease-in;
  763. -o-transition: all 0.4s ease-in;
  764. }
  765. .player {
  766. margin-top: -98px;
  767. margin-left: -255px;
  768. font-size: 9px;
  769. background: #FFDEAD;
  770. text-transform: uppercase;
  771. border-top: 2px solid;
  772. border-bottom: 2px solid;
  773. width: 80px;
  774. height: 12px;
  775. border-radius: 0px 0px 0px 0px;
  776. position: fixed;
  777. }
  778.  
  779. .pgna {
  780. position:fixed;
  781. {block:indexpage}
  782. {block:ifsmallposts}
  783. left:43%;
  784. {/block:ifsmallposts}
  785. {block:ifmediumposts}
  786. left:34%;
  787. {/block:ifmediumposts}
  788. {block:iflargeposts}
  789. left:32%;
  790. {/block:iflargeposts}
  791. {/block:indexpage}
  792. {block:permalinkpage}
  793. left:32%;
  794. {/block:permalinkpage}
  795. top:30%;
  796. margin-left:56px;
  797. margin-top:15px;
  798. text-align:right;
  799. margin-top:79px;
  800. }
  801.  
  802. .pops {
  803. font-size: 11px;
  804. line-height:13px;
  805. font-family: Arial;
  806. }
  807.  
  808. #fade { /*--Transparent background layer--*/
  809. display: none; /*--hidden by default--*/
  810. background: #000000;
  811. position: fixed; left: 0; top: 0;
  812. width: 100%; height: 100%;
  813. opacity: .80;
  814. z-index: 9999;
  815. }
  816. .popup_block{
  817. display: none; /*--hidden by default--*/
  818. background: #FFFAFA;
  819. padding: 10px;
  820. border: 1px solid #555;
  821. float: left;
  822. position: fixed;
  823. top: 50%; left: 50%;
  824. z-index: 99999;
  825. /*--CSS3 Box Shadows--*/
  826. -webkit-box-shadow: 0px 0px 20px #000;
  827. -moz-box-shadow: 0px 0px 20px #000;
  828. box-shadow: 0px 0px 20px #000;
  829. /*--CSS3 Rounded Corners--*/
  830. -webkit-border-radius: 10px;
  831. -moz-border-radius: 10px;
  832. border-radius: 10px;
  833. }
  834. img.btn_close {
  835. float: right;
  836. margin: -5px -5px 0px 0px;
  837. padding:none;
  838. }
  839. /*--Making IE6 Understand Fixed Positioning--*/
  840. *html #fade {
  841. position: absolute;
  842. }
  843. *html .popup_block {
  844. position: absolute;
  845. }
  846.  
  847.  
  848. .description {
  849. display: block;
  850. writing-mode: lr-tb;
  851. -webkit-transform: rotate(-360deg);
  852. -moz-transform: rotate(-360deg);
  853. -ms-transform: rotate(-360deg);
  854. -o-transform: rotate(-360deg);
  855. transform: rotate(-360deg);
  856. position: absolute;
  857. left: 54px;
  858. top: 4px;
  859. font-family:"georgia";
  860. font-size: 11px;
  861. text-transform: lowercase;
  862. letter-spacing: -1px;}
  863.  
  864. </style>
  865. {block:ifendlessscroll}
  866. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  867. {/block:ifendlessscroll}
  868. </head>
  869. <script type="text/javascript">
  870. // <![CDATA[
  871. var colour="random"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
  872. var sparkles=50;
  873.  
  874. /****************************
  875. * Tinkerbell Magic Sparkle *
  876. *(c)2005-12 mf2fm web-design*
  877. * http://www.mf2fm.com/rv *
  878. * DON'T EDIT BELOW THIS BOX *
  879. ****************************/
  880. var x=ox=400;
  881. var y=oy=300;
  882. var swide=800;
  883. var shigh=600;
  884. var sleft=sdown=0;
  885. var tiny=new Array();
  886. var star=new Array();
  887. var starv=new Array();
  888. var starx=new Array();
  889. var stary=new Array();
  890. var tinyx=new Array();
  891. var tinyy=new Array();
  892. var tinyv=new Array();
  893.  
  894. window.onload=function() { if (document.getElementById) {
  895. var i, rats, rlef, rdow;
  896. for (var i=0; i<sparkles; i++) {
  897. var rats=createDiv(3, 3);
  898. rats.style.visibility="hidden";
  899. document.body.appendChild(tiny[i]=rats);
  900. starv[i]=0;
  901. tinyv[i]=0;
  902. var rats=createDiv(5, 5);
  903. rats.style.backgroundColor="transparent";
  904. rats.style.visibility="hidden";
  905. var rlef=createDiv(1, 5);
  906. var rdow=createDiv(5, 1);
  907. rats.appendChild(rlef);
  908. rats.appendChild(rdow);
  909. rlef.style.top="2px";
  910. rlef.style.left="0px";
  911. rdow.style.top="0px";
  912. rdow.style.left="2px";
  913. document.body.appendChild(star[i]=rats);
  914. }
  915. set_width();
  916. sparkle();
  917. }}
  918.  
  919. function sparkle() {
  920. var c;
  921. if (x!=ox || y!=oy) {
  922. ox=x;
  923. oy=y;
  924. for (c=0; c<sparkles; c++) if (!starv[c]) {
  925. star[c].style.left=(starx[c]=x)+"px";
  926. star[c].style.top=(stary[c]=y)+"px";
  927. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  928. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  929. star[c].style.visibility="visible";
  930. starv[c]=50;
  931. break;
  932. }
  933. }
  934. for (c=0; c<sparkles; c++) {
  935. if (starv[c]) update_star(c);
  936. if (tinyv[c]) update_tiny(c);
  937. }
  938. setTimeout("sparkle()", 40);
  939. }
  940.  
  941. function update_star(i) {
  942. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  943. if (starv[i]) {
  944. stary[i]+=1+Math.random()*3;
  945. starx[i]+=(i%5-2)/5;
  946. if (stary[i]<shigh+sdown) {
  947. star[i].style.top=stary[i]+"px";
  948. star[i].style.left=starx[i]+"px";
  949. }
  950. else {
  951. star[i].style.visibility="hidden";
  952. starv[i]=0;
  953. return;
  954. }
  955. }
  956. else {
  957. tinyv[i]=50;
  958. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  959. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  960. tiny[i].style.width="2px";
  961. tiny[i].style.height="2px";
  962. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  963. star[i].style.visibility="hidden";
  964. tiny[i].style.visibility="visible"
  965. }
  966. }
  967.  
  968. function update_tiny(i) {
  969. if (--tinyv[i]==25) {
  970. tiny[i].style.width="1px";
  971. tiny[i].style.height="1px";
  972. }
  973. if (tinyv[i]) {
  974. tinyy[i]+=1+Math.random()*3;
  975. tinyx[i]+=(i%5-2)/5;
  976. if (tinyy[i]<shigh+sdown) {
  977. tiny[i].style.top=tinyy[i]+"px";
  978. tiny[i].style.left=tinyx[i]+"px";
  979. }
  980. else {
  981. tiny[i].style.visibility="hidden";
  982. tinyv[i]=0;
  983. return;
  984. }
  985. }
  986. else tiny[i].style.visibility="hidden";
  987. }
  988.  
  989. document.onmousemove=mouse;
  990. function mouse(e) {
  991. if (e) {
  992. y=e.pageY;
  993. x=e.pageX;
  994. }
  995. else {
  996. set_scroll();
  997. y=event.y+sdown;
  998. x=event.x+sleft;
  999. }
  1000. }
  1001.  
  1002. window.onscroll=set_scroll;
  1003. function set_scroll() {
  1004. if (typeof(self.pageYOffset)=='number') {
  1005. sdown=self.pageYOffset;
  1006. sleft=self.pageXOffset;
  1007. }
  1008. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  1009. sdown=document.body.scrollTop;
  1010. sleft=document.body.scrollLeft;
  1011. }
  1012. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  1013. sleft=document.documentElement.scrollLeft;
  1014. sdown=document.documentElement.scrollTop;
  1015. }
  1016. else {
  1017. sdown=0;
  1018. sleft=0;
  1019. }
  1020. }
  1021.  
  1022. window.onresize=set_width;
  1023. function set_width() {
  1024. var sw_min=999999;
  1025. var sh_min=999999;
  1026. if (document.documentElement && document.documentElement.clientWidth) {
  1027. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  1028. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  1029. }
  1030. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  1031. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  1032. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  1033. }
  1034. if (document.body.clientWidth) {
  1035. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  1036. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  1037. }
  1038. if (sw_min==999999 || sh_min==999999) {
  1039. sw_min=800;
  1040. sh_min=600;
  1041. }
  1042. swide=sw_min;
  1043. shigh=sh_min;
  1044. }
  1045.  
  1046. function createDiv(height, width) {
  1047. var div=document.createElement("div");
  1048. div.style.position="absolute";
  1049. div.style.height=height+"px";
  1050. div.style.width=width+"px";
  1051. div.style.overflow="hidden";
  1052. return (div);
  1053. }
  1054.  
  1055. function newColour() {
  1056. var c=new Array();
  1057. c[0]=255;
  1058. c[1]=Math.floor(Math.random()*256);
  1059. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  1060. c.sort(function(){return (0.5 - Math.random());});
  1061. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  1062. }
  1063. // ]]>
  1064. </script>
  1065.  
  1066. <style>body, a, a:hover { cursor:url(http://media.tumblr.com/tumblr_m4ptnaLsDQ1r6t3tx.gif), auto }</style>
  1067. <div class="circlelink"><a href="http://candiidoll.tumblr.com" target="_blank">FIRST BOTW</a></div>
  1068. <body>
  1069.  
  1070.  
  1071. </div>
  1072. </div>
  1073. <!-- Back to top button by tiovani start -->
  1074. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  1075.  
  1076. <script type="text/javascript" src="scrolltopcontrol.js">
  1077. </script>
  1078.  
  1079. <script type="text/javascript" src="http://static.tumblr.com/rs5pbx8/ZPRm4xnla/top.txt"></script>
  1080. <!-- Back to top button by tiovani end -->
  1081.  
  1082. {block:ifnotendlessscroll}
  1083. {block:Pagination}
  1084. <div class="pgna">
  1085. {block:NextPage}
  1086. <a href="{NextPage}">FURTHER</a><br>
  1087. {/block:NextPage}
  1088. {block:PreviousPage}
  1089. <a href="{PreviousPage}">ESCAPE</a>
  1090. {/block:PreviousPage}
  1091. </div>
  1092. {/block:Pagination}
  1093. {/block:ifnotendlessscroll}
  1094.  
  1095.  
  1096. <div id="side">
  1097. <center><font size="5" color="#2F4F4F">Invincible; </font></center>
  1098. <div class="img">
  1099. <img style="width:120px;" title="She is my SUPER TWIN :)" src="{image:side}">
  1100. <div class="titleholder"><div class="title"><a href="#?w=400" rel="01" class="poplight">X</a></div></div>
  1101. <div class="readholder"><div class="read"><a href="#?w=400" rel="02"
  1102. class="poplight">X</a></div></div>
  1103. </div>
  1104. <div class="desc">{Des}
  1105. <div style="">
  1106. </div>
  1107. <div class="link" title="home">
  1108. <center><a href="#?w=200" rel="06" class="poplight">credits</a></center>
  1109. </div>
  1110. <div class="link2" title="message">
  1111. <center><a href="#?w=200" rel="07" class="poplight">MESSAGE</a></center>
  1112. </div>
  1113. <div class="link3" title="frequently asked">
  1114. <center><a href="#?w=200" rel="03" class="poplight">faqs</a></center>
  1115. </div>
  1116. <div class="link4" title="links">
  1117. <center><a href="#?w=200" rel="04" class="poplight">links</a></center>
  1118. </div>
  1119. <div class="link5" title="index">
  1120. <center><a href="/">home</a></center>
  1121. </div>
  1122. <div id style="width: 40px; color: gray; margin-top: -128px; margin-left: -110px;"><center>[ +<script language="JavaScript">
  1123. var ref = (''+document.referrer+'');
  1124. document.write('<script src="http://freehostedscripts1.net/ocounter.php?site=ID1266300&e1=&e2=&r=' + ref + '"><\/script>');
  1125. </script>]</center></div>
  1126. <div class="descri"><center>"IN THE NAME OF TUMBLR, THIS BLOGGER IS WEIRD AND VERY VIVACIOUS. ENIGMATIC IN SORT OF WAYS BUT DEEPLY GOOD-HEARTED IN REPLY TO A GOOD ONES. A MOCKINGJAY AND A WIZARD. I could be a bestfriend."</center></div>
  1127. {block:iflinkone}<a href="{text:link one}" title="{text:link one title}"><div class="link">{text:link one title}</div></a>{/block:iflinkone}{block:iflinktwo}<a href="{text:link two}" title="{text:link two title}"><div class="link">{text:link two title}</div></a>{/block:iflinktwo}{block:iflinkthree}<a href="{text:link three}" title="{text:link three title}"><div class="link">{text:link three title}</div></a>{/block:iflinkthree}
  1128. {block:iflinkfour}<a href="{text:link four}" title="{text:link four title}"><div class="link">{text:link four title}</div></a>{/block:iflinkfour}{block:iflinkfive}<a href="{text:link five}" title="{text:link five title}"><div class="link">{text:link five title}</div></a>{/block:iflinkfive}
  1129. </div>
  1130. </div>
  1131.  
  1132. <div id="content">
  1133.  
  1134. {block:Posts}
  1135.  
  1136. {block:Text}
  1137. <div class="post">
  1138. {block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}
  1139. {body}
  1140.  
  1141. <div id style="border-top: 1px solid; color: #BEBEBE; margin-top:12px;"></div>
  1142. <center><a href="{Permalink}">{NoteCountWithLabel}</a>
  1143. <a href="{ReblogURL}"target="_blank">• REBLOG</a></center>
  1144. <div id style="border-bottom: 1px solid; color: #BEBEBE; margin-top: 2px;"></div>
  1145. {block:indexpage}
  1146. {block:ifshowcaptions}
  1147. {Caption}
  1148. {/block:ifshowcaptions}
  1149. {/block:indexpage}
  1150. {block:permalinkpage}
  1151. {Caption}
  1152. {/block:permalinkpage}
  1153. </div>
  1154. {/block:Text}
  1155.  
  1156. {block:Photo}
  1157. <div style="padding-bottom:5px;" class="post">
  1158. {block:indexpage}
  1159. {LinkOpenTag}
  1160. <meta name="{PhotoAlt}" content="{PhotoAlt}"/>
  1161. {block:ifsmallposts}
  1162. <img src="{PhotoURL-250}">
  1163. {/block:ifsmallposts}
  1164. {block:ifmediumposts}
  1165. <img style="width:400px;" src="{PhotoURL-500}">
  1166. {/block:ifmediumposts}
  1167. {block:iflargeposts}
  1168. <img src="{PhotoURL-500}">
  1169. {/block:iflargeposts}
  1170. {LinkCloseTag}
  1171. {/block:indexpage}
  1172. {block:permalinkpage}
  1173. <img src="{PhotoURL-500}">
  1174. {/block:permalinkpage}
  1175. <div class="permalinkbox">
  1176. <div class="permalink">
  1177. <a href="{Permalink}">{NoteCountWithLabel}</a>
  1178. <a href="{ReblogURL}"target="_blank">[ REBLOG ]</a>
  1179. </div>
  1180. </div>
  1181. {block:indexpage}
  1182. {block:ifshowcaptions}
  1183. {Caption}
  1184. {/block:ifshowcaptions}
  1185. {/block:indexpage}
  1186. {block:permalinkpage}
  1187. {Caption}
  1188. {/block:permalinkpage}
  1189. </div>
  1190. {/block:Photo}
  1191.  
  1192. {block:Photoset}
  1193. <div class="post">
  1194. {block:indexpage}
  1195. {block:ifsmallposts}
  1196. {Photoset-250}
  1197. {/block:ifsmallposts}
  1198. {block:ifmediumposts}
  1199. {Photoset-400}
  1200. {/block:ifmediumposts}
  1201. {block:iflargeposts}
  1202. {Photoset-500}
  1203. {/block:iflargeposts}
  1204. {/block:indexpage}
  1205. {block:permalinkpage}
  1206. {Photoset-500}
  1207. {/block:permalinkpage}
  1208. <div class="permalinkbox">
  1209. <div class="permalink">
  1210. <a href="{Permalink}">{NoteCountWithLabel}</a>
  1211. <a href="{ReblogURL}"target="_blank">[ REBLOG ]</a>
  1212. </div>
  1213. </div>
  1214. {block:indexpage}
  1215. {block:ifshowcaptions}
  1216. {Caption}
  1217. {/block:ifshowcaptions}
  1218. {/block:indexpage}
  1219. {block:permalinkpage}
  1220. {Caption}
  1221. {/block:permalinkpage}
  1222. </div>
  1223. {/block:Photoset}
  1224.  
  1225. {block:Chat}
  1226. <div class="post">
  1227. {block:Title}<h1 style="margin-bottom:5px;">{Title}</h1>{/block:Title}
  1228. {block:Lines}
  1229. <li style="list-style:none;">
  1230. {block:Label}
  1231. {Label}
  1232. {/block:Label}
  1233. <i>
  1234. {Line}
  1235. </i>
  1236. </li>
  1237. {/block:Lines}
  1238.  
  1239. <div id style="border-top: 1px solid; color: #BEBEBE; margin-top: 12px;"></div>
  1240. <center><a href="{Permalink}">{NoteCountWithLabel}</a>
  1241. <a href="{ReblogURL}"target="_blank">• REBLOG</a></center>
  1242. <div id style="border-bottom: 1px solid; color: #BEBEBE; margin-top: 2px;"></div>
  1243. {block:indexpage}
  1244. {block:ifshowcaptions}
  1245. {Caption}
  1246. {/block:ifshowcaptions}
  1247. {/block:indexpage}
  1248. {block:permalinkpage}
  1249. {Caption}
  1250. {/block:permalinkpage}
  1251. </div>
  1252. {/block:Chat}
  1253.  
  1254. {block:Link}
  1255. <div class="post">
  1256. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  1257. {block:Description}
  1258. {Description}
  1259. {/block:Description}
  1260.  
  1261.  
  1262. <div id style="border-top: 1px solid; color: #BEBEBE; margin-top:12px;"></div>
  1263. <center><a href="{Permalink}">{NoteCountWithLabel}</a>
  1264. <a href="{ReblogURL}"target="_blank">• REBLOG</a></center>
  1265. <div id style="border-bottom: 1px solid; color: #BEBEBE; margin-top: 2px;"></div>
  1266. {block:indexpage}
  1267. {block:ifshowcaptions}
  1268. {Caption}
  1269. {/block:ifshowcaptions}
  1270. {/block:indexpage}
  1271. {block:permalinkpage}
  1272. {Caption}
  1273. {/block:permalinkpage}
  1274. </div>
  1275. {/block:Link}
  1276.  
  1277. {block:Video}
  1278. <div class="post">
  1279. {block:indexpage}
  1280. {block:ifsmallposts}
  1281. {Video-250}
  1282. {/block:ifsmallposts}
  1283. {block:ifmediumposts}
  1284. {Video-400}
  1285. {/block:ifmediumposts}
  1286. {block:iflargeposts}
  1287. {Video-500}
  1288. {/block:iflargeposts}
  1289. {/block:indexpage}
  1290. {block:permalinkpage}
  1291. {Video-500}
  1292. {/block:permalinkpage}
  1293. <div class="permalinkbox">
  1294. <div class="permalink">
  1295. <a href="{Permalink}">{NoteCountWithLabel}</a>
  1296. <a href="{ReblogURL}"target="_blank">[ REBLOG ]</a>
  1297. </div>
  1298. </div>
  1299. {block:indexpage}
  1300. {block:ifshowcaptions}
  1301. {Caption}
  1302. {/block:ifshowcaptions}
  1303. {/block:indexpage}
  1304. {block:permalinkpage}
  1305. {Caption}
  1306. {/block:permalinkpage}
  1307. </div>
  1308. {/block:Video}
  1309.  
  1310. {block:Audio}
  1311. <div class="post">
  1312. <div style="margin-bottom:5px;background-color:#000;width:100%;">{AudioPlayerBlack}</div><div class="audi">{block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>{block:Artist}<b>ARTIST:</b> {Artist}{/block:Artist}<br>{block:Album}<b>ALBUM:</b> {Album}{/block:Album}<br>{Block:TrackName}<b>TRACK:</b> {TrackName}{/block:TrackName}</p><b>PLAYS:</b> {PlayCountWithLabel}
  1313. <div class="permalinkbox">
  1314. <div class="permalink">
  1315. <a href="{Permalink}">{NoteCountWithLabel}</a>
  1316. <a href="{ReblogURL}"target="_blank">[ REBLOG ]</a>
  1317. </div>
  1318. </div>
  1319. {block:indexpage}
  1320. {block:ifshowcaptions}
  1321. {Caption}
  1322. {/block:ifshowcaptions}
  1323. {/block:indexpage}
  1324. {block:permalinkpage}
  1325. {Caption}
  1326. {/block:permalinkpage}
  1327. </div>
  1328. {/block:Audio}
  1329.  
  1330. {block:Quote}
  1331. <div class="post">
  1332. "{Quote}"
  1333. <div style="border-bottom:1px solid {color:bordering};margin-bottom:3px;padding-top:5px;"></div><div style="text-align:right;">
  1334. {block:Source}― <i>{Source}</i>{/block:Source}</div>
  1335. <div id style="border-top: 1px solid; color:#BEBEBE; margin-top:12px;"></div>
  1336. <center><a href="{Permalink}">{NoteCountWithLabel}</a>
  1337. <a href="{ReblogURL}"target="_blank">• REBLOG</a></center>
  1338. <div id style="border-bottom: 1px solid; color: #BEBEBE; margin-top:2px;"></div>
  1339. {block:indexpage}
  1340. {block:ifshowcaptions}
  1341. {Caption}
  1342. {/block:ifshowcaptions}
  1343. {/block:indexpage}
  1344. {block:permalinkpage}
  1345. {Caption}
  1346. {/block:permalinkpage}
  1347. </div>
  1348. {/block:Quote}
  1349.  
  1350. {block:Answer}
  1351. <div class="post">
  1352. <div style="padding:5px;background-color: #EEE9E9;">{Asker}: {Question}</div>{Answer}
  1353. <div id style="border-top: 1px solid; color:#BEBEBE; margin-top:12px;"></div>
  1354. <center><a href="{Permalink}">{NoteCountWithLabel}</a>
  1355. <a href="{ReblogURL}"target="_blank">• REBLOG</a></center>
  1356. <div id style="border-bottom: 1px solid; color: #BEBEBE; margin-top:2px;"></div>
  1357. {block:indexpage}
  1358. {block:ifshowcaptions}
  1359. {Caption}
  1360. {/block:ifshowcaptions}
  1361. {/block:indexpage}
  1362. {block:permalinkpage}
  1363. {Caption}
  1364. {/block:permalinkpage}
  1365. </div>
  1366. {/block:Answer}
  1367.  
  1368. {block:PermalinkPage}
  1369. <div style="float:left;width:500px;">{block:Date}
  1370. <div style="font-weight:bold;font-size:12px;border-bottom:1px solid {color:bordering};margin-bottom:3px;text-transform:uppercase;">{DayOfWeek}, {Month} {DayOfMonth}{DayOfMonthSuffix} {Year} ({12Hour}:{Minutes}{AmPm})</div>{/block:Date}{block:PostNotes}{NoteCountWithLabel}<br>{block:PostNotes}{block:HasTags}tagged:{block:Tags}#<a href="{TagURL}" title="{Tag}">{Tag} </a>{/block:Tags}<br>{/block:HasTags}{block:RebloggedFrom}via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>original: <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a>{/block:RebloggedFrom}{block:Date}<div style="border-bottom:1px solid {color:bordering};padding-top:3px;margin-bottom:3px;"></div>navigation: <a href="{ReblogURL}" title="reblog this post">reblog</a>, <a href="/">index</a>, <a href="/random" title="random post">random</a>{/block:Date}{block:NoteCount}<div style="border-bottom:1px solid {color:bordering};padding-top:3px;"></div><div class="notes">{PostNotes}</div>{/block:NoteCount}</div>
  1371. {/block:PermalinkPage}
  1372.  
  1373. {/block:Posts}
  1374.  
  1375. </div>
  1376.  
  1377.  
  1378.  
  1379. <div id="01" class="popup_block">
  1380. <div class="pops">
  1381.  
  1382. The name is Rein. A tribute from Disrict 13. A Demigod. A Wizard. Defense against the Dark Arts is my favorite subject. I deal with spells and vampires. I have 18 bicycles and I'm addicted to them. Tumblr is my rest house and recently resting :) I'm only 14 and lives in the tourism parts of the Philippines. I love rivers and nature. I love vintage. Damn rats! I hate them. I am not afraid to ghosts, seriously. I love yellow and green but black and white simplifies the most. I am weird, accept it. We can be friends and that's unlimited. Hate me? Then I'll give you WAR! lol. Feel free to spam my inbox and submit an asdfghjkl whatever it is.
  1383.  
  1384. <center><a href="/tagged/facts">SOME FACTS ABOUT ME</a></center>
  1385. <center><a href="/tagged/kabuang">OMG. MY TRUE FRIENDS</a></center>
  1386. <center><a href="http://theanotherword.tumblr.com">PERSONAL BLOG YOWW!</a></center>
  1387.  
  1388.  
  1389. </div>
  1390. </div></div>
  1391. <div id="02" class="popup_block">
  1392. <div class="pops">
  1393.  
  1394. <center><bold>READ THIS PLEASE.</bold></center>
  1395. I will be less active this coming next week due to starting of classes (like all of us too). Don't worry guys, I will still post photos but only limited and your messages will still be answered. I will open my blog in noontime or in the evening but only half-hour or what. Godbless and thank you for taking time reading this.
  1396. <center><a href="/ask">MESSAGE ME REGARDING ABOUT THIS</a></center>
  1397. <center><a href="/submit">SUBMIT ANYTHING U WANT</a></center>
  1398.  
  1399. </div>
  1400. </div></div>
  1401. <div id="03" class="popup_block">
  1402. <div class="pops">
  1403.  
  1404. <b>N-S-A-L?</b>
  1405.  
  1406. <li>Rein - Gay - 14 - Phils.</li>
  1407.  
  1408.  
  1409. <b>CHECK BLOGS?</b>
  1410.  
  1411. <li>Sure thing dear. But MBF me.</li>
  1412.  
  1413.  
  1414. <b>FOLLOW MINE?</b>
  1415.  
  1416. <li>I'll check it first, k?</li>
  1417.  
  1418.  
  1419. <b>HOW MANY FOLLOWERS?</b>
  1420.  
  1421. <li>It's none of your business</li>
  1422.  
  1423.  
  1424. <b>PROMO FOR PROMO?</b>
  1425.  
  1426. <li>Sure thing :)</li>
  1427.  
  1428.  
  1429. <b>FANSIGN FOR FANSIGN?</b>
  1430.  
  1431. <li>It depends in my mood :)</li>
  1432.  
  1433. <b>VOTE FOR ME AT?</b>
  1434.  
  1435. <li>I will vote for you but mbf me.</li>
  1436.  
  1437. <b>INSERT HATE</b>
  1438.  
  1439. <li>I'm not affected :P</li>
  1440.  
  1441.  
  1442. <b>INSERT COMPLIMENT</b>
  1443.  
  1444. <li>Thank you so much :)</li>
  1445.  
  1446.  
  1447. </div>
  1448. </div></div>
  1449. <div id="04" class="popup_block">
  1450. <div class="pops">
  1451.  
  1452. <b>OTHER ACCOUNTS :</b>
  1453.  
  1454. <li><a href="http://www.facebook.com/ReinDropz08" target="_blank">Le Facebook</a></li>
  1455. <li><a href="http://www.twitter.com/ReinTweetaholic" target="_blank">Le Twitter</a></li>
  1456. <li><a href="http://leswaggers.tumblr.com" target="_blank">Group Blog 1</a></li>
  1457. <li><a href="http://epicwonderstruck.tumblr.com" target="_blank">Group Blog 2</a></li>
  1458. <li><a href="http://notanother-diary.tumblr.com" target="_blank">Personal Blog</a></li>
  1459.  
  1460.  
  1461.  
  1462. <b>RELATED TO BLOGS :</b>
  1463. <li><a href="http://reindrop-s.tumblr.com/tagged/replies">Replies</a></li>
  1464. <li><a href="http://reindrop-s.tumblr.com/tagged/fansigns">Fansigns</a></li>
  1465. <li><a href="/tumily">Tumily</a></li>
  1466. <li><a href="/blogroll">Blogroll</a></li>
  1467. <li><a href="/vips">Vips</a></li>
  1468.  
  1469.  
  1470.  
  1471. <b>MAIN CATEGORIES :</b>
  1472.  
  1473. <li><a href="/tagged/food">Food</a></li>
  1474. <li><a href="/tagged/photography">Fave Photographs</a></li>
  1475. <li><a href="/tagged/hearts">Hearts</a></li>
  1476. <li><a href="/tagged/puppy">My puppies</a></li>
  1477. <li><a href="/tagged/kabuang">District 12</a></li>
  1478. <li><a href="/tagged/bohol">Bohol, Phils. my place</a></li>
  1479.  
  1480. </div>
  1481. </div></div>
  1482. <div id="05" class="popup_block">
  1483. <div class="pops">
  1484.  
  1485. <b>Here in my personal blog, I often speak my own dialect. Filipino and Visaya [Fil. Language] but if you are open in any languages, feel free to proceed. But if you're really interested, now go and proceed too.
  1486.  
  1487.  
  1488.  
  1489. <center><i><a href="http://notanother-diary.tumblr.com" target="_blank">PROCEED TO MY PERSONAL BLOG</a></i></center>
  1490.  
  1491. </div>
  1492. </div></div>
  1493. <div id="06" class="popup_block">
  1494. <div class="pops">
  1495.  
  1496. <center>THEME : <a href="http://noctos.tumblr.com">Noctos</a></center>
  1497. <center>HEAVILY TWEAKED : <a href="http://reindrop-s.tumblr.com">18bicycles</a></center>
  1498. <center>SCROLL TO TOP: <a href="http://tiovani.tumblr.com">Ika</a></center>
  1499. <center>CURSOR : <a href="http://meowtella.tumblr.com">Lydia</a></center>
  1500. <center>SIDEBAR PICTS : <a href="http://itsallabouttaylorswift.tumblr.com">Swifties</a></center>
  1501.  
  1502. <i>All photos here are not mine unless stated. If you have any seen copycats in your opinion then feel free to talk with me so I can explain you.</i>
  1503.  
  1504.  
  1505. </div>
  1506. </div></div>
  1507. <div id="07" class="popup_block">
  1508. <div class="pops">
  1509. <center><b>PLEASE READ FAQS FIRST</b></center>
  1510.  
  1511. <center><a href="http://reindrop-s.tumblr.com/ask">PROCEED TO ASKBOX</a></center>
  1512. </div>
  1513. </div></div>
  1514.  
  1515.  
  1516. </div></div></div></div></div></div></div></div></div></div>
  1517.  
  1518.  
  1519.  
  1520.  
  1521. <div style="position:fixed; bottom:5px; right:5px;"><img src="http://i49.tinypic.com/6xrgo0.jpg"/></div>
  1522. </body>
  1523. </html>
Advertisement
Add Comment
Please, Sign In to add comment