Advertisement
milkdesu

Theme #3 - [MONO] Onigiri (Riceball)

Sep 29th, 2013
709
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.82 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.  
  3. <!--
  4.  
  5. _ _ _ _
  6. (_) | | | |
  7. _ __ ___ _| | | ____| | ___ ___ _ _
  8. | '_ ` _ \| | | |/ / _` |/ _ \/ __| | |♥| T H E M E S .
  9. | | | | | | | | < (_| | __/\__ \ |_| |
  10. |_| |_| |_|_|_|_|\_\__,_|\___||___/\__,_|
  11. * ** ** * * ** ** * * ** *
  12. BY BAEKDO.TUMBLR.COM
  13. © DO NOT remove my credit.
  14. or else i'll hunt you down and shoot (report) you~
  15.  
  16. * ** * * ** * * **
  17. ** * *
  18. * ** *
  19. * * *
  20. * * * * * *
  21. * * * *
  22. * * * * *
  23.  
  24. * *
  25. *
  26. *
  27.  
  28. -->
  29.  
  30.  
  31. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  32. <head>
  33.  
  34. <title>{Title}</title>
  35. <link rel="shortcut icon" href="{Favicon}">
  36. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  37. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  38.  
  39. <meta name="color:Background" content="#fff"/>
  40. <meta name="color:Text" content="#aaa"/>
  41. <meta name="color:Links" content="#6d6d6d"/>
  42. <meta name="color:Links Hover" content="#f0f0f0"/>
  43. <meta name="color:Scrollbar" content="#444"/>
  44. <meta name="color:Post Background" content="#fff"/>
  45.  
  46. <meta name="image:Pagination Icon" content="http://media.tumblr.com/cf6b38408ce93bd4c896b647f01989e2/tumblr_inline_mgd5ex6CUf1qk1or3.gif">
  47. <meta name="image:Links Icon" content="http://i205.photobucket.com/albums/bb186/mhilkas/favoicons/favcute.gif">
  48.  
  49. <meta name="text:Title Hover Message" content="MESSAGE GOES HERE"/>
  50. <meta name="text:asked" content="asked:"/>
  51. <meta name="text:posted" content="breathed:">
  52.  
  53. <meta name="text:linkA" content="link 1">
  54. <meta name="text:linkA url" content="/">
  55. <meta name="text:linkB" content="link 2">
  56. <meta name="text:linkB url" content="/">
  57. <meta name="text:linkC" content="link 3">
  58. <meta name="text:linkC url" content="/">
  59. <meta name="text:linkD" content="link 4">
  60. <meta name="text:linkD url" content="/">
  61. <meta name="text:linkE" content="link 5">
  62. <meta name="text:linkE url" content="/">
  63. <meta name="text:linkF" content="link 6">
  64. <meta name="text:linkF url" content="/">
  65.  
  66. <script type="text/javascript" src="http://static.tumblr.com/p2evvtm/Wycm17d1m/tumblr_search_box.js"></script>
  67.  
  68. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  69.  
  70. <script type="text/javascript" src="http://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
  71. <script>
  72. (function($){
  73. $(document).ready(function(){
  74. $("[title]").style_my_tooltips();
  75. });
  76. })(jQuery);
  77. </script>
  78.  
  79. <script type="text/javascript"
  80. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  81.  
  82. <script>
  83.  
  84.  
  85.  
  86. $(document).ready(function() {
  87.  
  88. //
  89.  
  90.  
  91.  
  92. //When you click on a link with class of poplight and the href starts with a #
  93.  
  94. $('a.poplight[href^=#]').click(function() {
  95.  
  96. var popID = $(this).attr('rel'); //Get Popup Name
  97.  
  98. var popURL = $(this).attr('href'); //Get Popup href to define size
  99.  
  100.  
  101.  
  102. //Pull Query & Variables from href URL
  103.  
  104. var query= popURL.split('?');
  105.  
  106. var dim= query[1].split('&');
  107.  
  108. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  109.  
  110.  
  111.  
  112. //Fade in the Popup and add close button
  113.  
  114. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/7dwvytx/AFhng0xhl/close.png" class="btn_close" title="close window" alt="Close" /></a>');
  115.  
  116.  
  117. //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
  118.  
  119. var popMargTop = ($('#' + popID).height() + 80) / 2;
  120.  
  121. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  122.  
  123.  
  124.  
  125. //Apply Margin to Popup
  126.  
  127. $('#' + popID).css({
  128.  
  129. 'margin-top' : -popMargTop,
  130.  
  131. 'margin-left' : -popMargLeft
  132.  
  133. });
  134.  
  135.  
  136.  
  137. //Fade in Background
  138.  
  139. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  140.  
  141. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
  142.  
  143.  
  144.  
  145. return false;
  146.  
  147. });
  148.  
  149.  
  150.  
  151. //Close Popups and Fade Layer
  152.  
  153. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  154.  
  155. $('#fade , .popup_block').fadeOut(function() {
  156.  
  157. $('#fade, a.close').remove(); //fade them both out
  158.  
  159. });
  160.  
  161. return false;
  162.  
  163. });
  164.  
  165.  
  166.  
  167.  
  168.  
  169. });
  170.  
  171. </script>
  172.  
  173.  
  174.  
  175.  
  176.  
  177. <style type="text/css">
  178. {CustomCSS}
  179.  
  180.  
  181. body, a, a:hover { cursor:url(http://cur.cursors-4u.net/others/oth-6/oth589.cur), auto }
  182. a:hover { cursor:url(http://cur.cursors-4u.net/user/use-1/use169.cur), auto }
  183.  
  184. ::-webkit-scrollbar-thumb:vertical {
  185. background: {color:Scrollbar};
  186. border: 4px solid {color:Background};
  187. width: 30px;
  188. }
  189.  
  190. ::-webkit-scrollbar {
  191. height: 10px;
  192. width: 15px;
  193. background: {color:Scrollbar};
  194. border: 7px solid {color:Background};
  195. }
  196.  
  197. :-moz-selection {
  198. background: transparent;
  199. color: #000;
  200. }
  201.  
  202. ::selection {
  203. background: transparent;
  204. color: #000;
  205. }
  206.  
  207. body {
  208. background-color: {color:Background};
  209. background-image: url('{image:Background}');
  210. background-repeat: repeat;
  211. background-attachment: fixed;
  212. color:{color:Text};
  213. font-family:bell-mt;
  214. font-size: 11px;
  215. text-align:justify;
  216. }
  217.  
  218. a {
  219. text-decoration:none;
  220. -moz-outline-style:none;
  221. color:{color:Links};
  222. }
  223.  
  224. a:hover {
  225. opacity:1;
  226. color:{color:Links Hover};
  227. text-decoration:none;
  228. -webkit-transition: all 0.5s ease;
  229. -moz-transition: all 0.5s ease;
  230. -o-transition: all 0.5s ease;
  231. }
  232.  
  233. img {
  234. border:none;
  235. }
  236.  
  237. #posts img {
  238. opacity:0.7;
  239. -webkit-filter: grayscale(100%);
  240. -webkit-transition: opacity 0.5s linear;
  241. -webkit-transition: all 0.5s ease-in-out;
  242. -moz-transition: all 0.5s ease-in-out;}
  243.  
  244. #posts img:hover {
  245. opacity:1;
  246. -webkit-filter: grayscale(0%);
  247. -webkit-transition: opacity 0.7s linear;
  248. -webkit-transition: all 0.7s ease-in-out;
  249. -moz-transition: all 0.7s ease-in-out;}
  250.  
  251.  
  252. h1 {
  253. font-family:cambria;
  254. font-size: 15px;
  255. letter-spacing:2px;
  256. text-transform:uppercase;
  257. }
  258.  
  259. blockquote {
  260. padding-left:5px;
  261. border-left:3px solid;
  262. overflow: hidden;
  263. }
  264.  
  265. blockquote blockquote {
  266. padding-left:5px;
  267. border-left:2px solid;
  268. }
  269.  
  270. blockquote img {
  271. max-width:240px;
  272. }
  273.  
  274. #s-m-t-tooltip {
  275. z-index: 99999;
  276. background: #FFF;
  277. font-size: 8px;
  278. line-height: 11px;
  279. font-family: 'silkscreen';
  280. letter-spacing: 0px;
  281. text-transform: none;
  282. color: #000;
  283. text-align: center;
  284. padding: 5px;
  285. border: 1px solid #eeeded;
  286. border-radius: 2px;
  287. display: block;
  288. max-width: 170px;
  289. margin: 6px 10px;
  290. -webkit-box-shadow: 2px 2px 2px rgba(20, 20, 20, 0.1);
  291. -moz-box-shadow: 2px 2px 2px rgba(20, 20, 20, 0.1);
  292. box-shadow: 2px 2px 2px rgba(20, 20, 20, 0.1);
  293. }
  294.  
  295. iframe#tumblr_controls {
  296. top: 0% !important;
  297. right:0% !important;
  298. position: fixed !important;
  299. z-index:99999999 !important;
  300. -webkit-filter: invert(100%);
  301. -moz-filter: invert(100%);
  302. -o-filter: invert(100%);
  303. -ms-filter: invert(100%);
  304. filter: invert(100%);
  305. opacity:0.4;
  306. }
  307.  
  308. #topwrap {
  309. {block:IndexPage}
  310. width: 650px;
  311. {/block:IndexPage}
  312. {block:PermalinkPage}
  313. width: 550px;
  314. {/block:PermalinkPage}
  315. position: relative;
  316. margin: auto auto auto auto;}
  317.  
  318. #content {
  319. position: relative;
  320. width: 1100px;
  321. margin: auto auto auto auto;
  322. top: 100px;
  323. margin-bottom:80px;
  324. padding-left:70px;
  325. {block:PermalinkPage}
  326. position: relative;
  327. width: 550px;
  328. margin: auto auto auto auto;
  329. padding-left:50px;
  330. top: 50px;
  331. {/block:PermalinkPage}
  332.  
  333. }
  334.  
  335. #posts {
  336. background-color: {color:Post Background};
  337. float: left;
  338. {block:IndexPage}
  339. width: 250px;
  340. {/block:IndexPage}
  341. {block:PermalinkPage}
  342. width:500px;
  343. {/block:PermalinkPage}
  344. border: 0px solid #f0f0f0;
  345. margin: 5px;
  346. padding-bottom: 10px;
  347. overflow: hidden;
  348. color:{color:Text};
  349. font-family:bell-mt;
  350. font-size: 10px;
  351. text-align:justify;
  352. letter-spacing:1px;
  353. }
  354.  
  355. #pagi {
  356. font-family:'silkscreen';
  357. width:490px;
  358. font-size:8px;
  359. letter-spacing:1px;
  360. display:block;
  361. }
  362.  
  363. #pagi a {
  364. color:#666;
  365. background:#eee;
  366. padding:3px 3px 3px 3px;
  367. margin:0px 20px 0px 20px;
  368. line-height:30px;
  369. letter-spacing:2px;
  370. text-transform:uppercase;
  371. transition:0.15s all ease-in-out;
  372. moz-transition:0.15s all ease-in-out;
  373. -o-transition:0.15s all ease-in-out;
  374. -webkit-transition:0.15s all ease-in-out;
  375. }
  376.  
  377. #pagi a:hover {
  378. color:#555;
  379. background:#ddd;
  380. }
  381.  
  382. #top {
  383. background-color: #fff;
  384. z-index: 999;
  385. margin: 5px;
  386. {block:IndexPage}
  387. width: 580px;
  388. {/block:IndexPage}
  389. {block:PermalinkPage}
  390. width: 480px;
  391. {/block:PermalinkPage}
  392. padding-top: 70px;
  393. padding-right: 10px;
  394. padding-left: 30px;
  395.  
  396. }
  397.  
  398. .title {
  399. text-align:center;
  400. font-size:62px;
  401. color:#333;
  402. font-family:cambria;
  403. font-style:none;
  404. font-weight:light;
  405. letter-spacing:-2px;
  406. padding-top: 0px;
  407. }
  408.  
  409. .title a {
  410. text-align:center;
  411. font-size:62px;
  412. color:#333;
  413. font-family:cambria;
  414. font-style:none;
  415. font-weight:light;
  416. letter-spacing:-2px;
  417. padding-top: 0px;
  418. }
  419.  
  420. #desc {
  421. color: {color:Text};
  422. text-align:justify;
  423. width:400px;
  424. font-size:9px;
  425. padding:0px;
  426. margin-bottom:30px;
  427. margin-left:95px;
  428. font-family:bell-mt;
  429. letter-spacing:0px;
  430. {block:PermalinkPage}
  431. margin-left:45px;
  432. {/block:PermalinkPage}
  433. }
  434.  
  435. #perma {
  436. float: right;
  437. position: absolute;
  438. text-align: center;
  439. margin-left: 40px;
  440. margin-top: 0px;
  441. height: 0px;
  442. width: 170px;
  443. font-size: 8px;
  444. font-family: 'silkscreen';
  445. background: #fdfdfd;
  446. letter-spacing: 1px;
  447. overflow: hidden;
  448. -webkit-transition: all 0.5s ease-out;
  449. -moz-transition: all 0.5s ease-out;
  450. -o-transition: all 0.5s ease-out;
  451. z-index:99999;
  452. }
  453.  
  454. #perma a {
  455. color:#fff;
  456. background:#222;
  457. padding:3px 3px 3px 3px;
  458. line-height:24px;
  459. letter-spacing:1px;
  460. font-family: courier new;
  461. text-transform: uppercase;
  462. font-size: 8px;
  463. opacity: 1;
  464. transition:0.15s all ease-in-out;
  465. moz-transition:0.15s all ease-in-out;
  466. -o-transition:0.15s all ease-in-out;
  467. -webkit-transition:0.15s all ease-in-out;
  468. }
  469.  
  470. #perma a:hover {
  471. color:#222;
  472. background:#ddd;
  473. font-size: 8px;
  474. opacity: 1;
  475. transition:0.15s all ease-in-out;
  476. moz-transition:0.15s all ease-in-out;
  477. -o-transition:0.15s all ease-in-out;
  478. -webkit-transition:0.15s all ease-in-out;
  479. }
  480.  
  481. #posts:hover #perma {
  482. margin-left: 40px;
  483. margin-top: 0px;
  484. height: 40px;
  485. width: 170px;
  486. padding: 0px;
  487. opacity: 0.8;
  488. overflow: hidden;
  489. filter:alpha(opacity=100);
  490. -moz-opacity: 1;
  491. -khtml-opacity: 1;
  492. -webkit-transition: all 0.5s ease-out;
  493. -moz-transition: all 0.5s ease-out;
  494. -o-transition: all 0.5s ease-out;}
  495. }
  496.  
  497. #quote {
  498. font-family:cambria;
  499. letter-spacing:0px;
  500. font-size: 17px;
  501. font-style:italic;
  502. text-align:center;
  503. line-height: 100%;
  504. }
  505.  
  506. #audio {
  507. font-family:'silkscreen';
  508. font-size:8px;
  509. letter-spacing:0px;
  510. }
  511.  
  512. .audio-player {
  513. position:absolute;
  514. width:27px;
  515. height:27px;
  516. overflow:hidden;
  517. margin-left:-60px;
  518. margin-top:20px;
  519. opacity:0.6;
  520. filter:alpha(opacity=60);
  521. border:2px solid #f2f2f2;
  522. }
  523.  
  524. #ask {
  525. background-color: #fbfbfb;
  526. padding: 5px;
  527. margin-bottom: 3px;
  528. color:#888;
  529. font-family: cambria;
  530. letter-spacing: 2px;
  531. text-align: left;
  532. font-style: none;
  533. border-bottom: 1px solid #eee;
  534. border-radius:3px;
  535. color: {color:Text};
  536. }
  537.  
  538.  
  539. @font-face { font-family:"silkscreen"; src: url('http://static.tumblr.com/1kdckk4/9yjlolf0w/slkscr.ttf'); }
  540.  
  541. #nav {
  542. font-family:'silkscreen';
  543. font-size:8px;
  544. width:350px;
  545. margin: 0px auto 0px auto;
  546. {block:IndexPage}
  547. margin-left:150px;
  548. {/block:IndexPage}
  549. {block:PermalinkPage}
  550. margin-left:100px;
  551. {/block:PermalinkPage}
  552. }
  553.  
  554. #nav a {
  555. color:#666;
  556. background:#eee;
  557. padding:3px 3px 3px 4px;
  558. margin:0px 15px 0px 15px;
  559. line-height:20px;
  560. text-transform:uppercase;
  561. letter-spacing:1px;
  562. text-align:center;
  563. transition:0.15s all ease-in-out;
  564. moz-transition:0.15s all ease-in-out;
  565. -o-transition:0.15s all ease-in-out;
  566. -webkit-transition:0.15s all ease-in-out;
  567. }
  568.  
  569. #nav a:hover {
  570. color:#555;
  571. background:#ddd;
  572. }
  573.  
  574. #fade {
  575. display: none;
  576. background: #000;
  577. position: fixed;
  578. left: 0;
  579. top: 0;
  580. width: 100%;
  581. height: 100%;
  582. opacity: .80;
  583. z-index: 9999;
  584. }
  585.  
  586. .popup_block{
  587. display: none;
  588. background: #FFFFFF;
  589. padding: 30px;
  590. float: left;
  591. position: fixed;
  592. top: 50%;
  593. left: 50%;
  594. border:1px double #f0f0f0;
  595. z-index: 99999;
  596. }
  597.  
  598. img.btn_close {
  599. float: right;
  600. margin: -20px -20px 0 0;
  601. }
  602.  
  603. *html #fade {
  604. position: absolute;
  605. }
  606.  
  607. *html .popup_block {
  608. position: absolute;
  609. }
  610.  
  611. .credit {
  612. position:fixed;
  613. bottom:15px;
  614. right:10px;
  615. font-size:9px;
  616. letter-spacing:1px;
  617. font-family:calibri;
  618. border:1px solid #ededed;
  619. border-radius:40px;
  620. padding:4px;
  621. background-color:#fff;
  622. }
  623.  
  624. .credit a {
  625. color:#333;
  626. }
  627.  
  628. .credit a:hover {
  629. color:{color:Links Hover};
  630. }
  631.  
  632. #oldtop {
  633. position:fixed;
  634. z-index:999999;
  635. height:25px;
  636. top:-7px;
  637. width:100%;
  638. background-color:#fff;
  639. padding-top:5px;
  640. margin-left:-8px;
  641. border-bottom:3px double #fff;
  642. opacity:0.5;
  643. }
  644.  
  645. #oldlace {
  646. background-image:url('http://static.tumblr.com/3yblkz0/S8omdno3x/jaja.png');
  647. repeat:repeat-x;
  648. height:18px;
  649. width:100%;
  650. margin-top:24px;
  651. left:0;
  652. opacity:1;
  653. }
  654.  
  655. #scrollToTop:link,#scrollToTop:visited { color: transparent; background-color: transparent; display: none; position: fixed; bottom: 50px; right: 30px; z-index: 999999999; opacity:0.9;}
  656.  
  657.  
  658. </style>
  659. {block:IndexPage}
  660.  
  661. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script><script src="http://static.tumblr.com/ikeq9mi/DfYl6o46t/scrolltotop.min.js"></script><a href="javascript:;" id="scrollToTop"><img src="http://fc00.deviantart.net/fs42/f/2009/065/2/2/Sushi_by_nataschax.gif" border="0"></a>
  662.  
  663.  
  664. <script type="text/javascript" src="http://static.tumblr.com/nj7bgyh/zr9m0w1np/masonryq.js"></script>
  665. <script type="text/javascript" src="http://static.tumblr.com/nj7bgyh/J0qm0vycn/querymasonry.js"></script>
  666.  
  667. <script src="http://static.tumblr.com/nj7bgyh/rNom0vy8o/masonry.js"></script>
  668.  
  669. <script type="text/javascript">
  670. $(window).load(function () {
  671. $('#content').masonry(),
  672. $('.masonryWrap').infinitescroll({
  673. navSelector : "div#pagi",
  674. // selector for the paged navigation (it will be hidden)
  675. nextSelector : "div#pagi",
  676. // selector for the NEXT link (to page 2)
  677. itemSelector : ".post",
  678. // selector for all items you'll retrieve
  679. bufferPx : 10000,
  680. extraScrollPx: 11000,
  681. loadingImg : "http://b.imagehost.org/0548/Untitled-2.png",
  682. loadingText : "<em></em>",
  683. },
  684. // call masonry as a callback.
  685. function() { $('#content').masonry({ appendedContent: $(this) }); }
  686. );
  687. });
  688. </script>
  689.  
  690.  
  691.  
  692.  
  693. {/block:IndexPage}
  694.  
  695.  
  696.  
  697.  
  698.  
  699. </head>
  700.  
  701.  
  702.  
  703. <body>
  704.  
  705. <div id="oldtop">
  706. <div id="oldspace">
  707. </div>
  708. <div id="oldlace"></div>
  709. </div>
  710.  
  711.  
  712. <div id="topwrap">
  713.  
  714. <div id="top">
  715. <div class="title"><a title="{text:Title Hover Message}">{Title}</a></div>
  716. <div id="desc">
  717. {block:Description}
  718. {Description}
  719. {/block:Description}
  720. </div>
  721. </div>
  722.  
  723. <center><div id="nav">
  724. <a href="/" title="refresh"><img src="http://i122.photobucket.com/albums/o260/mhilka/iconesagenda/assistindo1.gif"> home</a>
  725. <a href="/ask" title="askbox"><img src="http://i122.photobucket.com/albums/o260/mhilka/iconesagenda/Lapis1.gif"> mail</a>
  726. <a href="/archive" title="archive"><img src="http://lh4.ggpht.com/_NZJzdRm10Y0/TUbb5vZb9BI/AAAAAAAAAdc/o5LXplEIKts/marcadores32.gif"> past</a>
  727. <a href="#?w=300" rel="linkseu" class="poplight" title="linkeus"><img src="http://media.tumblr.com/54029d74b8017c3e0a5cff617cebb48f/tumblr_inline_mrxpmr6oQj1qz4rgp.gif"> more</a>
  728. </div>
  729.  
  730.  
  731. </div></div></div>
  732.  
  733. </div>
  734.  
  735.  
  736.  
  737. </div>
  738.  
  739.  
  740.  
  741. <div id="linkseu" class="popup_block"><p>
  742. <div style="background:#fbfbfb;padding:5px;margin-bottom:3px;border-bottom:1px double #eee;border-radius:3px;text-align:center;font-size:8px;color=#555;">
  743. <img src="{image:Links Icon}"><p>
  744. <font face="silkscreen">L I N K S</font></div>
  745. <span style="font-size:8px;"><font face="silkscreen">
  746. {block:IfLinkA}
  747. <p>☯ <a href="{text:linkA url}">{text:linkA}</a>
  748. {/block:IfLinkA}
  749. {block:IfLinkB}
  750. <p>☯ <a href="{text:linkB url}">{text:linkB}</a>
  751. {/block:IfLinkB}
  752. {block:IfLinkC}
  753. <p>☯ <a href="{text:linkC url}">{text:linkC}</a>
  754. {/block:IfLinkC}
  755. {block:IfLinkD}
  756. <p>☯ <a href="{text:linkD url}">{text:linkD}</a>
  757. {/block:IfLinkD}
  758. {block:IfLinkE}
  759. <p>☯ <a href="{text:linkE url}">{text:linkE}</a>
  760. {/block:IfLinkE}
  761. {block:IfLinkF}
  762. <p>☯ <a href="{text:linkF url}">{text:linkF}</a>
  763. {/block:IfLinkF}
  764. </font></span>
  765. </div>
  766.  
  767.  
  768.  
  769.  
  770.  
  771.  
  772. <div id="content">
  773. {block:Posts}
  774.  
  775. <div id="posts">{block:IndexPage}<div id="perma">
  776. <a title="reblog!" href="{ReblogURL}">♡</a>
  777. {block:Date}<a href="{Permalink}" title="{TimeAgo}">
  778. {/block:Date}{Timestamp}</a>
  779. <br><font face="bell-mt">{NoteCount}<font color="red">❤</font></font>
  780. </div>{/block:IndexPage}
  781.  
  782. {block:Text}
  783. {block:Title}
  784. <h1>{Title}</h1>
  785. {/block:Title}
  786. {Body}
  787. {/block:Text}
  788.  
  789. {block:Photo}
  790. {LinkOpenTag}
  791. {block:IndexPage}
  792. <a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" border="0" width="250px"/></a>
  793. {/block:IndexPage}
  794. {block:PermalinkPage}
  795. <img src="{PhotoURL-500}" border="0" width="500px"/>
  796. {/block:PermalinkPage}
  797. {LinkCloseTag}
  798. {/block:Photo}
  799.  
  800. {block:Photoset}
  801. {block:IndexPage}
  802. {Photoset-250}
  803. {/block:IndexPage}
  804. {block:PermalinkPage}
  805. {Photoset-500}
  806. {/block:PermalinkPage}
  807. {/block:Photoset}
  808.  
  809. {block:Link}
  810. <font size="5"><i><a href="{URL}" target="{Target}"<b>{Name}</b></a></i></font>
  811. <font face="silkscreen"><span style="font-size:8px;">{block:Description}{Description}{/block:Description}</span></font>
  812. {/block:Link}
  813.  
  814. {block:Quote}
  815. <div id="quote">
  816. <font face="cambria"><i><span style="font-size:16px;">{Quote}</span></i></font>
  817. <br><small><div align="right">—{Source}</div></small>
  818. </div>
  819. {/block:Quote}
  820.  
  821. {block:Audio}
  822. <div id="audio">
  823. <left>{block:AlbumArt}<img src="{AlbumArtURL}" width="70px" height="70px" align="left" style="margin-right:10px; border-radius:40px;"/>{/block:AlbumArt}
  824. {block:AudioPlayer}<span class="audio-player">{AudioPlayerWhite}{/block:AudioPlayer}</span></left>
  825. <br>
  826. {block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
  827. {block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  828. {block:Album}<b>Album:</b> {Album}<BR>{/block:Album}
  829. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times
  830. </div>
  831. {/block:Audio}
  832.  
  833. {block:Video}
  834. {block:IndexPage}
  835. {Video-250}
  836. {/block:IndexPage}
  837. {block:PermalinkPage}
  838. {Video-500}
  839. {/block:PermalinkPage}
  840. {/block:Video}
  841.  
  842. {block:Chat}
  843. {block:Title}<h1>{Title}</h1>{/block:Title}
  844. {block:Lines}{block:Label}<b><span style="text-transform:uppercase;">{Label}</span></b>{/block:Label} {Line}<br>{/block:Lines}
  845. {/block:Chat}
  846.  
  847. {block:Answer}
  848. <div id="ask"><font face="silkscreen"><span style="text-transform:uppercase;font-size:9px;"><img style="border-radius:40px;" src="{AskerPortraitURL-24}"> {Asker} <span style="letter-spacing:5px;">{text:asked}</span></span> <span style="font-size:9px;letter-spacing:0px;color:#555;">{Question}</span></font></div>
  849. <left> {Answer}
  850. {/block:Answer}
  851.  
  852. {block:Permalinkpage}
  853. {block:Caption}{Caption}{/block:Caption}
  854. <div style="font-family:silkscreen;font-size:8px;">
  855. <br><a title="reblog~!" href="{ReblogURL}">♡</a> <i>{text:posted}</i>
  856. {ShortMonth} {DayOfMonthWithZero}, {Year} at {12Hour}:{Minutes}
  857. {block:RebloggedFrom} from <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
  858. {block:ContentSource} <a href="{SourceURL}">© <a href="{SourceURL}">{SourceLink}</a> {/block:ContentSource}
  859. {block:RebloggedFrom} <a href="{ReblogParentURL}" target="_blank"></a>{/block:RebloggedFrom}
  860. <br>{block:HasTags}filed under: {block:Tags}<span style="padding-right:6px;"><a href="{TagURL}">{Tag}</a> </span> {/block:Tags} {/block:HasTags}
  861. <br>{block:NoteCount}<b>{NoteCountWithLabel}</b></br>{/block:NoteCount}<br>
  862. </div>
  863. <p>{block:PostNotes}{PostNotes}{/block:PostNotes}
  864. {/block:Permalinkpage}
  865.  
  866. </div>
  867. {/block:posts}
  868.  
  869. </div>
  870.  
  871. {block:Pagination}
  872. <div id="pagi" style="margin-top:240px; margin-bottom:30px; margin-left:410px;">
  873. <center>
  874. {block:PreviousPage}
  875. <a href="{PreviousPage}">previous</a>
  876. {/block:PreviousPage}
  877. <img title="{CurrentPage} of {TotalPages}" src="{image:Pagination Icon}">
  878. {block:NextPage}
  879. <a href="{NextPage}">next</a>
  880. {/block:NextPage}
  881. </center>
  882. </div>
  883. {/block:Pagination}
  884.  
  885.  
  886. <div class="credit"><a href="http://baekdo.tumblr.com/" title="theme by helen"><big>©</big></a></center></div>
  887.  
  888.  
  889.  
  890. </body>
  891. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement