Advertisement
soodacris

for jongin.

Oct 20th, 2013
16
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.01 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  2.  
  3. <head>
  4.  
  5. <script type="text/javascript"
  6. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  7. <script>
  8. $(document).ready(function() {
  9. //
  10. $('a.poplight[href^=#]').click(function() {
  11. var popID = $(this).attr('rel'); //Get Popup Name
  12. var popURL = $(this).attr('href'); //Get Popup href to define size
  13. var query= popURL.split('?');
  14. var dim= query[1].split('&');
  15. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  16. $('#' + 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" alt="Close" /></a>');
  17. var popMargTop = ($('#' + popID).height() + 80) / 2;
  18. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  19. //Apply Margin to Popup
  20. $('#' + popID).css({
  21. 'margin-top' : -popMargTop,
  22. 'margin-left' : -popMargLeft
  23. });
  24. $('body').append('<div id="fade"></div>');
  25. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  26. return false;
  27. });
  28. $('a.close, #fade').live('click', function() {
  29. $('#fade , .popup_block').fadeOut(function() {
  30. $('#fade, a.close').remove(); //fade them both out
  31. });
  32. return false;
  33. });
  34. });
  35. </script>
  36.  
  37. <title>{Title}</title>
  38. <link rel="shortcut icon" href="http://media.tumblr.com/tumblr_lkl647v8OI1qfamg6.gif" />
  39. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  40.  
  41. {block:Description}
  42. <meta name="description" content="{MetaDescription}" />
  43. {/block:Description}
  44. <meta name="text:quote"/>
  45.  
  46. <meta name="color:link"/>
  47. <meta name="color:link hover"/>
  48. <meta name="color:link shadow"/>
  49. <meta name="color:background"/>
  50. <meta name="color:sidebar background"/>
  51. <meta name="color:text"/>
  52.  
  53. <meta name="if:250px" content="1"/>
  54. <meta name="if:400px"/>
  55.  
  56. <meta name="image:sidebar"/>
  57. <meta name="image:sidebar2"/>
  58.  
  59. <style type="text/css">
  60.  
  61. #fade { /*--Transparent background layer--*/
  62. display: none; /*--hidden by default--*/
  63. background:transparent;
  64. position: fixed; left: 0; top: 0;
  65. width: 100%; height: 100%;
  66. opacity: 1;
  67. z-index: 9999;
  68. }
  69.  
  70. .popup_block{
  71. display: none; /*--hidden by default--*/
  72. background: #ffffff;
  73. padding: 20px;
  74. font-family: calibri;
  75. float: left;
  76. color:#181818;
  77. font-size: 11px;
  78. text-shadow: 0px 1px 5px #878787;
  79. position: fixed;
  80. top: 50%; left: 50%;
  81. border: 1px solid #eeeeee;
  82. z-index: 99999;
  83. overflow: auto;
  84. /*--CSS3 Box Shadows--*/
  85. -webkit-box-shadow: 0px 0px 20px #000;
  86. -moz-box-shadow: 0px 0px 20px #000;
  87. box-shadow: 1px 1px 20px #000;
  88. -webkit-transition: all .5s ease;
  89. -moz-transition: all .5s ease;
  90. -o-transition: all .5s ease;
  91. transition: all .5s ease;
  92. }
  93. a:link{
  94. color:{color:link};
  95. text-decoration: none;
  96. }
  97. a:visited{
  98. color:{color:link};
  99. text-decoration: none;
  100. }
  101. a:hover{
  102. color:{color:link hover};
  103. text-decoration: none;
  104. }
  105. .popup_block:hover{
  106. opacity:1;
  107. -webkit-transition: all .5s ease;
  108. -moz-transition: all .5s ease;
  109. -o-transition: all .5s ease;
  110. transition: all .5s ease;
  111. }
  112. img.btn_close {
  113. float: right;
  114. margin: -15px -15px 0 0;
  115. }
  116. *html .popup_block {
  117. position: absolute;
  118. }
  119.  
  120.  
  121. body {
  122. background:{color:background};
  123. letter-spacing: 1px;
  124. font: 9px arial;
  125. color:{color:text};
  126. word-wrap: break-word;
  127. }
  128.  
  129. ::-webkit-scrollbar-thumb:vertical {
  130. background-color: {color:link};
  131. height: 50px;
  132. }
  133.  
  134. ::-webkit-scrollbar {
  135. height: 10px;
  136. width: 3px;
  137. background-color:{color:sidebar background};
  138. }
  139.  
  140. #s-m-t-tooltip {
  141. z-index: 9999;
  142. background:{color:sidebar background};
  143. font-size:8px;
  144. line-height:11px;
  145. font-family:littlefont;
  146. letter-spacing:1px;
  147. box-shadow:1px 1px 1px {color:link shadow};
  148. text-transform:uppercase;
  149. color:{color:text};
  150. max-width:120px;
  151. word-wrap:break-word;
  152. padding:2px 5px 2px 6px;
  153. display:block;
  154. border:1px dashed {color:link};
  155. margin:20px 10px 10px 10px;
  156. }
  157.  
  158. iframe#tumblr_controls {
  159. right:3px !important;
  160. position: fixed !important;
  161. -webkit-filter: invert(100%);
  162. opacity: 0.3;
  163. z-index: 9999;
  164. }
  165.  
  166.  
  167. -webkit-transition: all 0.8s ease-out;
  168. -moz-transition: all 0.8s ease-out;
  169. transition: all 0.8s ease-out;
  170. }
  171.  
  172.  
  173. iframe#tumblr_controls:hover {
  174. opacity: 1;
  175. -webkit-transition: all 0.4s ease-out;
  176. -moz-transition: all 0.4s ease-out;
  177. transition: all 0.4s ease-out; }
  178.  
  179. a {
  180. color:{color:link};
  181. text-decoration: none;
  182. text-shadow: 0px 1px 5px {color:link shadow};
  183. }
  184.  
  185. b, strong { color:{color:text} }
  186.  
  187. #content {
  188. margin-top:-10px;
  189. background: transparent;
  190. padding: 1px 20px 20px 20px;
  191. margin-left: 460px;
  192. {block:if250px}
  193. width: 272px;
  194. {/block:if250px}
  195. {block:if400px}
  196. width: 422px;
  197. {/block:if400px}
  198. {block:PermalinkPage}
  199. width: 422px;
  200. {/block:PermalinkPage}
  201. }
  202.  
  203.  
  204. .posts {
  205. padding: 10px;
  206. border-radius:5px;
  207. text-align:justify;
  208. line-height: 10px;
  209. border: 1px solid {color:text};
  210. margin-top: 15px;
  211. overflow: hidden;
  212. background: transparent;
  213. {block:if250px}
  214. width: 250px;
  215. {/block:if250px}
  216. {block:if400px}
  217. width: 400px;
  218. {/block:if400px}
  219. {block:PermalinkPage}
  220. width: 400px;
  221.  
  222. {/block:PermalinkPage} }
  223.  
  224. .posts a{
  225. color:{color:link};
  226. text-shadow: 0px 1px 5px {color:link shadow};
  227. }
  228.  
  229. .posts a:hover{
  230. color:{color:link hover};
  231. text-decoration:none;
  232. }
  233.  
  234. .posts h1 {
  235. font-family: calibri;
  236. font-size: 11px;
  237. color:{color:text};
  238. background-color:transparent;
  239. font-weight: normal;
  240. letter-spacing: 1px;
  241. text-transform: uppercase;
  242. text-align: center;
  243. text-shadow: 0px 1px 5px {color:link shadow};
  244. margin-top: 0px;
  245. padding: 2px;
  246. border-bottom: 0px solid #aaaaaa;
  247. }
  248.  
  249. .posts h1 a {
  250. color:{color:link};
  251. }
  252.  
  253.  
  254. .posts img {
  255. max-width: 100%;
  256. }
  257.  
  258. .posts h2 { /*--quote title--*/
  259. font-family: calibri;
  260. font-size: 12px;
  261. color: {color:text};
  262. font-weight: normal;
  263. font-style: none;
  264. text-transform: normal;
  265. letter-spacing: 0px;
  266. text-align: center;
  267. }
  268.  
  269. .quote {
  270. font-family: georgia;
  271. font-size: 20px;
  272. color: {color:text};
  273. float: left;
  274. margin-top: -1px;
  275. margin-right: 5px;
  276. }
  277.  
  278.  
  279. blockquote {
  280. padding: 5px 5px 5px 5px;
  281. border-left:3px solid {color:text};
  282. border-radius:7px;
  283. margin-left: 10px;
  284. margin-right: 10px;
  285. background:transparent;
  286. }
  287.  
  288.  
  289. li {
  290. list-style-type: square; }
  291.  
  292.  
  293. #captions {
  294. display: block;
  295. border-left: 3px double #343434;
  296. padding: 1px 10px 1px 10px;
  297. margin-top: 10px;
  298. {block:IndexPage}
  299. display: none;
  300. {/block:IndexPage}
  301. }
  302.  
  303. #audio {
  304. margin-left: 0px;
  305. }
  306.  
  307. #audinfo {
  308. width: 120px;
  309. padding-top: 0px;
  310. margin-left: 10px;
  311. margin-top: 30px;
  312. min-height:60px;
  313. margin-bottom: 0px;
  314. text-transform:uppercase;
  315. font-family: trebuchet ms;
  316. font-size: 7px;
  317. line-height: 8px;
  318. letter-spacing: 1px;
  319. text-align: center;
  320. z-index: 999;
  321. {block:if250px}
  322. padding-left: 0px;
  323. {/block:if250px}
  324. {block:if400px}
  325. padding-left: 70px;
  326. {/block:if400px}
  327. {block:PermalinkPage}
  328. padding-left; 70px;
  329. {/block:PermalinkPage}
  330. }
  331.  
  332. #player {
  333. width:30px;
  334. height:30px;
  335. overflow:hidden;
  336. position:absolute;
  337. margin-top:27px;
  338. text-align: center;
  339. margin-bottom:5px;
  340. margin-left: 20px;
  341. padding-left: 5px;
  342. opacity: 0.3;
  343. filter:alpha(opacity=30);
  344. -moz-opacity: 0.3;
  345. -khtml-opacity: 0.3;
  346. z-index: 3;
  347. -webkit-transition: all 0.7s ease-out;
  348. -moz-transition: all 0.7s ease-out;
  349. -o-transition: all 0.7s ease-out;
  350. }
  351.  
  352. #player:hover {
  353. opacity: 0.7;
  354. filter:alpha(opacity=70);
  355. -moz-opacity: 70;
  356. -khtml-opacity: 70;
  357. -webkit-transition: all 0.7s ease-out;
  358. -moz-transition: all 0.7s ease-out;
  359. -o-transition: all 0.7s ease-out;
  360. }
  361.  
  362. #p {
  363. width:80px;
  364. height:80px;
  365. margin-top:5px;
  366. margin-bottom:0px;
  367. background-color: #fff;
  368. opacity: 0.1;
  369. filter:alpha(opacity=30);
  370. -moz-opacity: 0.3;
  371. -khtml-opacity: 0.3;
  372. position:absolute;
  373. z-index: 2;
  374. -webkit-transition: all 0.7s ease-out;
  375. -moz-transition: all 0.7s ease-out;
  376. -o-transition: all 0.7s ease-out;
  377. {block:if250px}
  378. margin-left: 140px;
  379. {/block:if250px}
  380. {block:if400px}
  381. margin-left: 209px;
  382. {/block:if400px}
  383. {block:PermalinkPage}
  384. padding-left; 209px;
  385. {/block:PermalinkPage}
  386. }
  387.  
  388. #p:hover {
  389. opacity: 0.1;
  390. filter:alpha(opacity=50);
  391. -moz-opacity: 50;
  392. -khtml-opacity: 50;
  393. -webkit-transition: all 0.7s ease-out;
  394. -moz-transition: all 0.7s ease-out;
  395. -o-transition: all 0.7s ease-out;
  396. }
  397.  
  398. #cover {
  399. width: 80px;
  400. height: 80px;
  401. float:left;
  402. margin-top: 1px;
  403. z-index: 1;
  404. position:absolute;
  405. border: 1px
  406. solid #ddd;
  407. padding: 3px;
  408. {block:if250px}
  409. margin-left: 136px;
  410. {/block:if250px}
  411. {block:if400px}
  412. margin-left: 205px;
  413. {/block:if400px}
  414. {block:PermalinkPage}
  415. padding-left; 205px;
  416. {/block:PermalinkPage}
  417. }
  418.  
  419. #audiocaptions {
  420. display: block;
  421. padding: 1px 10px 1px 10px;
  422. margin-top: 10px;
  423. border-top: 1px solid #ededed;
  424. /*{block:IfNotShowCaptions}
  425. {block:IndexPage}
  426. display: none;
  427. {/block:IndexPage}
  428. {/block:IfNotShowCaptions}*/
  429. }
  430.  
  431.  
  432. .pagination {
  433. margin-top: 5px;
  434. text-align: center;
  435. }
  436.  
  437.  
  438. #albumart img {
  439. width: 70px;
  440. height: 70px;
  441. }
  442.  
  443.  
  444. #permalink {
  445. background:transparent;
  446. text-transform: uppercase;
  447. text-shadow: 0px 1px 5px {color:link shadow};
  448. font: 8px littlefont;
  449. letter-spacing: 1px;
  450. text-align: center;
  451. padding: 10px 10px 10px 10px;
  452. {block:if250px}
  453. width: 250px;
  454. {/block:if250px}
  455. {block:if400px}
  456. width: 400px;
  457. {/block:if400px}
  458. {block:PermalinkPage}
  459. width: 400px;
  460.  
  461. {/block:PermalinkPage}
  462. }
  463.  
  464. .reblogm {
  465. padding: 0px 1px 0px 3px;
  466. background-color:transparent;
  467. color:{color:text};
  468. font: 8px littlefont;
  469. }
  470. .reblogm a {
  471. letter-spacing: 1px;
  472. text-decoration: none;
  473. background-color: transparent;
  474. color:{color:link};
  475. }
  476. .reblogm a:hover {
  477. color:{color:link hover};
  478. }
  479.  
  480.  
  481. .photoset {
  482. opacity: 1;
  483. margin-bottom: -2px;
  484. -webkit-filter: grayscale(0);
  485. -webkit-transition: all 0.5s ease-in-out;
  486. -moz-transition: all 0.5s ease-in-out;
  487. -o-transition: all 0.5s ease-in-out;
  488. -ms-transition: all 0.5s ease-in-out;
  489. transition: all 0.5s ease-in-out;
  490. }
  491.  
  492. .notes img{
  493. width: 7px;
  494. top: 8px;
  495. }
  496.  
  497. #nav{
  498. position:fixed;
  499. display:inline-block;
  500. width:140px;
  501. top:222px;
  502. left:117px;
  503. text-align:center;
  504. -webkit-transition-duration:0.8s;
  505. -moz-transition-duration: 0.8s;
  506. }
  507.  
  508. #nav a.links {
  509. display:inline-block;
  510. text-align:center;
  511. text-transform: uppercase;
  512. text-shadow: 0px 1px 5px {color:link shadow};
  513. color:{color:link};
  514. width:55px;
  515. background:{color:sidebar background};
  516. font-size:7px;
  517. box-shadow:1px 1px 1px {color:link shadow};
  518. letter-spacing:2px;
  519. padding:0px 2px 0px 3px;
  520. margin:2px;
  521. font-family:ronda;
  522. -webkit-transition: all 0.7s ease-in-out;
  523. -moz-transition: all 0.7s ease-in-out;
  524. }
  525.  
  526. #nav a.links:hover {
  527. color:{color:link hover};
  528. -webkit-transition: all 0.7s ease-in-out;
  529. -moz-transition: all 0.7s ease-in-out;
  530. -o-transition: all 0.7s ease-in-out;
  531. -ms-transition: all 0.7s ease-in-out;
  532. transition: all 0.7s ease-in-out;
  533. }
  534.  
  535. #musica {
  536. padding:1px;
  537. background:transparent;
  538. color:{color:text};
  539. font-family:ronda;
  540. font-size:14px;
  541. position:fixed;
  542. letter-spacing:1px;
  543. text-align:center;
  544. font-style:none;
  545. top:253px;
  546. left:123px;
  547. width:50px;
  548. line-height:10px;
  549. text-transform:none;
  550. z-index:4;
  551. }
  552.  
  553. #hovers {
  554. padding:1px;
  555. background:transparent;
  556. color:{color:text};
  557. font-family:calibri;
  558. font-size:14px;
  559. position:fixed;
  560. width:86px;
  561. height:20px;
  562. top:252px;
  563. left:172px;
  564. text-align:center;
  565. line-height:160%;
  566. z-index:3;
  567. }
  568.  
  569. #hovers a {
  570. color:{color:link};
  571. text-decoration: none;
  572. text-shadow: 0px 1px 5px {color:link shadow};
  573. }
  574.  
  575. #hovers a:hover {
  576. color:{color:link hover};
  577. }
  578.  
  579. #sideimage {
  580. position:fixed;
  581. width:100px;
  582. margin:auto;
  583. top:100px;
  584. left:255px;
  585. }
  586.  
  587. #sideimage img {
  588. max-width:100px;
  589. border:4px solid {color:sidebar background};
  590. box-shadow:1px 1px 1px {color:link shadow};
  591. }
  592.  
  593. #sideimage2 {
  594. position:fixed;
  595. width:100px;
  596. margin:auto;
  597. top:206px;
  598. left:25px;
  599. }
  600.  
  601. #sideimage2 img {
  602. max-width:80px;
  603. border:4px solid {color:sidebar background};
  604. box-shadow:1px 1px 1px {color:link shadow};
  605. }
  606.  
  607. #sidelyric {
  608. position: fixed;
  609. opacity:0;
  610. width: 100px;
  611. height:233px;
  612. margin: auto;
  613. top: 104px;
  614. left:259px;
  615. font-family: ronda;
  616. font-size: 7px;
  617. color:{color:text};
  618. text-transform: uppercase;
  619. letter-spacing: 2px;
  620. text-align: center;
  621. background:{color:background};
  622. -webkit-transition: all 0.5s ease-in-out;
  623. -moz-transition: all 0.5s ease-in-out;
  624. -o-transition: all 0.5s ease-in-out;
  625. -ms-transition: all 0.5s ease-in-out;
  626. transition: all 0.5s ease-in-out;
  627. }
  628.  
  629. #sidelyric:hover {
  630. opacity:0.75;
  631.  
  632. }
  633.  
  634. #sidelyric a {
  635. color:{color:link};
  636. text-shadow: 0px 1px 3px {color:link shadow};
  637. text-decoration: none;
  638. }
  639.  
  640. #words{
  641. font-size:8px;
  642. background:{color:sidebar background};
  643. font-family:silkscreen;
  644. letter-spacing:0px;
  645. color:{color:text};
  646. position: fixed;
  647. box-shadow:1px 1px 1px {color:link shadow};
  648. width:120px;
  649. height:58px;
  650. margin: auto;
  651. text-align:justify;
  652. top:275px;
  653. left:123px;
  654. padding:4px;
  655. }
  656.  
  657.  
  658. #words a {
  659. color:{color:link};
  660. text-decoration: none;
  661. text-shadow:0px 1px 5px {color:link shadow};
  662. }
  663.  
  664. #sooyoung {
  665. position: fixed;
  666. top:178px;
  667. left: -30px;
  668. width: 200px;
  669. height: 30px;
  670. font-family:simsun;
  671. font-size:10px;
  672. color:{color:text};
  673. letter-spacing:px;
  674. text-align: center;
  675. text-transform: uppercase;
  676. text-decoration: none;
  677. background:transparent;
  678. padding: 5px;
  679. }
  680.  
  681. #sooyoung a {
  682. color:{color:link};
  683. text-decoration: none;
  684. text-shadow: 0px 1px 5px {color:link shadow};
  685. }
  686.  
  687. #sooyoung a:hover {
  688. color:{color:link hover};
  689. }
  690.  
  691. #description {
  692. position: fixed;
  693. top:165px;
  694. left:123px;
  695. width: 120px;
  696. height: 48px;
  697. font-family:georgia;
  698. box-shadow:1px 1px 1px {color:link shadow};
  699. font-size: 9px;
  700. color:{color:text};
  701. text-transform:none;
  702. letter-spacing:1px;
  703. text-align: center;
  704. background:{color:sidebar background};
  705. padding:4px;
  706. }
  707.  
  708. #description a {
  709. color:{color:link};
  710. text-decoration: none;
  711. text-shadow: 0px 1px 5px {color:link shadow};
  712. }
  713.  
  714. #description a:hover {
  715. color:{color:link hover};
  716. }
  717.  
  718. #tt {
  719. padding:0px;
  720. background-color:transparent;
  721. color:{color:text};
  722. font-family:bebas neue;
  723. position:fixed;
  724. font-size:28px;
  725. letter-spacing:4px;
  726. text-align:right;
  727. z-index:3;
  728. top:153px;
  729. left:-45px;
  730. width:300px;
  731. line-height:0px;
  732. text-transform:none;
  733. text-shadow: 0px 1px 5px {color:link shadow};
  734. }
  735.  
  736.  
  737. .ask {
  738. background-color:transparent;
  739. padding: 2px;
  740. border-bottom: 1px solid {color:text};
  741. }
  742.  
  743. .ask i {
  744. font-style: normal;
  745. }
  746.  
  747. .ask a {
  748. color:{color:link};
  749. }
  750.  
  751. @font-face { font-family: "ronda"; src: url('http://static.tumblr.com/rmj06l2/kcLlo1q2y/pf_ronda_seven.ttf'); }
  752.  
  753. @font-face { font-family: "bebas neue"; src: url('http://static.tumblr.com/cvlbtjz/cnsln9tpp/bebasneue.otf'); }
  754.  
  755. @font-face { font-family: "silkscreen"; src: url('http://static.tumblr.com/1kdckk4/9yjlolf0w/slkscr.ttf'); }
  756.  
  757. @font-face { font-family: "littlefont"; src: url('http://static.tumblr.com/4yxykdm/NMJlre6xz/04b_03___1_.ttf'); }
  758.  
  759. /*--CustomCSS--*/
  760.  
  761.  
  762.  
  763. </style>
  764.  
  765. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  766. <link href="#s-m-t-tooltip" rel="stylesheet" type="text/css" />
  767.  
  768. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  769. <script type="text/javascript" src="http://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
  770. <script>
  771. (function($){
  772. $(document).ready(function(){
  773. $("[title]").style_my_tooltips();
  774. });
  775. })(jQuery);
  776. </script>
  777.  
  778. </head>
  779. <body>
  780.  
  781.  
  782.  
  783. <center>
  784.  
  785. <div id="description">
  786. {Description}
  787. </div>
  788.  
  789.  
  790. <div id="musica">
  791. <object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" width="50" height="20">
  792. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" />
  793. <param name="bgcolor" value="ffffff" />
  794. <param name="FlashVars" value="mp3=http%3A//k007.kiwi6.com/hotlink/zk3g8kgo9i/cyril_hahn_perfect_form.mp3&amp;width=50&amp;autoplay=1&amp;showstop=1&amp;showslider=0&amp;bgcolor=eeeeee&amp;bgcolor1=eeeeee&amp;bgcolor2=eeeeee&amp;buttoncolor=181818&amp;buttonovercolor=aaaaaa" />
  795. </object>
  796. </div>
  797.  
  798. <div id="tt">
  799. {Title}
  800. </div>
  801.  
  802. <div id="nav">
  803. <a class="links" href="/">index</a>
  804. <a class="links" href="/ask">ask</a>
  805. <a class="links" href="/links">more</a>
  806. <a class="links" href="/submit">submit</a>
  807. </div>
  808.  
  809. <div id="words">
  810. <a><big><big>❝</big></big></a>{text:quote}<a><big><big>❞</big></big></a>- <script language="JavaScript">
  811. var ref = (''+document.referrer+'');
  812. var w_h = window.screen.width + " x " + window.screen.height;
  813. document.write('<script src="http://s1.freehostedscripts.net/ocounter.php?site=ID3528638&e1=&e2=&r=' + ref + '&wh=' + w_h + '"><\/script>');
  814. </script>
  815. </div>
  816.  
  817. <div id="hovers">
  818. <a title="#jonganon">✖</a>
  819. <a title="msn: kkamjong@live.co.uk ; aim: ask!">✖</a>
  820. <a title="previously: jongin-isl & kai-ftw">✖</a>
  821. <a title="not the real kim jongin + no affiliations either.">✖</a>
  822. </div>
  823.  
  824. <div id="sooyoung">
  825. <a href="http://soodacris.tumblr.com/" title="if i'm not with you then, darling, I don't feel anything like myself.">13</a> . <a href="/tagged/sooyoung" title="-her tag.">05</a> . <a href="/sooyoung" title="-our bucketlist.">23</a>
  826. </div>
  827.  
  828. <div id="sideimage">
  829. <img src="{image:sidebar}">
  830. </div>
  831.  
  832. <div id="sideimage2">
  833. <img src="{image:sidebar2}">
  834. </div>
  835.  
  836. <div id="sidelyric">
  837. <br><br><br><br><br>she's got<br><a>p e r f e c t</a><br>form.<br><br>I <i>love</i> it<br>when she<br><a>moves</a><br>like<br><i>that</i>.
  838. </div>
  839.  
  840.  
  841. </div></div></div>
  842. </div>
  843.  
  844.  
  845. <div id="content">
  846.  
  847.  
  848. {block:Posts}
  849. <div class="posts">
  850.  
  851.  
  852. {block:Text}
  853. {block:Title}<h1>{Title}</h1>{/block:Title}
  854. {Body}
  855. {/block:Text}
  856.  
  857.  
  858.  
  859. {block:Photo}
  860. <center>
  861. {LinkOpenTag}
  862. <img src="{PhotoURL-500}">
  863. {LinkCloseTag}
  864. </center>
  865.  
  866. {block:Caption}
  867. <div id="captions">
  868. {Caption}</div>
  869. {/block:Caption}
  870. {/block:Photo}
  871.  
  872.  
  873.  
  874. {block:Photoset}
  875.  
  876. <div class="photoset">
  877. {block:IndexPage}
  878.  
  879. {block:If250px}
  880. {Photoset-250}
  881. {/block:If250px}
  882. {block:If400px}
  883. {Photoset-400}
  884. {/block:If400px}
  885.  
  886. {/block:IndexPage}
  887. {block:PermalinkPage}
  888. {Photoset-400}
  889. {/block:PermalinkPage}
  890. </div>
  891.  
  892. {block:Caption}
  893. <div id="captions">
  894. {Caption}</div>
  895. {/block:Caption}
  896.  
  897. {/block:Photoset}
  898.  
  899.  
  900.  
  901. {block:Quote}
  902. <div class="quote"></div>
  903. <h2>❝{Quote}❞</h2>
  904. {block:Source}<div style="text-align: center; font-size: 7px; font-family: tahoma; text-transform: uppercase; letter-spacing: 1px; margin: -3px 0px 2px 0px;">-{Source}</div>{/block:Source}
  905. {/block:Quote}
  906.  
  907. {block:Link}
  908. <h1><a href="{URL}" target="{Target}">{Name}</a></h1>
  909. {block:Description}{Description}{/block:Description}
  910. {/block:Link}
  911.  
  912.  
  913.  
  914. {block:Chat}
  915. {block:Title}<h1>{Title}</h1>{/block:Title}
  916. {block:Lines}
  917. {block:Label}
  918. <b>{Label}</b>
  919. {/block:Label}
  920. {Line}<br />
  921. {/block:Lines}
  922. {/block:Chat}
  923.  
  924.  
  925.  
  926. {block:Audio}
  927. <div id="p">
  928. <div id="player">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div>
  929. </div>
  930.  
  931. <div id="cover">{block:AlbumArt}<img class="audio-album" src="{AlbumArtURL}" width="80">{/block:AlbumArt}</div>
  932.  
  933. <div id="audinfo">
  934. {block:Artist}
  935. <b>artist:</b> {Artist}
  936. {/block:Artist} <br> {block:TrackName}
  937. <b>song:</b> {TrackName}
  938. {/block:TrackName}<br>
  939. {block:Album}
  940. <b>Album:</b> {Album}
  941. {/block:Album}
  942. <br><br> </div>
  943. {block:PermalinkPage}
  944. {block:Caption}
  945. {Caption}
  946. {/block:Caption}
  947. {/block:PermalinkPage}
  948. {/block:IfShowCaptions}{/block:Caption}
  949. {/block:Audio}
  950.  
  951.  
  952.  
  953. {block:Video}
  954. <div class="video">
  955. {block:IndexPage}{Video-500}{/block:IndexPage}
  956. {block:PermalinkPage}{Video-500}{/block:PermalinkPage}
  957. </div>
  958.  
  959. {block:Caption}
  960. <div id="captions">
  961. {Caption}</div>
  962. {/block:Caption}
  963. {/block:Video}
  964.  
  965.  
  966.  
  967. {block:Answer}
  968. <div class="ask">「 {Asker} :<br>{Question}</div>
  969. {Answer}
  970. {/block:Answer}
  971.  
  972. </div>
  973.  
  974. {block:Date}
  975. <div id="permalink">
  976. <center>
  977. <a href="{Permalink}">{TimeAgo}</font></a> • {block:NoteCount}{NoteCount} notes • {/block:NoteCount}<span class="reblogm"><a href="{ReblogURL}" target="_blank">reblog</a></span>{block:RebloggedFrom} • <a href="{ReblogParentURL}" title="via.">■</a> <a href="{ReblogRootURL}" title="source.">□</a>{/block:RebloggedFrom}
  978. </center>
  979. {/block:Date}
  980.  
  981. {block:HasTags}
  982. {block:Tags}#<a href="{TagURL}">{Tag}</font> </a> {/block:Tags}
  983. {/block:HasTags}
  984. </div>
  985.  
  986. {block:PermalinkPage}
  987.  
  988. <div style="text-transform: uppercase; font: 7px trebuchet ms;">
  989.  
  990. <p>
  991. {block:PostNotes}
  992. {PostNotes}
  993. {/block:PostNotes}</div>
  994. {/block:PermalinkPage}
  995.  
  996. {/block:Posts}
  997.  
  998. </div>
  999. </body>
  1000.  
  1001. <div style="font: 25px calibri; background:transparent; letter-spacing:1px; left: 5px; bottom: 5px; position: fixed;"> <a href="http://soodacris.tumblr.com/" title="made by soodacris.">♔</a></div>
  1002.  
  1003. <a href="#?w=201" rel="03" title="my invincible summer." class="poplight"><img src="http://media.tumblr.com/tumblr_lu2db46ekH1qfoi4t.png" style="position:fixed;top:315px;left:40px;z-index:999"/></a>
  1004.  
  1005. <div id="03" class="popup_block">
  1006.  
  1007. <br><center>
  1008.  
  1009. <img src="http://media.tumblr.com/6db339bc3aba1abb6a38888bef269b0a/tumblr_inline_mnuq06FFlo1qz4rgp.gif">
  1010. <br><br>
  1011. Our tragic hero,<br>your alter-ego,<br>my forgotten dreams,<br>our imagination bursting at the seams.<br>Oh, the stories<br>we could tell.
  1012.  
  1013.  
  1014.  
  1015. </center>
  1016. </div></div></div></div></div></div></div></div></div></div>
  1017.  
  1018. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement