Advertisement
lojsan7

hati 2

Feb 25th, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.68 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="https://format-com-cld-res.cloudinary.com/image/upload/s--Oj5Knynw--/c_limit,g_center,h_16,w_16/a_auto,fl_keep_iptc.progressive,q_95/133147-10026297-crescentmoon_favicon.ico">
  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="#6e6c6c">
  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. <meta name="image:thekey" content=""/>
  57.  
  58. <meta name="text:link1" content="" />
  59. <meta name="text:link1 url" content="/">
  60. <meta name="text:link2" content="" />
  61. <meta name="text:link2 url" content="/">
  62. <meta name="text:link3" content="" />
  63. <meta name="text:link3 url" content="/">
  64. <meta name="text:link4" content="" />
  65. <meta name="text:link4 url" content="/">
  66. <meta name="text:link5" content="" />
  67. <meta name="text:link5 url" content="/">
  68.  
  69.  
  70. <style type="text/css">
  71.  
  72.  
  73.  
  74. ::-webkit-scrollbar-thumb{
  75. background-color: transparent;
  76. border: 2px solid transparent;
  77. height:2px;
  78. }
  79.  
  80. ::-webkit-scrollbar {
  81. height:auto;
  82. width:2px;
  83. background-color: transparent;
  84. border:5px solid transparent;
  85. }
  86.  
  87.  
  88. iframe#tumblr_controls {
  89. white-space:nowrap;
  90. -webkit-filter: invert(100%);
  91. -moz-filter: invert(100%);
  92. -o-filter: invert(100%);
  93. -ms-filter: invert(100%);
  94. filter: invert(100%);
  95. opacity:.2;transition: .8s ease-in-out;
  96. -webkit-transition: .8s ease-in-out;
  97. -moz-transition: .8s ease-in-out;
  98. -o-transition: .8s ease-in-out;
  99. }
  100.  
  101. h1 {
  102. font-weight:normal;
  103. font-size:17px;
  104. text-align:center;
  105. font-style:normal;
  106. line-height:100%;
  107. letter-spacing:1px;
  108. text-transform:normal;
  109. color:{color:text};
  110. }
  111.  
  112. h2 {
  113. font-size:21px;
  114. text-align:center;
  115. line-height:100%;
  116. letter-spacing:-0.5px;
  117. color:#444343;
  118. text-shadow:1px 1px 15px #022e40;
  119. font-weight:bold;
  120. text-transform:uppercase;
  121. padding:5px;
  122. padding-bottom:2px;
  123. }
  124.  
  125.  
  126. blockquote {
  127. border-left:1px solid #212121;
  128. padding:17px;
  129. margin:10px 2px 0px 10px
  130. background-color:#414141;
  131. }
  132.  
  133. body {
  134. background:{color:background};
  135. background-image: url('http://i.imgur.com/yFJWnqf.png');
  136. background-repeat: no-repeat;
  137. background-size: center;
  138. background-attachment: fixed;
  139. position: absolute;
  140. margin-left:700px;
  141. color:{color:text};
  142. font-family:times new roman;
  143. font-size:14px;
  144. line-height:100%;
  145. }
  146.  
  147. b,bold,strong {
  148. color:#c9ccc8;
  149. font-family:times;
  150. font-size:16px;
  151. text-shadow: 1px 1px 1px #bdcbb9;
  152. }
  153.  
  154. i,em,italic {
  155. color:#999999;
  156. font-family:times;
  157. font-size:16px;
  158. text-shadow: 1.5px 1.5px 1px #ffffff;
  159. }
  160.  
  161. a {
  162. text-decoration:none;
  163. text-transform:uppercase;
  164. text-shadow: 0 0 0.3em ;
  165. color: #eeeeee;
  166. outline:none;
  167. -moz-outline-style:none;
  168. color:{color:link};
  169. -moz-transition-duration:0.5s;
  170. -webkit-transition-duration:0.5s;
  171. -o-transition-duration:0.5s;
  172. }
  173.  
  174. a:hover {
  175. text-decoration:none;
  176. outline:none;
  177. -moz-outline-style:none;
  178. color:{color:link hover};
  179. }
  180.  
  181. img {
  182. border:none;
  183. }
  184.  
  185.  
  186. #post {
  187. width:370px;
  188. margin-top:0px;
  189. margin-bottom:50px;
  190. opacity:0.8;
  191. -webkit-transition: all 0.6s ease-in-out;
  192. -moz-transition: all 0.6s ease-in-out;
  193. -o-transition: all 0.6s ease-in-out;
  194. -ms-transition: all 0.6s ease-in-out;
  195. transition: all 0.6s ease-in-out;
  196. -webkit-filter:grayscale(100%);
  197. -webkit-transition: all 0.6s ease-in-out;
  198. }
  199.  
  200. #post:hover{
  201. -webkit-filter:none;
  202. -webkit-transition: all 0.6s ease-in-out;
  203. opacity:1;
  204. -webkit-transition: all 0.6s ease-in-out;
  205. -moz-transition: all 0.6s ease-in-out;
  206. -o-transition: all 0.6s ease-in-out;
  207. -ms-transition: all 0.6s ease-in-out;
  208. transition: all 0.6s ease-in-out;
  209. }
  210.  
  211. #container {margin: auto;
  212. position:fixed;
  213. width: 900px;}
  214.  
  215.  
  216. #entries {
  217. padding:10px;
  218. left:493px;
  219. top:70px;
  220. position:fixed;
  221. background-color:transparent;
  222. width:370px;
  223. height:300px;
  224. top:130px;
  225. padding: 20px;
  226. overflow-x:scroll;
  227. scroll:left;
  228. overflow-x:hidden;
  229. }
  230.  
  231.  
  232. #theme {
  233. width:250px;
  234. margin:0 auto -12px auto;
  235. }
  236.  
  237. #sidebar {
  238. color:{color:text};
  239. width:100px;
  240. height:auto;
  241. margin-top:90px;
  242. margin-left:165px;
  243. text-align:left;
  244. }
  245.  
  246. #sidebarimage img {
  247. width:100px;
  248. opacity:.9;
  249. margin-top:-10px;
  250. margin-bottom:0px;
  251. margin-left:43px;
  252. }
  253.  
  254. #actualnews {
  255. font-family:times;
  256. font-size:10px;
  257. color: #b8b8b8;
  258. width:170px;
  259. height:390;
  260. padding-top:40px;
  261. border:0px solid#000000;
  262. margin-left: -390px;
  263. margin-top:80px;
  264. text-align:center;
  265. position:fixed;
  266. overflow-y:scroll;
  267. overflow-x:hidden;
  268. }
  269.  
  270. #thekey img{
  271. width:60px;
  272. margin-top: -40px;
  273. margin-left: 45px;
  274. position:fixed;
  275. }
  276.  
  277.  
  278. #alinks {
  279. font-family:'Minion Pro';
  280. width:220px;
  281. margin-top:150px;
  282. margin-left:-700px;
  283. font-size:20px;
  284. text-transform:uppercase;
  285. text-align:center;
  286. line-height:280%;
  287. }
  288.  
  289. #links a{
  290. line-height:280%;
  291. border-bottom:0px solid #fff;
  292. margin-top:4px;
  293. margin-left:10px;
  294. color: #d4d5d6;
  295. text-shadow:1px 1px 15px #feffff;
  296. -moz-transition-duration:.2s;
  297. -webkit-transition-duration:.2s;
  298. -o-transition-duration:.2s;
  299. }
  300.  
  301. #links a:hover {
  302. color: {color:link hover};
  303. width:60px;
  304. -moz-transition-duration:0.2s;
  305. -webkit-transition-duration:0.2s;
  306. -o-transition-duration:0.2s;
  307. }
  308.  
  309.  
  310. #blinks {
  311. font-family:'Minion Pro';
  312. width:220px;
  313. margin-top:-25px;
  314. margin-left:-700px;
  315. font-size:15px;
  316. text-transform:uppercase;
  317. text-align:center;
  318. line-height:280%;
  319. }
  320.  
  321. #links a{
  322. line-height:280%;
  323. border-bottom:0px solid #fff;
  324. margin-top:4px;
  325. margin-left:30px;
  326. color: #d4d5d6;
  327. text-shadow:1px 1px 15px #feffff;
  328. -moz-transition-duration:.2s;
  329. -webkit-transition-duration:.2s;
  330. -o-transition-duration:.2s;
  331. }
  332.  
  333. #links a:hover {
  334. color: {color:link hover};
  335. width:60px;
  336. -moz-transition-duration:0.2s;
  337. -webkit-transition-duration:0.2s;
  338. -o-transition-duration:0.2s;
  339. }
  340.  
  341.  
  342. #clinks {
  343. font-family:'Minion Pro';
  344. width:220px;
  345. margin-top:-20px;
  346. margin-left:-700px;
  347. font-size:15px;
  348. text-transform:uppercase;
  349. text-align:center;
  350. line-height:280%;
  351. }
  352.  
  353. #links a{
  354. line-height:280%;
  355. border-bottom:0px solid #fff;
  356. margin-top:4px;
  357. margin-left:30px;
  358. color: #d4d5d6;
  359. text-shadow:1px 1px 15px #feffff;
  360. -moz-transition-duration:.2s;
  361. -webkit-transition-duration:.2s;
  362. -o-transition-duration:.2s;
  363. }
  364.  
  365. #links a:hover {
  366. color: {color:link hover};
  367. width:60px;
  368. -moz-transition-duration:0.2s;
  369. -webkit-transition-duration:0.2s;
  370. -o-transition-duration:0.2s;
  371. }
  372.  
  373.  
  374. #dlinks {
  375. font-family:'Minion Pro';
  376. width:220px;
  377. margin-top:-19px;
  378. margin-left:-700px;
  379. font-size:15px;
  380. text-transform:uppercase;
  381. text-align:center;
  382. line-height:280%;
  383. }
  384.  
  385. #links a{
  386. line-height:280%;
  387. border-bottom:0px solid #fff;
  388. margin-top:4px;
  389. margin-left:30px;
  390. color: #d4d5d6;
  391. text-shadow:1px 1px 15px #feffff;
  392. -moz-transition-duration:.2s;
  393. -webkit-transition-duration:.2s;
  394. -o-transition-duration:.2s;
  395. }
  396.  
  397. #links a:hover {
  398. color: {color:link hover};
  399. width:60px;
  400. -moz-transition-duration:0.2s;
  401. -webkit-transition-duration:0.2s;
  402. -o-transition-duration:0.2s;
  403. }
  404.  
  405.  
  406. #elinks {
  407. font-family:'Minion Pro';
  408. width:220px;
  409. margin-top:-5px;
  410. margin-left:-700px;
  411. font-size:15px;
  412. text-transform:uppercase;
  413. text-align:center;
  414. line-height:280%;
  415. }
  416.  
  417. #links a{
  418. line-height:280%;
  419. border-bottom:0px solid #fff;
  420. margin-top:4px;
  421. margin-left:30px;
  422. color: #d4d5d6;
  423. text-shadow:1px 1px 15px #feffff;
  424. -moz-transition-duration:.2s;
  425. -webkit-transition-duration:.2s;
  426. -o-transition-duration:.2s;
  427. }
  428.  
  429. #links a:hover {
  430. color: {color:link hover};
  431. width:60px;
  432. -moz-transition-duration:0.2s;
  433. -webkit-transition-duration:0.2s;
  434. -o-transition-duration:0.2s;
  435. }
  436.  
  437. #flinks {
  438. font-family:'Minion Pro';
  439. width:220px;
  440. margin-top:-15px;
  441. margin-left:-700px;
  442. font-size:15px;
  443. text-transform:uppercase;
  444. text-align:center;
  445. line-height:280%;
  446. }
  447.  
  448. #links a{
  449. line-height:280%;
  450. border-bottom:0px solid #fff;
  451. margin-top:4px;
  452. margin-left:30px;
  453. color: #d4d5d6;
  454. text-shadow:1px 1px 15px #feffff;
  455. -moz-transition-duration:.2s;
  456. -webkit-transition-duration:.2s;
  457. -o-transition-duration:.2s;
  458. }
  459.  
  460. #links a:hover {
  461. color: {color:link hover};
  462. width:60px;
  463. -moz-transition-duration:0.2s;
  464. -webkit-transition-duration:0.2s;
  465. -o-transition-duration:0.2s;
  466. }
  467.  
  468.  
  469. .sidebartitle {
  470. width:300px;
  471. text-align:center;
  472. font-family:'californian fb';
  473. line-height:120%;
  474. margin-left:-58px;
  475. word-spacing:2px;
  476. font-style:italic;
  477. font-size:16px;
  478. margin-top:10px;
  479. color:{color:title};
  480. }
  481.  
  482. #pagination {
  483. font-family:corbel;
  484. width:250px;
  485. font-size:9px;
  486. margin-top:25px;
  487. margin-left:-8px;
  488. padding-left:5px;
  489. letter-spacing:1px;
  490. text-align:center;
  491. text-transform:uppercase;
  492. }
  493.  
  494. #pagination a {
  495. color:{color:link};
  496. }
  497.  
  498. #info {
  499. font-family:times;
  500. width:370px;
  501. margin-top:8px;
  502. padding-top:4px;
  503. font-size:10px;
  504. border-top:1px solid #ddd;
  505. opacity:0;
  506. color:{color:text};
  507. text-transform:uppercase;
  508. font-style:normal;
  509. text-align:left;
  510. -moz-transition-duration:0.5s;
  511. -webkit-transition-duration:0.5s;
  512. -o-transition-duration:0.5s;
  513. background-image:url('{image:info image}');
  514. border: 1px solid #595a59;
  515. border-radius: 0px;
  516. }
  517.  
  518. #info a {
  519. color:{color:link};
  520. }
  521.  
  522. #info a:hover {
  523. color:{color:link hover};
  524. }
  525.  
  526. .tags {
  527. font-family:times;
  528. font-style:normal;
  529. width:370px;
  530. margin-top:4px;
  531. text-transform:normal;
  532. font-style:normal;
  533. line-height:120%;
  534. padding-top:0px;
  535. font-size:8px;
  536. opacity:0;
  537. letter-spacing:1px;
  538. text-align:left;
  539. -moz-transition-duration:0.5s;
  540. -webkit-transition-duration:0.5s;
  541. -o-transition-duration:0.5s;
  542. }
  543. .tags a{
  544. color:{color:link};
  545. -moz-transition-duration:0.2s;
  546. -webkit-transition-duration:0.2s;
  547. -o-transition-duration:0.2s;
  548. }
  549. .tags a:hover{
  550. color:{color:link hover};
  551. -moz-transition-duration:0.2s;
  552. -webkit-transition-duration:0.2s;
  553. -o-transition-duration:0.2s;
  554. }
  555.  
  556. #post:hover #info{
  557. opacity:1;
  558. -moz-transition-duration:1s;
  559. -webkit-transition-duration:1s;
  560. -o-transition-duration:1s;
  561. }
  562. #post:hover .tags{
  563. opacity:1;
  564. -moz-transition-duration:1s;
  565. -webkit-transition-duration:1s;
  566. -o-transition-duration:1s;
  567. }
  568.  
  569. /*audio*/
  570. .albumart img {
  571. width: 70px;
  572. padding: 3px;
  573. border: 1px solid {color:border};
  574. }
  575.  
  576. .albumart {
  577. text-align: center;
  578. }
  579.  
  580. .audio {
  581. margin-bottom: 5px;
  582. width: 370px;
  583. }
  584.  
  585. #ask {
  586. float:left;
  587. color:{color:text};
  588. }
  589.  
  590. #credit {
  591. font-size:9px;
  592. font-family:cambria;
  593. font-style:italic;
  594. letter-spacing:1px;
  595. -moz-transition-duration:0.5s;
  596. -webkit-transition-duration:0.5s;
  597. -o-transition-duration:0.5s;
  598. }
  599.  
  600. #credit a {
  601. background-color:#fff;
  602. padding:5px;
  603. border:1px solid #e9e9e9;
  604. position:fixed;
  605. right:15px;
  606. bottom:25px
  607. }
  608.  
  609. #credit a:hover {
  610. color:#fff;
  611. background-color:#191919;
  612. }
  613.  
  614. {CustomCSS}
  615.  
  616.  
  617. #post img{
  618.  
  619. opacity:0.8;
  620.  
  621. -webkit-transition: all 0.6s ease-in-out;
  622.  
  623. -moz-transition: all 0.6s ease-in-out;
  624.  
  625. -o-transition: all 0.6s ease-in-out;
  626.  
  627. -ms-transition: all 0.6s ease-in-out;
  628.  
  629. transition: all 0.6s ease-in-out;
  630.  
  631. }
  632.  
  633. #post img:hover{
  634.  
  635. opacity:1;
  636.  
  637. -webkit-transition: all 0.6s ease-in-out;
  638.  
  639. -moz-transition: all 0.6s ease-in-out;
  640.  
  641. -o-transition: all 0.6s ease-in-out;
  642.  
  643. -ms-transition: all 0.6s ease-in-out;
  644.  
  645. transition: all 0.6s ease-in-out;
  646.  
  647. }
  648.  
  649.  
  650. .popup_block {
  651. display:none;
  652. background:#000000;
  653. padding:20px;
  654. border:1px solid #000000; /* if you want a solid white pop-up, delete this */
  655. float:left;
  656. position:fixed;
  657. left: 670px;
  658. top:340px;
  659. max-width: 355px;
  660. height: 340px;
  661. overflow-y:scroll;
  662. overflow-x:hidden;
  663. z-index: 99999;
  664. }
  665.  
  666. *html #fade {position: absolute;}
  667. *html .popup_block {position: absolute;}
  668. #fade {
  669. display:none;
  670. position:fixed;
  671. left:0px;
  672. top:0px;
  673. width:100%;
  674. height:100%;
  675. z-index:9999;
  676. background:#000; /* change to #fff for solid white */
  677. opacity:0; /* change to opacity:1; */
  678. }
  679.  
  680.  
  681. </style><!--------------- TYPING/MOVING TITLE ----------------------->
  682.  
  683. <script type="text/javascript">
  684. var rev = "fwd";
  685. function titlebar(val)
  686. {
  687. var msg = "HATRED.";
  688. var res = " ";
  689. var speed = 100;
  690. var pos = val;
  691. msg = "HATRED.";
  692. var le = msg.length;
  693. if(rev == "fwd"){
  694. if(pos < le){
  695. pos = pos+1;
  696. scroll = msg.substr(0,pos);
  697. document.title = scroll;
  698. timer = window.setTimeout("titlebar("+pos+")",speed);}
  699. else{
  700. rev = "bwd";
  701. timer = window.setTimeout("titlebar("+pos+")",speed);}}
  702. else{
  703. if(pos > 0){
  704. pos = pos-1;
  705. var ale = le-pos;
  706. scrol = msg.substr(ale,le);
  707. document.title = scrol;
  708. timer = window.setTimeout("titlebar("+pos+")",speed);}
  709. else{
  710. rev = "fwd";
  711. timer = window.setTimeout("titlebar("+pos+")",speed);
  712. }}}
  713. titlebar(0);
  714. </script></head><body>
  715.  
  716. <div id="bite">
  717. <div id="thekey"><img src="{image:thekey}"></div>
  718. <div class="death">
  719. <div id="actualnews">
  720. <em><small><small>‘ —— I DON'T COME FROM HELL. <BR />
  721. <BR />
  722.  
  723. I COME FROM THE
  724. FOREST. ‘</small> </small></em><br /><br />
  725. <img src="http://i.imgur.com/9S8zSNL.png" height="5" width="100"><br><br />
  726. independent, private & selective rp account for háti hróthvítnir of nordic myth.<br /><EM>written by ida.</EM><br /> est march, 2016. <BR /><BR/><img src="http://i.imgur.com/9S8zSNL.png" height="5" width="100"><br><br />
  727. nsfw <em>&</em> triggering. <br />read rules and about before interacting.<BR /><BR/><img src="http://i.imgur.com/9S8zSNL.png" height="5" width="100"><br><br /><a href="http://notherbody.tumblr.com/">theme credit.</a><br /><strong><small>#VARGKONUNG</small></strong>
  728. </div>
  729. </div></div>
  730.  
  731.  
  732. </div>
  733.  
  734. <div id="theme">
  735.  
  736. <div id="container">
  737.  
  738. <div id="sidebar">
  739.  
  740. <div id="sidebarimage">
  741. <a href="/"><img src="{image:sidebar}"></a></div>
  742.  
  743. <div class="sidebartitle">{text:sidebartitle}</div>
  744.  
  745. <div id="alinks">
  746. <a href="{text:link1 url}" title="FOREST.">1</a></div>
  747.  
  748. <div id="blinks">
  749. <a href="#?w=400" rel="box1" class="poplight" a title="GROWL.">2</a></div>
  750.  
  751. <div id="clinks">
  752. <a href="#?w=400" rel="box2" class="poplight"a title="LAW.">3</a></div>
  753.  
  754. <div id="dlinks">
  755. <a href="#?w=400" rel="box3" class="poplight"a title="VARGR.">4</a></div>
  756.  
  757. <div id="flinks">
  758. <a href="http://vargkonung.tumblr.com/archive" title="PAST.">5</a></div>
  759.  
  760.  
  761.  
  762.  
  763. </div>
  764.  
  765. <div id="entries">{block:Posts}<div id="post">
  766.  
  767. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  768.  
  769. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-400}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  770.  
  771. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  772.  
  773. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  774.  
  775. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  776.  
  777. {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}
  778.  
  779. {block:Audio}<div class="capt">
  780. <div class="albumart">{block:AlbumArt}<img src="{AlbumArtURL}" width="100">{/block:AlbumArt}</div>
  781. <div class="audio"><div id="play">
  782. <div class="button">{AudioPlayerBlack}</div></div>
  783. <div style="padding-top: 20px; {block:ifnot500pxposts}width: 400px;{/block:ifnot500pxposts} {block:if500pxposts}width: 416px;{/block:if500pxposts} text-align: center; padding-bottom: 20px; border: 1px solid {color:border}; max-height: 70px;"><b>Track:</b> {block:TrackName}{TrackName}{/block:TrackName}<br>
  784. <b>Artist:</b> {block:Artist}{Artist}{/block:Artist}<br>
  785. <b>Album:</b> {block:Album}{Album}{/block:Album}</div></div>
  786. {block:Caption}{Caption}{/block:Caption}</div>{/block:Audio}
  787.  
  788. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  789.  
  790. {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}
  791.  
  792. {block:Date}<div id="info"> <a title="{TimeAgo}" href="{Permalink}">{Month} &nbsp;{DayOfMonth}</a>
  793. {/block:Date} {block:NoteCount}&nbsp; ( <font color=#5d914e>♥</font> <a href="{Permalink}">{NoteCount}</a> ) {/block:NoteCount}
  794.  
  795. {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>
  796. </div>
  797.  
  798.  
  799. {block:HasTags}
  800. <div class="tags">
  801. {block:Tags} <a href="{TagURL}"> {Tag}, &nbsp; </a> {/block:Tags}</div>
  802. {/block:HasTags}
  803. <div class="postnote">
  804. {block:PostNotes}{PostNotes}{/block:PostNotes}
  805. </div>
  806. </div>
  807. {/block:Posts}
  808.  
  809. <div id="pagination">
  810. <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>
  811.  
  812.  
  813. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</a></div></div>
  814.  
  815.  
  816. </body>
  817. <div id="box1" class="popup_block">
  818. <h2>message.</h2><iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/vargkonung.tumblr.com" width="100%"></iframe>
  819. </div>
  820. </div>
  821.  
  822. <div id="box2" class="popup_block">
  823. <p>insert page html</p>
  824. </div>
  825. </div>
  826.  
  827. <div id="box3" class="popup_block">
  828. <p>insert page html</p>
  829. </div>
  830. </div>
  831.  
  832. <div id="box4" class="popup_block">
  833. <p>insert page html</p>
  834. </div>
  835. </div>
  836.  
  837. </div>
  838. </div>
  839. </div></div></div></div></div></div></div></div></div></div>
  840. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement