Advertisement
lojsan7

danyyy

Nov 13th, 2015
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.43 KB | None | 0 0
  1. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  2. <head>
  3. <script type="text/javascript"
  4. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  5. <script>
  6. $(document).ready(function() {
  7. //
  8. $('a.poplight[href^=#]').click(function() {
  9. var popID = $(this).attr('rel'); //Get Popup Name
  10. var popURL = $(this).attr('href'); //Get Popup href to define size
  11. var query= popURL.split('?');
  12. var dim= query[1].split('&');
  13. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  14. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  15. var popMargTop = ($('#' + popID).height() + 80) / 2;
  16. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  17. //Apply Margin to Popup
  18. $('#' + popID).css({
  19. 'margin-top' : -popMargTop,
  20. 'margin-left' : -popMargLeft
  21. });
  22. $('body').append('<div id="fade"></div>');
  23. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  24. return false;
  25. });
  26. $('a.close, #fade').live('click', function() {
  27. $('#fade , .popup_block').fadeOut(function() {
  28. $('#fade, a.close').remove(); //fade them both out
  29. });
  30. return false;
  31. });
  32. });
  33. </script>
  34. <title>{Title}</title>
  35. <link rel="shortcut icon" href="http://33.media.tumblr.com/7d73ec4901f0d44b3fd4023647d6a14e/tumblr_inline_npsgp90v2h1ru3562_500.gif">
  36. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  37.  
  38. <!---- this is theme 44 by Hollywhood
  39. please don't remove the credit
  40. thank you
  41. --->
  42.  
  43. <meta name="color:Background" content="#ffffff"/>
  44. <meta name="color:Text" content="#9B9B9B"/>
  45. <meta name="color:Link" content="#b8b8b8"/>
  46. <meta name="color:scrollbar" content="#999999">
  47. <meta name="color:title" content="#999999">
  48. <meta name="color:Link Hover" content="#eeeeee"/>
  49.  
  50. <meta name="image:sidebar" content=""/>
  51. <meta name="text:sidebartitle" content="">
  52. <meta name="image:background image" content="">
  53. <meta name="image:info image" content="">
  54. <meta name="image:sidebar" content=""/>
  55. <meta name="text:sidebartitle" content="">
  56.  
  57. <meta name="text:link1" content="" />
  58. <meta name="text:link1 url" content="/">
  59. <meta name="text:link2" content="" />
  60. <meta name="text:link2 url" content="/">
  61. <meta name="text:link3" content="" />
  62. <meta name="text:link3 url" content="/">
  63. <meta name="text:link4" content="" />
  64. <meta name="text:link4 url" content="/">
  65. <meta name="text:link5" content="" />
  66. <meta name="text:link5 url" content="/">
  67.  
  68.  
  69. <style type="text/css">
  70.  
  71. #tab1 {
  72. width: 13px;
  73. height: 13px;
  74. border: solid 1px #b2b2b1; /*Here change the border color*/
  75. background-color: #d7d5d4; /*Here change the background color*/
  76. margin-left:-670px;
  77. margin-top: 10px;
  78. position: fixed;
  79. overflow:hidden;
  80. -webkit-transition: opacity 0.4s linear;
  81. -webkit-transition: all 0.4s linear;
  82. -moz-transition: all 0.4s linear;
  83. -o-transition: all 0.4s linear;
  84. }
  85.  
  86. #tab1:hover {
  87. width: 130px;
  88. height: 168px;
  89. background-color: #d8d7cf;
  90. z-index: 99999;
  91. -webkit-transition: opacity 0.4s linear;
  92. -webkit-transition: all 0.4s linear;
  93. -moz-transition: all 0.4s linear;
  94. -o-transition: all 0.4s linear;
  95. }
  96.  
  97. #tab2 {
  98. width: 13px;
  99. height: 13px;
  100. border: solid 1px #b2b2b1; /*Here change the border color*/
  101. background-color: #d7d5d4; /*Here change the background color*/
  102. margin-left: -670px;
  103. margin-top: 35px;
  104. position: fixed;
  105. overflow:hidden;
  106. z-index:999;
  107. -webkit-transition: opacity 0.4s linear;
  108. -webkit-transition: all 0.4s linear;
  109. -moz-transition: all 0.4s linear;
  110. -o-transition: all 0.4s linear;
  111. }
  112.  
  113. #tab2:hover {
  114. width: 130px;
  115. height: 168px;
  116. background-color: #d8d7cf;
  117. -webkit-transition: opacity 0.4s linear;
  118. -webkit-transition: all 0.4s linear;
  119. -moz-transition: all 0.4s linear;
  120. -o-transition: all 0.4s linear;
  121. }
  122.  
  123. #tab3 {
  124. width: 13px;
  125. height: 13px;
  126. border: solid 1px #b2b2b1; /*Here change the border color*/
  127. background-color: #d7d5d4; /*Here change the background color*/
  128. margin-left: -670px;
  129. margin-top: 60px;
  130. position: fixed;
  131. overflow:hidden;
  132. -webkit-transition: opacity 0.4s linear;
  133. -webkit-transition: all 0.4s linear;
  134. -moz-transition: all 0.4s linear;
  135. -o-transition: all 0.4s linear;
  136. }
  137.  
  138. #tab3:hover {
  139. width: 130px;
  140. height: 168px;
  141. background-color: #d8d7cf;
  142. -webkit-transition: opacity 0.4s linear;
  143. -webkit-transition: all 0.4s linear;
  144. -moz-transition: all 0.4s linear;
  145. -o-transition: all 0.4s linear;
  146. }
  147.  
  148. .inside {
  149. width: 110px;
  150. padding: 10px;
  151. padding-top: 8px;
  152. font-family: sans-serif;
  153. font-size: 9px;
  154. line-height: 150%;
  155. color: #767575; /*Change here the text color*/
  156. background-color: #d7d5d4; /*Change here the inside background color*/
  157. letter-spacing: .8px;
  158. text-align: center;
  159. padding-bottom:1000px;
  160. opacity: 0;
  161. -webkit-transition: opacity 0.3s linear;
  162. -webkit-transition: all 0.3s linear;
  163. -moz-transition: all 0.3s linear;
  164. -o-transition: all 0.3s linear;
  165. }
  166.  
  167. .inside:hover {
  168. opacity: 1;
  169. -webkit-transition: opacity 0.3s linear;
  170. -webkit-transition: all 0.3s linear;
  171. -moz-transition: all 0.3s linear;
  172. -o-transition: all 0.3s linear;
  173. }
  174.  
  175.  
  176. ::-webkit-scrollbar-thumb{
  177. background-color: #d4d2d2;
  178. border: 2px solid transparent;
  179. height:5px;
  180. }
  181.  
  182. ::-webkit-scrollbar {
  183. height:auto;
  184. width:2px;
  185. background-color: transparent;
  186. border:5px solid transparent;
  187. }
  188.  
  189.  
  190. iframe#tumblr_controls {
  191. white-space:nowrap;
  192. -webkit-filter: invert(100%);
  193. -moz-filter: invert(100%);
  194. -o-filter: invert(100%);
  195. -ms-filter: invert(100%);
  196. filter: invert(100%);
  197. opacity:.2;transition: .8s ease-in-out;
  198. -webkit-transition: .8s ease-in-out;
  199. -moz-transition: .8s ease-in-out;
  200. -o-transition: .8s ease-in-out;
  201. }
  202.  
  203. h1 {
  204. font-weight:normal;
  205. font-size:17px;
  206. text-align:center;
  207. font-style:normal;
  208. line-height:100%;
  209. letter-spacing:1px;
  210. text-transform:normal;
  211. color:{color:text};
  212. }
  213.  
  214. h2 {
  215. font-size:17px;
  216. text-align:center;
  217. line-height:100%;
  218. letter-spacing:-0.5px;
  219. color:#444343;
  220. text-shadow:1px 1px 1px #022e40;
  221. font-weight:bold;
  222. text-transform:uppercase;
  223. padding:5px;
  224. padding-bottom:2px;
  225. }
  226.  
  227.  
  228. blockquote {
  229. border-left:1px solid #c2c0c0;
  230. padding:17px;
  231. margin:10px 2px 0px 10px
  232. background-color:#a35178;
  233. }
  234.  
  235. body {
  236. background:{color:background};
  237. background-image: url('http://i.imgur.com/ScyWbu4.png');
  238. background-repeat: no-repeat;
  239. background-size: center;
  240. background-attachment: fixed;
  241. position: absolute;
  242. margin-left:700px;
  243. color:{color:text};
  244. font-family:arial;
  245. font-size:12px;
  246. line-height:100%;
  247. }
  248.  
  249. b,bold,strong {
  250. color:#676565;
  251. font-family:arial;
  252. font-size:14px;
  253. text-shadow: 1px 1px 1px #000000;
  254. }
  255.  
  256. i,em,italic {
  257. color:#fbfafa;
  258. font-family:arial;
  259. font-size:14px;
  260. text-shadow: 1.5px 1.5px 11px #ffffff;
  261. }
  262.  
  263. a {
  264. text-decoration:none;
  265. text-transform:uppercase;
  266. text-shadow: 0 0 0.3em ;
  267. color: #eeeeee;
  268. outline:none;
  269. -moz-outline-style:none;
  270. color:{color:link};
  271. -moz-transition-duration:0.5s;
  272. -webkit-transition-duration:0.5s;
  273. -o-transition-duration:0.5s;
  274. }
  275.  
  276. a:hover {
  277. text-decoration:none;
  278. outline:none;
  279. -moz-outline-style:none;
  280. color:{color:link hover};
  281. }
  282.  
  283. img {
  284. border:none;
  285. }
  286.  
  287.  
  288. #post {
  289. width:400px;
  290. margin-top:0px;
  291. margin-bottom:50px;
  292. opacity:0.8;
  293. -webkit-transition: all 0.6s ease-in-out;
  294. -moz-transition: all 0.6s ease-in-out;
  295. -o-transition: all 0.6s ease-in-out;
  296. -ms-transition: all 0.6s ease-in-out;
  297. transition: all 0.6s ease-in-out;
  298. -webkit-filter:grayscale(100%);
  299. -webkit-transition: all 0.6s ease-in-out;
  300. }
  301.  
  302. #post:hover{
  303. -webkit-filter:none;
  304. -webkit-transition: all 0.6s ease-in-out;
  305. opacity:1;
  306. -webkit-transition: all 0.6s ease-in-out;
  307. -moz-transition: all 0.6s ease-in-out;
  308. -o-transition: all 0.6s ease-in-out;
  309. -ms-transition: all 0.6s ease-in-out;
  310. transition: all 0.6s ease-in-out;
  311. }
  312.  
  313. #container {margin: auto;
  314. position:fixed;
  315. width: 900px;}
  316.  
  317.  
  318. #entries {
  319. padding:10px;
  320. left:590px;
  321. top:81px;
  322. position:fixed;
  323. background-color:transparent;
  324. width:400px;
  325. height:362px;
  326. top:91px;
  327. padding: 20px;
  328. overflow-x:scroll;
  329. scroll:left;
  330. overflow-x:hidden;
  331. }
  332.  
  333.  
  334. #theme {
  335. width:250px;
  336. margin:0 auto -12px auto;
  337. }
  338.  
  339. #sidebar {
  340. color:{color:text};
  341. width:100px;
  342. height:auto;
  343. margin-top:90px;
  344. margin-left:165px;
  345. text-align:left;
  346. }
  347.  
  348. #sidebarimage img {
  349. width:100px;
  350. opacity:.9;
  351. margin-top:-10px;
  352. margin-bottom:0px;
  353. margin-left:43px;
  354. }
  355.  
  356. #alinks {
  357. font-family:'Minion Pro';
  358. width:220px;
  359. margin-top:-80px;
  360. margin-left:-490px;
  361. font-size:20px;
  362. text-transform:uppercase;
  363. text-align:center;
  364. line-height:280%;
  365. }
  366.  
  367. #links a{
  368. line-height:280%;
  369. border-bottom:0px solid #fff;
  370. margin-top:4px;
  371. margin-left:30px;
  372. color: #d4d5d6;
  373. text-shadow:1px 1px 15px #feffff;
  374. -moz-transition-duration:.2s;
  375. -webkit-transition-duration:.2s;
  376. -o-transition-duration:.2s;
  377. }
  378.  
  379. #links a:hover {
  380. color: {color:link hover};
  381. width:60px;
  382. -moz-transition-duration:0.2s;
  383. -webkit-transition-duration:0.2s;
  384. -o-transition-duration:0.2s;
  385. }
  386.  
  387.  
  388. #blinks {
  389. font-family:'Minion Pro';
  390. width:220px;
  391. margin-top:-25px;
  392. margin-left:-480px;
  393. font-size:15px;
  394. text-transform:uppercase;
  395. text-align:center;
  396. line-height:280%;
  397. }
  398.  
  399. #links a{
  400. line-height:280%;
  401. border-bottom:0px solid #fff;
  402. margin-top:4px;
  403. margin-left:30px;
  404. color: #d4d5d6;
  405. text-shadow:1px 1px 15px #feffff;
  406. -moz-transition-duration:.2s;
  407. -webkit-transition-duration:.2s;
  408. -o-transition-duration:.2s;
  409. }
  410.  
  411. #links a:hover {
  412. color: {color:link hover};
  413. width:60px;
  414. -moz-transition-duration:0.2s;
  415. -webkit-transition-duration:0.2s;
  416. -o-transition-duration:0.2s;
  417. }
  418.  
  419.  
  420. #clinks {
  421. font-family:'Minion Pro';
  422. width:220px;
  423. margin-top:-80px;
  424. margin-left:-500px;
  425. font-size:15px;
  426. text-transform:uppercase;
  427. text-align:center;
  428. line-height:280%;
  429. }
  430.  
  431. #links a{
  432. line-height:280%;
  433. border-bottom:0px solid #fff;
  434. margin-top:4px;
  435. margin-left:30px;
  436. color: #d4d5d6;
  437. text-shadow:1px 1px 15px #feffff;
  438. -moz-transition-duration:.2s;
  439. -webkit-transition-duration:.2s;
  440. -o-transition-duration:.2s;
  441. }
  442.  
  443. #links a:hover {
  444. color: {color:link hover};
  445. width:60px;
  446. -moz-transition-duration:0.2s;
  447. -webkit-transition-duration:0.2s;
  448. -o-transition-duration:0.2s;
  449. }
  450.  
  451.  
  452. #dlinks {
  453. font-family:'Minion Pro';
  454. width:220px;
  455. margin-top:-20px;
  456. margin-left:-505px;
  457. font-size:15px;
  458. text-transform:uppercase;
  459. text-align:center;
  460. line-height:280%;
  461. }
  462.  
  463. #links a{
  464. line-height:280%;
  465. border-bottom:0px solid #fff;
  466. margin-top:4px;
  467. margin-left:30px;
  468. color: #d4d5d6;
  469. text-shadow:1px 1px 15px #feffff;
  470. -moz-transition-duration:.2s;
  471. -webkit-transition-duration:.2s;
  472. -o-transition-duration:.2s;
  473. }
  474.  
  475. #links a:hover {
  476. color: {color:link hover};
  477. width:60px;
  478. -moz-transition-duration:0.2s;
  479. -webkit-transition-duration:0.2s;
  480. -o-transition-duration:0.2s;
  481. }
  482.  
  483.  
  484. #elinks {
  485. font-family:'Minion Pro';
  486. width:220px;
  487. margin-top:-25px;
  488. margin-left:-500px;
  489. font-size:15px;
  490. text-transform:uppercase;
  491. text-align:center;
  492. line-height:280%;
  493. }
  494.  
  495. #links a{
  496. line-height:280%;
  497. border-bottom:0px solid #fff;
  498. margin-top:4px;
  499. margin-left:30px;
  500. color: #d4d5d6;
  501. text-shadow:1px 1px 15px #feffff;
  502. -moz-transition-duration:.2s;
  503. -webkit-transition-duration:.2s;
  504. -o-transition-duration:.2s;
  505. }
  506.  
  507. #links a:hover {
  508. color: {color:link hover};
  509. width:60px;
  510. -moz-transition-duration:0.2s;
  511. -webkit-transition-duration:0.2s;
  512. -o-transition-duration:0.2s;
  513. }
  514.  
  515.  
  516. .sidebartitle {
  517. width:300px;
  518. text-align:center;
  519. font-family:'californian fb';
  520. line-height:120%;
  521. margin-left:-58px;
  522. word-spacing:2px;
  523. font-style:italic;
  524. font-size:16px;
  525. margin-top:10px;
  526. color:{color:title};
  527. }
  528.  
  529. #pagination {
  530. font-family:corbel;
  531. width:250px;
  532. font-size:9px;
  533. margin-top:25px;
  534. margin-left:-8px;
  535. padding-left:5px;
  536. letter-spacing:1px;
  537. text-align:center;
  538. text-transform:uppercase;
  539. }
  540.  
  541. #pagination a {
  542. color:{color:link};
  543. }
  544.  
  545. #info {
  546. font-family:arial;
  547. width:400px;
  548. margin-top:8px;
  549. padding-top:4px;
  550. font-size:10px;
  551. border-top:1px solid #ddd;
  552. opacity:0;
  553. color:{color:text};
  554. text-transform:uppercase;
  555. font-style:normal;
  556. text-align:left;
  557. -moz-transition-duration:0.5s;
  558. -webkit-transition-duration:0.5s;
  559. -o-transition-duration:0.5s;
  560. background-image:url('{image:info image}');
  561. border: 1px solid #bdbdbd;
  562. border-radius: 0px;
  563. }
  564.  
  565. #info a {
  566. color:{color:link};
  567. }
  568.  
  569. #info a:hover {
  570. color:{color:link hover};
  571. }
  572.  
  573. .tags {
  574. font-family:arial;
  575. font-style:normal;
  576. width:250px;
  577. margin-top:4px;
  578. text-transform:normal;
  579. font-style:normal;
  580. line-height:120%;
  581. padding-top:0px;
  582. font-size:8px;
  583. opacity:0;
  584. letter-spacing:1px;
  585. text-align:left;
  586. -moz-transition-duration:0.5s;
  587. -webkit-transition-duration:0.5s;
  588. -o-transition-duration:0.5s;
  589. }
  590. .tags a{
  591. color:{color:link};
  592. -moz-transition-duration:0.2s;
  593. -webkit-transition-duration:0.2s;
  594. -o-transition-duration:0.2s;
  595. }
  596. .tags a:hover{
  597. color:{color:link hover};
  598. -moz-transition-duration:0.2s;
  599. -webkit-transition-duration:0.2s;
  600. -o-transition-duration:0.2s;
  601. }
  602.  
  603. #post:hover #info{
  604. opacity:1;
  605. -moz-transition-duration:1s;
  606. -webkit-transition-duration:1s;
  607. -o-transition-duration:1s;
  608. }
  609. #post:hover .tags{
  610. opacity:1;
  611. -moz-transition-duration:1s;
  612. -webkit-transition-duration:1s;
  613. -o-transition-duration:1s;
  614. }
  615.  
  616. .audio{
  617. background-color:#dedddd;
  618. height:65px;
  619. overflow:hidden;
  620. }
  621.  
  622. #ask {
  623. float:left;
  624. color:{color:text};
  625. }
  626.  
  627. #credit {
  628. font-size:9px;
  629. font-family:cambria;
  630. font-style:italic;
  631. letter-spacing:1px;
  632. -moz-transition-duration:0.5s;
  633. -webkit-transition-duration:0.5s;
  634. -o-transition-duration:0.5s;
  635. }
  636.  
  637. #credit a {
  638. background-color:#fff;
  639. padding:5px;
  640. border:1px solid #e9e9e9;
  641. position:fixed;
  642. right:15px;
  643. bottom:25px
  644. }
  645.  
  646. #credit a:hover {
  647. color:#fff;
  648. background-color:#191919;
  649. }
  650.  
  651. {CustomCSS}
  652.  
  653.  
  654. #post img{
  655.  
  656. opacity:0.8;
  657.  
  658. -webkit-transition: all 0.6s ease-in-out;
  659.  
  660. -moz-transition: all 0.6s ease-in-out;
  661.  
  662. -o-transition: all 0.6s ease-in-out;
  663.  
  664. -ms-transition: all 0.6s ease-in-out;
  665.  
  666. transition: all 0.6s ease-in-out;
  667.  
  668. }
  669.  
  670. #post img:hover{
  671.  
  672. opacity:1;
  673.  
  674. -webkit-transition: all 0.6s ease-in-out;
  675.  
  676. -moz-transition: all 0.6s ease-in-out;
  677.  
  678. -o-transition: all 0.6s ease-in-out;
  679.  
  680. -ms-transition: all 0.6s ease-in-out;
  681.  
  682. transition: all 0.6s ease-in-out;
  683.  
  684. }
  685.  
  686.  
  687. .popup_block {
  688. display:none;
  689. background:#d8d7cf;
  690. padding:20px;
  691. border:1px solid #eee; /* if you want a solid white pop-up, delete this */
  692. float:left;
  693. position:fixed;
  694. top:50%;left:50%;
  695. width: 300px;
  696. height: 400px;
  697. overflow-y:scroll;
  698. overflow-x:hidden;
  699. z-index: 99999;
  700. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  701. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  702. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  703. }
  704.  
  705. *html #fade {position: absolute;}
  706. *html .popup_block {position: absolute;}
  707. #fade {
  708. display:none;
  709. position:fixed;
  710. left:0px;
  711. top:0px;
  712. width:100%;
  713. height:100%;
  714. z-index:9999;
  715. background:#000; /* change to #fff for solid white */
  716. opacity:0.5; /* change to opacity:1; */
  717. }
  718.  
  719.  
  720. </style><!--------------- TYPING/MOVING TITLE ----------------------->
  721.  
  722. <script type="text/javascript">
  723. var rev = "fwd";
  724. function titlebar(val)
  725. {
  726. var msg = "i will set fire to your crown.";
  727. var res = " ";
  728. var speed = 100;
  729. var pos = val;
  730. msg = "i will set fire to your crown.";
  731. var le = msg.length;
  732. if(rev == "fwd"){
  733. if(pos < le){
  734. pos = pos+1;
  735. scroll = msg.substr(0,pos);
  736. document.title = scroll;
  737. timer = window.setTimeout("titlebar("+pos+")",speed);}
  738. else{
  739. rev = "bwd";
  740. timer = window.setTimeout("titlebar("+pos+")",speed);}}
  741. else{
  742. if(pos > 0){
  743. pos = pos-1;
  744. var ale = le-pos;
  745. scrol = msg.substr(ale,le);
  746. document.title = scrol;
  747. timer = window.setTimeout("titlebar("+pos+")",speed);}
  748. else{
  749. rev = "fwd";
  750. timer = window.setTimeout("titlebar("+pos+")",speed);
  751. }}}
  752. titlebar(0);
  753. </script></head><body>
  754. <div id="tab1">
  755. <div class="inside" style"border-radius: 13px;">
  756. <strong>DĀRILAROS; crown princess.</strong><br />
  757.  
  758. <em>I want to be a constant reminder to men that not everything is theirs for the taking.</em>
  759. </small>
  760. </div>
  761. </div>
  762.  
  763. <div id="tab2">
  764. <div class="inside" style"border-radius: 13px;">
  765. <em>indie & modern DAENERYS TARGARYEN account.<br />
  766. Selectively canon.<br />
  767. 21+ and occasionally nsfw.</em>
  768. </div>
  769. </div>
  770.  
  771. <div id="tab3">
  772. <div class="inside" style"border-radius: 13px;">
  773. <i><a href="http://draconisa.tumblr.com/about" title="verses.">bio</a> &amp; <a href="http://draconisa.tumblr.com/verses" title="verses.">verses</a></i>
  774. </div>
  775. </div>
  776.  
  777.  
  778.  
  779. </div>
  780.  
  781. <div id="theme">
  782.  
  783. <div id="container">
  784.  
  785. <div id="sidebar">
  786.  
  787. <div id="sidebarimage">
  788. <a href="/"><img src="{image:sidebar}"></a></div>
  789.  
  790. <div class="sidebartitle">{text:sidebartitle}</div>
  791.  
  792. <div id="alinks">
  793. <a href="{text:link1 url}" title="refresh.">1.</a></div>
  794.  
  795. <div id="blinks">
  796. <a href="#?w=400" rel="box1" class="poplight" a title="ask.">2.</a></div>
  797.  
  798. <div id="clinks">
  799. <a href="http://draconisa.tumblr.com/tagged/LOOKS%20LIKE%20A%20GIRL%20BUT%20SHE'S%20A%20FLAME.%20(%20dany%20)" title="crown princess.">3.</a></div>
  800.  
  801. <div id="dlinks">
  802. <a href="http://draconisa.tumblr.com/tagged/dany%20likes;%20luxury" title="indulgences.">4.</a></div>
  803.  
  804. <div id="elinks">
  805. <a href="http://draconisa.tumblr.com/tagged/blood%20of%20old%20valyria;" title="valyrian.">5.</a></div>
  806.  
  807.  
  808.  
  809.  
  810.  
  811. </div>
  812.  
  813. <div id="entries">{block:Posts}<div id="post">
  814.  
  815. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  816.  
  817. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  818.  
  819. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  820.  
  821. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  822.  
  823. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  824.  
  825. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}{hw}
  826.  
  827. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}<br>{block:TrackName}&nbsp;&nbsp;&nbsp;&nbsp; {TrackName}{/block:TrackName}
  828. {block:Artist} &nbsp;—&nbsp; {Artist} {/block:Artist}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  829.  
  830. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  831.  
  832. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}" style="margin-left:7px;margin-right:13px;border:1px solid #e3e3e3;padding:2px;"></div> <em>{Asker}:</em><br> "{Question}"<br><br>{Answer}{/block:Answer}
  833.  
  834. {block:Date}<div id="info"> <a title="{TimeAgo}" href="{Permalink}">{Month} &nbsp;{DayOfMonth}</a>
  835. {/block:Date} {block:NoteCount}&nbsp; ( <font color=#729aaa>♥</font> <a href="{Permalink}">{NoteCount}</a> ) {/block:NoteCount}
  836.  
  837. {block:RebloggedFrom}&nbsp; <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a> {/block:RebloggedFrom}{block:ContentSource} &nbsp; / &nbsp; <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource} {/block:RebloggedFrom} &nbsp; <a href="{ReblogURL}"target="_blank" title="reblog this post"><big>+</big> </a>
  838. </div>
  839.  
  840.  
  841. {block:HasTags}
  842. <div class="tags">
  843. {block:Tags} <a href="{TagURL}"> {Tag}, &nbsp; </a> {/block:Tags}</div>
  844. {/block:HasTags}
  845. <div class="postnote">
  846. {block:PostNotes}{PostNotes}{/block:PostNotes}
  847. </div>
  848. </div>
  849. {/block:Posts}
  850.  
  851. <div id="pagination">
  852. <center>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">←&nbsp;&nbsp;&nbsp; future</a>{/block:PreviousPage} &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {block:NextPage}<a href="{NextPage}">past&nbsp;&nbsp;&nbsp; →</a><br />{/block:NextPage}{/block:Pagination}</div></center></div>
  853.  
  854.  
  855. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</a></div></div>
  856.  
  857.  
  858. </body>
  859. <div id="box1" class="popup_block">
  860. <h2>message.</h2><iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/draconisa.tumblr.com" width="100%"></iframe>
  861. </div>
  862. </div>
  863.  
  864.  
  865.  
  866.  
  867. </div></div></div></div></div></div></div></div></div></div>
  868. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement