Advertisement
Guest User

maleficent

a guest
Mar 3rd, 2015
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.40 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4.  
  5. <!--
  6.  
  7. THEME 7 by ARYASNARK
  8.  
  9. Copyright © Aryasnark 2013 All Rights Reserved. No part of this website may be reproduced without my express consent.
  10.  
  11. -->
  12.  
  13. <head>
  14. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>
  15. <link rel="shortcut icon" href="{Favicon}">
  16. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  17. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  18.  
  19. <script type="text/javascript"
  20. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  21.  
  22. <script>
  23. $(document).ready(function() {
  24. //When you click on a link with class of poplight and the href starts with a #
  25. $('a.poplight[href^=#]').click(function() {
  26. var popID = $(this).attr('rel'); //Get Popup Name
  27. var popURL = $(this).attr('href'); //Get Popup href to define size
  28. //Pull Query & Variables from href URL
  29. var query= popURL.split('?');
  30. var dim= query[1].split('&');
  31. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  32. //Fade in the Popup and add close button
  33. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img class="btn_close"/></a>');
  34. //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
  35. var popMargTop = ($('#' + popID).height() + 80) / 2;
  36. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  37. //Apply Margin to Popup
  38. $('#' + popID).css({
  39. 'margin-top' : -popMargTop,
  40. 'margin-left' : -popMargLeft
  41. });
  42. //Fade in Background
  43. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  44. $('#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
  45. return false;
  46. });
  47. //Close Popups and Fade Layer
  48. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  49. $('#fade , .popup_block').fadeOut(function() {
  50. $('#fade, a.close').remove(); //fade them both out
  51. });
  52. return false;
  53. });
  54. });
  55. </script>
  56.  
  57. <meta name="color:background" content="#ffffff">
  58. <meta name="color:title" content ="#3b3b3b">
  59. <meta name="color:text" content="#3b3b3b">
  60. <meta name="color:tags" content="#555555">
  61. <meta name="color:tags hover" content="#555555">
  62. <meta name="color:link" content="#aaaaaa">
  63. <meta name="color:link hover" content="#232323">
  64. <meta name="color:sidelink" content="#3b3b3b">
  65. <meta name="color:sidelink hover" content="#292929">
  66. <meta name="color:border" content="#eeeeee">
  67. <meta name="color:scrollbar" content="#eeeeee">
  68. <meta name="color:scrollbar bg" content="#ffffff">
  69.  
  70. <meta name="if:500px" content="1"/>
  71. <meta name="if:500px" content="0"/>
  72. <meta name="if:show captions" content="1"/>
  73. <meta name="if:hover" content="1"/>
  74. <meta name="if:sidebarimg" content="0"/>
  75. <meta name="text:Link 1 URL" content="" />
  76. <meta name="text:Link 1" content="" />
  77. <meta name="text:Link 2 URL" content="" />
  78. <meta name="text:Link 2" content="" />
  79. <meta name="text:Link 3 URL" content="" />
  80. <meta name="text:Link 3" content="" />
  81. <meta name="text:Link 4 URL" content="" />
  82. <meta name="text:Link 4" content="" />
  83.  
  84. <meta name="image:sidebar" content=""/>
  85. <link href='http://fonts.googleapis.com/css?family=Petit+Formal+Script' rel='stylesheet' type='text/css'>
  86.  
  87. <link href='http://fonts.googleapis.com/css?family=Playfair+Display:500,700,900,500italic,700italic,900italic' rel='stylesheet' type='text/css'>
  88.  
  89. <script src="http://use.edgefonts.net/alegreya.js"></script>
  90.  
  91. <link href='http://fonts.googleapis.com/css?family=Mrs+Saint+Delafield' rel='stylesheet' type='text/css'>
  92.  
  93. <link href='http://fonts.googleapis.com/css?family=Oswald:400,700,300' rel='stylesheet' type='text/css'>
  94.  
  95. <style type="text/css">
  96.  
  97. ::-webkit-scrollbar-thumb:vertical {background-color:{color:border}; border-radius: 10px;}
  98. ::-webkit-scrollbar-button:horizontal {display:none;}
  99. ::-webkit-scrollbar {background-color:transparent; width:0px;}
  100. body {
  101. margin:0px;
  102. padding:0px;
  103. font-family:times;
  104. font-size:12px;
  105. color:{color:text};
  106. background:{color:background};
  107. background-image:url(http://i.imgur.com/fT0FtN5.png);
  108. background-repeat:no-repeat;
  109. background-attachment:fixed;
  110. line height:110%;
  111. font-weight:lighter;
  112. }
  113.  
  114. h2 {
  115. font-size:20px;
  116. line-height:18px;
  117. font-weight:bold;
  118. margin-bottom:10px;
  119. text-transform:lowercase;
  120. text-align:center;}
  121.  
  122.  
  123. small {font-size:10px;}
  124. big {font-size:15px;}
  125.  
  126. a:link, a, a:active, a:visited {
  127. text-decoration:none;
  128. color:{color:link};
  129. transition-duration: 0.6s;
  130. -moz-transition-duration: 0.6s;
  131. -webkit-transition-duration: 0.6s;
  132. -o-transition-duration: 0.6s;
  133. }
  134. a:hover {
  135. color:{color:link hover};
  136. transition-duration: 0.6s;
  137. -moz-transition-duration: 0.6s;
  138. -webkit-transition-duration: 0.6s;
  139. -o-transition-duration: 0.6s;
  140. }
  141.  
  142. #entry {
  143. position:fixed;
  144. height:219px;
  145. width:510px;
  146. margin-left:458px;
  147. margin-top:-332px;
  148. text-align:center;
  149. padding:20px;
  150. border:0px solid #000;
  151. background-color:transparent;
  152. z-index:999;
  153. overflow-x:hidden;
  154. overflow-y:auto;
  155. }
  156.  
  157. .post {
  158. overflow:hidden;
  159. float:center;
  160. margin-left:8px;
  161. text-align:left;
  162. margin-top:-60px;
  163. margin-bottom:78px;
  164. padding-bottom:30px;
  165. width:500px;
  166. overflow:hidden;
  167. {block:if500px}
  168. width:500px;
  169. {/block:if500px}
  170. }
  171.  
  172. #updates {
  173.  
  174. /* UPDATES TAB BY: MARIESTHEMES.TUMBLR.COM
  175. DO NOT REMOVE THIS CREDIT, EDIT AS MUCH AS YOU LIKE
  176. I RECOMMEND THAT YOU DO NOT CHANGE ANYTHING THAT I HAVEN'T MARKED WITH "CHANGE _____" BECAUSE THEY MAY AFFECT THE HEIGHTS AND STUFF AND MESS THE WHOLE THING UP SO BE CAREFUL WHILE EDITING
  177. AND WATCH OUT FOR THE ; AND } BECAUSE THEY ARE CRUCIAL DO NOT DELETE THEM */
  178.  
  179. left:15px;
  180. top:12px;
  181. font-size:10px;
  182. line-height:1.4;
  183. z-index:999999;
  184. position:fixed;}
  185.  
  186. ul#tabs {
  187. padding:0px;
  188. margin:0px;}
  189. ul#tabs li {
  190. width:12px;
  191. height:12px;
  192. padding:5px;
  193. margin-top:7px;
  194. list-style:none;
  195. cursor:pointer;
  196. overflow:hidden;
  197. overflow:visible;}
  198.  
  199. #tabs a {
  200. padding:8px 11px;
  201. overflow:hidden;
  202. text-align:center;
  203. font-size:8px;
  204. font-family:tahoma;
  205. text-transform:uppercase;
  206. color:#ffffff; /* CHANGE TEXT COLOR */
  207. border:1px solid #000; /* CHANGE BORDER COLOR */
  208. background-color:#101010; /* CHANGE BACKGROUND COLOR */
  209. -webkit-transition:all 0.3s ease-out;
  210. -moz-transition:all 0.3s ease-out;
  211. transition:all 0.3s ease-out;}
  212. #tabs a:hover {
  213. color:#d1d1d1; /* CHANGE HOVER TEXT COLOR */
  214. background-color:#111; /* CHANGE HOVER BACKGROUND COLOR */
  215. -webkit-transition:all 0.3s ease-out;
  216. -moz-transition:all 0.3s ease-out;
  217. transition:all 0.3s ease-out;}
  218.  
  219. #content1, #content2, #content3 {
  220. width:130px;
  221. min-height:66px;
  222. margin-left:34px;
  223. margin-top:-82px; /* IF YOU DELETE/ADD TABS CHANGE THE VALUE TO THE CORRECT ONE TOLD ON THE ORIGINAL POST (http://paynex.tumblr.com/post/104341522478) */
  224. padding:9px 10px;
  225. position:absolute;
  226. word-wrap:break-word;
  227. text-align:justify;
  228. line-height:1.4; /* CHAGE THE LINE HEIGHT */
  229. letter-spacing:1px; /* CHENGE THE LETTER SPACING */
  230. font-size:8px; /* CHANGE THE FONT SIZE */
  231. font-family:calibri, tahoma; /* CHANGE THE FONT */
  232. text-transform:uppercase; /* UPPERCASE OR LOWERCASE */
  233. color:#d1d1d1; /* CHANGE TEXT COLOR */
  234. border:1px solid #111; /* CHANGE BORDER COLOR */
  235. background-color:#101010; /* CHANGE BACKGROUND COLOR */}
  236.  
  237.  
  238. .info {
  239. width:500px;
  240. margin-bottom:10px;
  241. font-family:helvetica;
  242. font-size:8px;
  243. font-style:none;
  244. text-align:center;
  245. letter-spacing:1px;
  246. line-height:150%;
  247. text-transform:lowercase;
  248. padding-top:5px;
  249. {block:indexpage}
  250. {block:ifhover}
  251. opacity:0;
  252. {/block:ifhover}
  253. {block:indexpage}
  254. transition-duration: 0.5s;
  255. -moz-transition-duration: 0.5s;
  256. -webkit-transition-duration: 0.5s;
  257. -o-transition-duration: 0.5s;
  258. {block:if500px}
  259. width:500px;
  260. padding-top:7px;
  261. {/block:if500px}
  262. }
  263.  
  264. .info a {
  265. color:{color:tags};
  266. padding:5px;
  267. }
  268. .info a:hover {
  269. color:{color:tags hover};
  270. }
  271.  
  272. {block:ifhover}
  273. .post:hover .info {
  274. opacity:1;
  275. -webkit-transition: all 0.5s ease-in-out;
  276. -moz-transition: all 0.5s ease-in-out;
  277. -o-transition: all 0.5s ease-in-out;
  278. -ms-transition: all 0.5s ease-in-out;
  279. }
  280. {/block:ifhover}
  281.  
  282. h1 {
  283. font-family:times;
  284. text-transform:uppercase;
  285. font-size:35px;
  286. margin-top:50px;
  287. font-weight:lighter;
  288. text-align:center;
  289. padding:2px;
  290. letter-spacing:0px;
  291. background:;
  292. }
  293. h1 a {
  294. color:{color:title};
  295. text-transform:uppercase;
  296. font-family:times;
  297. }
  298.  
  299.  
  300. #links {
  301. width:45px;
  302. text-transform:lowercase;
  303. word-spacing:3px;
  304. font-weight:italic;
  305. color:#bcbcbc;
  306. margin-top:295px;
  307. text-align:justify;
  308. margin-left:810px;
  309. }
  310.  
  311.  
  312. #links a {
  313. font-size:28px;
  314. margin-left:200px;
  315. line-height:90px;
  316. color:#bcbcbc;
  317. text-shadow: 0 0 3px #b0b0b0;
  318. }
  319.  
  320.  
  321.  
  322. /*sidebar shit*/
  323. div { position:relative; }
  324.  
  325. input[type=checkbox] {
  326. position:absolute;
  327. top:0;
  328. left:0;
  329. width:100%;
  330. height:100%;
  331. opacity:0;
  332. }
  333.  
  334. h2 {
  335. display:navigate;
  336. font-family:helvetica;
  337. font-weight:lighter;
  338. width:100px;
  339. font-size:9px;
  340. letter-spacing:1px;
  341. text-align:left;
  342. font-style:none;
  343. text-transform:lowercase;
  344. line-height:180%;
  345. padding-left:3px;
  346. padding-right:3px;
  347. margin-left:15px;
  348. z-index:9999;
  349. color:{color:sidelink};
  350. }
  351. h2 a {
  352. color:{color:sidelink} !important;
  353. }
  354.  
  355. label {
  356. cursor:pointer;
  357. }
  358. label {
  359. position:relative;
  360. display:block;
  361. padding-left:10px;
  362. font-family:helvetica;
  363. font-weight:lighter;
  364. z-index:9999;
  365. }
  366.  
  367. label:before {
  368. content:"";
  369. position:absolute;
  370. width:0;
  371. height:0;
  372. top:50%;
  373. left:10px;
  374. z-index:9999;
  375.  
  376. }
  377.  
  378. input[type=checkbox]:checked ~ h2 label:before {
  379. margin-left:-4px;
  380. margin-top:-4px;
  381. z-index:9999;
  382. }
  383.  
  384. #description {
  385. max-height:0;
  386. overflow:hidden;
  387. padding-left:30px;
  388. transition:max-height 0.8s ease;
  389. font-family:helvetica;
  390. font-weight:lighter;
  391. font-size:9px;
  392. letter-spacing:1px;
  393. width:170px;
  394. line-height:150%;
  395. }
  396.  
  397. input[type=checkbox]:checked ~ h2 ~ #description {
  398. max-height:250px; /*MAX HEIGHT OF SIDEBAR CONTENT CHANGED HERE*/
  399. z-index:9999;
  400. }
  401.  
  402. .text_box:before {
  403. content :"";
  404. position :absolute;
  405. margin-left:2px;
  406. width:2px;
  407. height:16px;
  408. background:#f8f8f8;
  409. filter:alpha(opacity=100);
  410. -moz-opacity:1;
  411. -khtml-opacity:1;
  412. opacity:1;
  413. z-index:999;
  414. transition-duration: 0.8s;
  415. -moz-transition-duration: 0.8s;
  416. -webkit-transition-duration: 0.8s;
  417. -o-transition-duration: 0.8s;
  418. }
  419.  
  420. input[type="checkbox"]:hover ~ h2 .text_box:before {
  421. width:2px;
  422. background:#dddddd;
  423. transition-duration: 0.8s;
  424. -moz-transition-duration: 0.8s;
  425. -webkit-transition-duration: 0.8s;
  426. -o-transition-duration: 0.8s;
  427. }
  428.  
  429. input[type="checkbox"]:checked ~ h2 .text_box:before {
  430. width:100px;
  431. background:#f8f8f8;
  432. transition-duration: 0.8s;
  433. -moz-transition-duration: 0.8s;
  434. -webkit-transition-duration: 0.8s;
  435. -o-transition-duration: 0.8s;
  436. }
  437.  
  438. #pagination {
  439. width:500px;
  440. bottom:20px;
  441. padding-bottom:30px;
  442. font-size:8px;
  443. font-family:helvetica;
  444. text-align:center;
  445. letter-spacing:6px;
  446. {block:if500px}
  447. width:500px;
  448. {/block:if500px}
  449. }
  450. #pagination a {
  451. color:{color:sidelink};
  452. }
  453. .jump_page {
  454. padding:10px;
  455. color:{color:sidelink};
  456. border-top:2px solid {color:background};
  457. }
  458. .jump_page:hover {
  459. color:{color:sidelink hover};
  460. border-top:2px solid #eeeeee;
  461. }
  462. .current_page {
  463. padding:10px 8px 10px 10px;
  464. color:{color:sidelink};
  465. border-top:2px solid {color:border};
  466. }
  467.  
  468.  
  469. .quote {
  470. font-family:times;
  471. font-size:12px;
  472. font-style:none;
  473. text-align:center;
  474. letter-spacing:0px;
  475. line-height:110%;
  476. padding:10px;
  477. }
  478.  
  479. #source {
  480. font-size:17px;
  481. text-transform:uppercase;
  482. letter-spacing:4px;
  483. text-align:center;
  484. font-weight:bold;
  485. padding:8px 5px 5px 5px;
  486. background-color:transparent;
  487. }
  488.  
  489. #source a {
  490. color:{color:text};
  491. }
  492.  
  493. .playbutton {
  494. width:20px;
  495. height:30px;
  496. overflow:hidden;
  497. position:relative;
  498. opacity:0.6;
  499. margin-top:27px;
  500. margin-left:10px;
  501. z-index:100;
  502. margin:9px 18px 7px 10px;
  503. }
  504.  
  505. .playbox {
  506. margin-top:15px;
  507. margin-left:13px;
  508. opacity:0.6;
  509. background-color:#fff;
  510. position: absolute;
  511. z-index: 100;
  512. -webkit-border-radius: 25px;
  513. -moz-border-radius: 25px;
  514. border-radius: 25px;
  515. }
  516.  
  517. .audio{
  518. position:absolute;
  519. width:40px;
  520. height:40px;
  521. }
  522.  
  523. .audioimg{
  524. width:75px;
  525. height:75px;
  526. position:absolute;
  527. }
  528.  
  529. .audioimg img{
  530. margin-left:0px;
  531. float:left;
  532. opacity:1;
  533. width:75px;
  534. }
  535.  
  536. .audiodata {
  537. background-color:{color:background};
  538. font-size:7px;
  539. letter-spacing:3px;
  540. font-family:helvetica;
  541. color:{color:text};
  542. padding:10px;
  543. text-transform:none;
  544. height:55px;
  545. width:305px;
  546. margin-top:0px;
  547. margin-left:75px;
  548. text-align:center;
  549. {block:if500px}
  550. width:405px;
  551. {/block:if500px}
  552. }
  553.  
  554. .caption {
  555. text-align:left;
  556. font-size:9px;
  557. padding:3px 20px 3px 30px;
  558. font-family:helvetica;
  559. display:block;
  560. color:{color:text};
  561. background:transparent;
  562. }
  563. .caption img {
  564. max-width:360px;
  565. }
  566. .caption a {
  567. color:{color:text};
  568. }
  569.  
  570. blockquote {
  571. padding-left:5px;
  572. border-left:1px solid #000000;
  573. }
  574.  
  575. #asker {
  576. text-align:center;
  577. margin-top:0px;
  578. margin-bottom:-10px;
  579. font-size:12px;
  580. font-style:none;
  581. padding:10px;
  582. font-family:times;
  583. background-color:transparent;
  584. }
  585.  
  586. #asker a {
  587. font-size:12px;
  588. font-family:times;
  589. letter-spacing:0px;
  590. background:none;
  591. text-transform:uppercase;
  592. font-weight:bold;
  593. color:{color:text}
  594. }
  595.  
  596. #asked {
  597. text-transform:uppercase;
  598. font-weight:bold;
  599. font-size:12px;
  600. font-family:times;
  601. letter-spacing:0px;
  602. background:none;
  603. }
  604.  
  605. #answer {
  606. font-family:times;
  607. font-size:12px;
  608. font-style:none;
  609. text-align:left;
  610. letter-spacing:0px;
  611. margin-top:17px;
  612. margin-bottom:5px;
  613.  
  614. }
  615.  
  616.  
  617.  
  618. ol.notes {
  619. padding-bottom:2%;
  620. width:360px;
  621. list-style-type:upper-roman;
  622. text-align:left;
  623. font-size:9px;
  624. {block:if500px}
  625. width:460px;
  626. {/block:if500px}
  627. }
  628.  
  629. ol.notes li.note{
  630. padding:2%;
  631. }
  632.  
  633. ol.notes li.note img.avatar{
  634. width:0px;
  635. height:0px;}
  636.  
  637. #fade {
  638. display: none;
  639. background: #000;
  640. position: fixed;
  641. left: 0;
  642. top: 0;
  643. width: 100%;
  644. height: 100%;
  645. opacity: .80;
  646. z-index: 9999;
  647. }
  648.  
  649. .popup_block{
  650. display: none;
  651. background:transparent;
  652. padding: 20px;
  653. float: left;
  654. position: fixed;
  655. top: 50%;
  656. left: 50%;
  657. z-index: 99999;
  658. }
  659.  
  660. *html #fade {
  661. position: absolute;
  662. }
  663.  
  664. *html .popup_block {
  665. position: absolute;
  666. }
  667.  
  668.  
  669. .showhide_element {
  670. display: none;
  671. }
  672.  
  673. #credit {
  674. bottom:15px;
  675. text-align:center;
  676. font-size:14px;
  677. letter-spacing:3px;
  678. font-family:times;
  679. opacity:1;
  680. margin-left:25px;
  681. width:500px;
  682. {block:if500px}
  683. width:500px;
  684. {/block:if500px}
  685. }
  686.  
  687. </style></head>
  688. <body>
  689.  
  690. <div id="updates">
  691. <ul id="tabs">
  692. <li><a class="#content1">1</a></li>
  693. <li><a class="#content2">2</a></li>
  694. <li><a class="#content3">3</a></li>
  695. </ul>
  696.  
  697. <div id="content1">
  698. <!-- WRITE BETWEEN THIS -->
  699. <center>independent <br><b><big>MALEFICENT</big></b><br>roleplay blog. <p>ouat-based.<br>original 2012.<br>revamp march 2015.
  700. <!-- AND THIS -->
  701. </div>
  702.  
  703. <div id="content2">
  704. <!-- WRITE BETWEEN THIS -->
  705. <center>written by <br><b><big>shania.</b></big><p>please read my guidelines before interacting.<p><script language="JavaScript">
  706. var ref = (''+document.referrer+'');
  707. var w_h = window.screen.width + " x " + window.screen.height;
  708. document.write('<script src="http://s1.freehostedscripts.net/ocounter.php?site=ID4768774&e1=&e2=&r=' + ref + '&wh=' + w_h + '"><\/script>');
  709. </script> | <script language="JavaScript" src="http://s1.freehostedscripts.net/ocount.php?site=ID2856753&name="></script>
  710.  
  711. <!-- AND THIS -->
  712. </div>
  713.  
  714. <div id="content3">
  715. <!-- WRITE BETWEEN THIS -->
  716. <center><b><big><a href="http://eqdesign.deviantart.com/art/Kristin-Bauer-Van-Straten-as-Maleficent-513227598">graphic credit.</a></big></b><p>coded by <a href="http://furiisms.tumblr.com">furiisms.</a><p>not spoiler-free.
  717. <!-- AND THIS -->
  718. </div>
  719. </div>
  720.  
  721. <script src="http://static.tumblr.com/7bmjmb1/7alncayzs/jquery-1.11.1.min.js"></script>
  722. <script src="http://static.tumblr.com/7bmjmb1/nACnevwtr/mtupdatestab.js.txt"></script>
  723. <div id="sidebar">
  724. {block:ifsidebarimg}<div id="sidebar img"><img src="{image:sidebar}"/></div>{/block:ifsidebarimg}
  725.  
  726. <div>
  727.  
  728. <div id="links">
  729.  
  730.  
  731. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  732.  
  733. {block:ifLink2}<a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:ifLink2}
  734.  
  735. {block:ifLink3}<a href="{text:Link 3 URL}" >{text:Link 3}</a>{/block:ifLink3}
  736.  
  737. {block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a>{/block:ifLink4}
  738.  
  739. </div>
  740.  
  741.  
  742. </div>
  743.  
  744. <div id="entry">
  745.  
  746. {block:Posts}
  747.  
  748. <div class="post">
  749.  
  750. {block:Text}
  751. {block:Title}<h1>{Title}</h1>{/block:Title}
  752. {Body}
  753. {/block:Text}
  754.  
  755.  
  756. {block:Photo}
  757. {block:if500px}
  758. <center><a href="{Permalink}"><img src="{PhotoURL-500}"></a></center>
  759. {/block:if500px}
  760.  
  761. {block:Caption}
  762. {block:ifshowcaptions}
  763. <span class="caption">{Caption}</span>
  764. {/block:ifshowcaptions}
  765. {/block:Caption}
  766. {/block:Photo}
  767.  
  768.  
  769. {block:Photoset}
  770. {block:if500px}
  771. {Photoset-500}
  772. {/block:if500px}
  773.  
  774. {block:Caption}
  775. {block:ifshowcaptions}
  776. <span class="caption">{Caption}</span>
  777. {/block:ifshowcaptions}
  778. {/block:Caption}
  779. {/block:Photoset}
  780.  
  781. {block:Quote}
  782. {block:Source}
  783. <div id="source">{Source}</div>
  784. {/block:Source}
  785. <div class="quote">❝ {Quote} ❞</div>
  786. {/block:Quote}
  787.  
  788.  
  789. {block:Link}
  790. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  791. {block:Description}
  792. <div style="padding-left:5px;padding-right:5px;">{Description}</div>
  793. {/block:Description}
  794. {/block:Link}
  795.  
  796.  
  797. {block:Chat}
  798. {block:Title}<h1>{Title}</h1>{/block:Title}
  799. {block:Lines}
  800. {block:Label}<b>{Label}</b>{/block:Label} {Line}<br>
  801. {/block:Lines}
  802. {/block:Chat}
  803.  
  804. {block:Audio}
  805. <div class="audio">
  806. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div></div>
  807. <div class="audioimg"><img src="http://static.tumblr.com/jn9hrij/20Ul2zzsr/albumart.jpg"></div>{block:AlbumArt}<div class="audioimg"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}</div>
  808. <div class="audiodata"><br><font style="text-transform:uppercase">{block:TrackName}{TrackName} - {/block:TrackName}
  809. {block:Artist}{Artist}{/block:Artist}<br><br><small><small>{PlayCountWithLabel}</small></small></font></div>
  810.  
  811. {block:Caption}
  812. {block:ifshowcaptions}
  813. <span class="caption">{Caption}</span>
  814. {/block:ifshowcaptions}
  815. {/block:Caption}
  816. {/block:Audio}
  817.  
  818.  
  819.  
  820. {block:Video}
  821. {block:if500px}
  822. {Video-500}
  823. {/block:if500px}
  824. {block:if500px}
  825. {Video-500}
  826. {/block:if500px}
  827.  
  828. {block:Caption}
  829. {block:ifshowcaptions}
  830. <span class="caption">{Caption}</span>
  831. {/block:ifshowcaptions}
  832. {/block:Caption}
  833. {/block:Video}
  834.  
  835.  
  836. {block:Answer}
  837. <div id="asker">{Asker} <font id="asked">asked:</font>
  838. <font-style="font-family:times new roman;"><i>{Question}</i></font></div>
  839. <div id="answer">{Answer}</div>
  840. {/block:Answer}
  841.  
  842. {block:IndexPage}
  843. <div class="info">{block:Date}<a href="{Permalink}">{TimeAgo}</a>{/block:Date} {block:HasTags}{block:Tags}
  844. <a href="/tagged/{Tag}">{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}{block:NoteCount}&nbsp;&nbsp; <small>+{NoteCount}</small>{/block:NoteCount}</div>
  845. {/block:IndexPage}
  846.  
  847. {block:PermalinkPage}
  848. <div class="info">{block:Date}<a href="{Permalink}"><small>{DayOfMonth} . {MonthNumberWithZero} . {ShortYear}</small></a>{/block:Date} {block:HasTags}{block:Tags}
  849. <a href="/tagged/{Tag}">{Tag}</a>&nbsp;{/block:Tags}{/block:HasTags}{block:NoteCount}&nbsp;&nbsp; <small>+{NoteCount}</small>{/block:NoteCount}</div>
  850. <center><font style="padding:5px;font-size:6px;text-transform:uppercase;letter-spacing:3px;">{block:ContentSource}by: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} {block:RebloggedFrom} &nbsp; via: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}</a></font></center>
  851. {/block:PermalinkPage}
  852.  
  853. </div>
  854. {/block:Posts}
  855.  
  856. {block:PermalinkPage}
  857. {block:PostNotes}
  858. <div id="notes">{PostNotes}</div>
  859. {/block:PostNotes}
  860. {/block:permalinkpage}
  861.  
  862. <div id="pagination">
  863. {block:IndexPage}
  864. {block:Pagination}
  865. {block:PreviousPage}
  866. <a href="{PreviousPage}">←</a>&nbsp;&nbsp;
  867. {/block:PreviousPage}
  868. {block:JumpPagination length="5"}
  869. {block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}
  870. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  871. {/block:JumpPagination}
  872. {block:NextPage}
  873. &nbsp;&nbsp;<a href="{NextPage}">→</a>
  874. {/block:NextPage}
  875. {/block:Pagination}
  876. {/block:IndexPage}
  877. </div>
  878.  
  879. <div id="credit"><a href="http://aryasnark.tumblr.com">©</a></div>
  880.  
  881. </div>
  882.  
  883. </div>
  884.  
  885. <div id="askpop" class="popup_block">
  886. <center>
  887. <h3>{text:ask title}</h3>
  888. <iframe frameborder="0" border="0" scrolling="no" width="100%" height="190" allowtransparency="true" src="http://www.tumblr.com/ask_form/disobcy.tumblr.com" style="background-color:transparent; overflow:hidden;"></iframe>
  889. </center>
  890. </div>
  891. </div></div></div></div></div></div></div></div></div></div>
  892.  
  893. </body>
  894. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement