lojsan7

maddietheme1

May 2nd, 2015
255
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.98 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. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head>
  4.  
  5. <script type="text/javascript"
  6. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  7. <script>
  8. $(document).ready(function() {
  9. //
  10. $('a.poplight[href^=#]').click(function() {
  11. var popID = $(this).attr('rel'); //Get Popup Name
  12. var popURL = $(this).attr('href'); //Get Popup href to define size
  13. var query= popURL.split('?');
  14. var dim= query[1].split('&');
  15. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  16. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  17. var popMargTop = ($('#' + popID).height() + 100) / 2;
  18. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  19. //Apply Margin to Popup
  20. $('#' + popID).css({
  21. 'margin-top' : -popMargTop,
  22. 'margin-left' : -popMargLeft
  23. });
  24. $('body').append('<div id="fade"></div>');
  25. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  26. return false;
  27. });
  28. $('a.close, #fade').live('click', function() {
  29. $('#fade , .popup_block').fadeOut(function() {
  30. $('#fade, a.close').remove(); //fade them both out
  31. });
  32. return false;
  33. });
  34. });
  35. </script>
  36.  
  37. <script type="text/javascript"
  38. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  39. <script>
  40. $(document).ready(function() {
  41. //
  42. $('a.poplight[href^=#]').click(function() {
  43. var popID = $(this).attr('rel'); //Get Popup Name
  44. var popURL = $(this).attr('href'); //Get Popup href to define size
  45. var query= popURL.split('?');
  46. var dim= query[1].split('&');
  47. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  48. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://i.imgur.com/7GzHu3h.png" class="btn_close" title="Close" alt="Close" /></a>');
  49. var popMargTop = ($('#' + popID).height() + 80) / 2;
  50. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  51. //Apply Margin to Popup
  52. $('#' + popID).css({
  53. 'margin-top' : -popMargTop,
  54. 'margin-left' : -popMargLeft
  55. });
  56. $('body').append('<div id="fade"></div>');
  57. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  58. return false;
  59. });
  60. $('a.close, #fade').live('click', function() {
  61. $('#fade , .popup_block').fadeOut(function() {
  62. $('#fade, a.close').remove(); //fade them both out
  63. });
  64. return false;
  65. });
  66. });
  67. </script>
  68. <title>{Title}</title>
  69. <link rel="shortcut icon" href="{Favicon}">
  70. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  71. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  72.  
  73. <!---- this is theme 44 by Hollywhood
  74. please don't remove the credit
  75. thank you
  76. --->
  77.  
  78. <meta name="color:Background" content="#ffffff"/>
  79. <meta name="color:Text" content="#9B9B9B"/>
  80. <meta name="color:Link" content="#b8b8b8"/>
  81. <meta name="color:scrollbar" content="#ffffff">
  82. <meta name="color:title" content="#999999">
  83. <meta name="color:Link Hover" content="#eeeeee"/>
  84.  
  85. <meta name="image:sidebar" content=""/>
  86. <meta name="text:sidebartitle" content="">
  87.  
  88. <meta name="text:link1" content="" />
  89. <meta name="text:link1 url" content="/">
  90. <meta name="text:link2" content="" />
  91. <meta name="text:link2 url" content="/">
  92. <meta name="text:link3" content="" />
  93. <meta name="text:link3 url" content="/">
  94. <meta name="text:link4" content="" />
  95. <meta name="text:link4 url" content="/">
  96. <meta name="text:link5" content="" />
  97. <meta name="text:link5 url" content="/">
  98.  
  99.  
  100. <style type="text/css">
  101.  
  102. .popup_block{
  103. display:none;
  104. background:#fff;
  105. padding:20px;
  106. border:1px solid #eee; /* if you want a solid white pop-up, delete this */
  107. float:left;
  108. position:fixed;
  109. top:50%;left:50%;
  110. z-index: 99999;
  111. -webkit-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  112. -moz-box-shadow: 0px 0px 20px #000; /* delete for solid white */
  113. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  114. }
  115.  
  116. *html #fade {position: absolute;}
  117. *html .popup_block {position: absolute;}
  118. #fade {
  119. display:none;
  120. position:fixed;
  121. left:0px;
  122. top:0px;
  123. width:100%;
  124. height:100%;
  125. z-index:9999;
  126. background:#000; /* change to #fff for solid white */
  127. opacity:0.5; /* change to opacity:1; */
  128. }
  129.  
  130. ::-webkit-scrollbar-thumb{
  131. background-color: #151313;
  132. border: 2px solid transparent;
  133. height:5px;
  134. }
  135.  
  136. ::-webkit-scrollbar {
  137. height:auto;
  138. width:11px;
  139. background-color: transparent;
  140. border:5px solid transparent;
  141. }
  142.  
  143.  
  144. iframe#tumblr_controls {
  145. white-space:nowrap;
  146. -webkit-filter: invert(100%);
  147. -moz-filter: invert(100%);
  148. -o-filter: invert(100%);
  149. -ms-filter: invert(100%);
  150. filter: invert(100%);
  151. opacity:.2;transition: .8s ease-in-out;
  152. -webkit-transition: .8s ease-in-out;
  153. -moz-transition: .8s ease-in-out;
  154. -o-transition: .8s ease-in-out;
  155. }
  156.  
  157. h1 {
  158. font-weight:normal;
  159. font-size:15px;
  160. text-align:center;
  161. font-style:normal;
  162. line-height:100%;
  163. letter-spacing:1px;
  164. text-transform:normal;
  165. color:{color:text};
  166. }
  167.  
  168. h2 {
  169. font-size:22px;
  170. text-align:center;
  171. line-height:100%;
  172. letter-spacing:-0.5px;
  173. color:#f8d0808;
  174. text-shadow:1px 1px 15px #d9b8b8;
  175. font-weight:bold;
  176. text-transform:uppercase;
  177. padding:5px;
  178. padding-bottom:2px;
  179. }
  180.  
  181.  
  182. blockquote {
  183. border-left:1px solid #a35178;
  184. padding:17px;
  185. margin:10px 2px 0px 10px
  186. background-color:#a35178;
  187. }
  188.  
  189. body {
  190. background:{color:background};
  191. background-image: url('http://i.imgur.com/SqTS8EJ.png');
  192. background-repeat: no-repeat;
  193. background-size: center;
  194. background-attachment: fixed;
  195. position: absolute;
  196. margin-left:720px;
  197. color:{color:text};
  198. font-family:arno pro;
  199. font-size:14px;
  200. line-height:100%;
  201. }
  202.  
  203. b,bold,strong {
  204. color:#1e1b1b;
  205. font-family:times;
  206. font-size:16px;
  207. text-shadow: 1px 1px 15px #5a1414;
  208. }
  209.  
  210. i,em,italic {
  211. color:#7c7878;
  212. font-family:times;
  213. font-size:15px;
  214. text-shadow: 1px 1px 15px #ffffff;
  215. }
  216.  
  217. a {
  218. text-decoration:none;
  219. outline:none;
  220. -moz-outline-style:none;
  221. color:{color:link};
  222. -moz-transition-duration:0.5s;
  223. -webkit-transition-duration:0.5s;
  224. -o-transition-duration:0.5s;
  225. }
  226.  
  227. a:hover {
  228. text-decoration:none;
  229. outline:none;
  230. -moz-outline-style:none;
  231. color:{color:link hover};
  232. }
  233.  
  234. img {
  235. border:none;
  236. }
  237.  
  238.  
  239. #post {
  240. width:300px;
  241. margin-top:0px;
  242. margin-bottom:50px;
  243. opacity:0.8;
  244. -webkit-filter:grayscale(100%);
  245. -webkit-transition: all 0.6s ease-in-out;
  246. -moz-transition: all 0.6s ease-in-out;
  247. -o-transition: all 0.6s ease-in-out;
  248. -ms-transition: all 0.6s ease-in-out;
  249. transition: all 0.6s ease-in-out;
  250. }
  251.  
  252. #post:hover{
  253. -webkit-filter:none;
  254. -webkit-transition: all 0.6s ease-in-out;
  255. opacity:1;
  256. -webkit-transition: all 0.6s ease-in-out;
  257. -moz-transition: all 0.6s ease-in-out;
  258. -o-transition: all 0.6s ease-in-out;
  259. -ms-transition: all 0.6s ease-in-out;
  260. transition: all 0.6s ease-in-out;
  261. }
  262.  
  263. #container {margin: auto;
  264. position:fixed;
  265. width: 900px;}
  266.  
  267.  
  268. #entries {
  269. padding:10px;
  270. left:490px;
  271. top:80px;
  272. position:fixed;
  273. background-color:transparent;
  274. width:300px;
  275. height:250px;
  276. top:170px;
  277. padding: 20px;
  278. overflow-x:scroll;
  279. scroll:left;
  280. overflow-x:hidden;
  281. }
  282.  
  283.  
  284. #theme {
  285. width:250px;
  286. margin:0 auto -12px auto;
  287. }
  288.  
  289. #sidebar {
  290. color:{color:text};
  291. width:100px;
  292. height:auto;
  293. margin-top:90px;
  294. margin-left:165px;
  295. text-align:left;
  296. }
  297.  
  298. #sidebarimage img {
  299. width:100px;
  300. opacity:.9;
  301. margin-top:-10px;
  302. margin-bottom:0px;
  303. margin-left:43px;
  304. }
  305.  
  306. #links {
  307. font-family:'Gabriola';
  308. width:220px;
  309. margin-top:-60px;
  310. margin-left:-680px;
  311. font-size:30px;
  312. text-transform:uppercase;
  313. text-align:center;
  314. line-height:280%;
  315. }
  316.  
  317. #links a{
  318. line-height:280%;
  319. border-bottom:0px solid #fff;
  320. margin-top:4px;
  321. margin-left:13px;
  322. color: #201c1d;
  323. text-shadow:1px 1px 15px #a4a6ab;
  324. -moz-transition-duration:.2s;
  325. -webkit-transition-duration:.2s;
  326. -o-transition-duration:.2s;
  327. }
  328.  
  329. #links a:hover {
  330. color: {color:link hover};
  331. width:60px;
  332. -moz-transition-duration:0.2s;
  333. -webkit-transition-duration:0.2s;
  334. -o-transition-duration:0.2s;
  335. }
  336.  
  337. #description {
  338. width:300px;
  339. font-family:times;
  340. margin-top:-2px;
  341. margin-left:-58px;
  342. text-align:center;
  343. font-size:9px;
  344. color: {color:text};
  345. letter-spacing:0px;
  346. line-height:170%;
  347. -moz-transition-duration:1s;
  348. -webkit-transition-duration:1s;
  349. -o-transition-duration:1s;
  350. }
  351.  
  352. #description a {
  353. color:{color:link};
  354. }
  355.  
  356. #description a:hover {
  357. color:{color:link hover};
  358. }
  359.  
  360. .sidebartitle {
  361. width:300px;
  362. text-align:center;
  363. font-family:'californian fb';
  364. line-height:120%;
  365. margin-left:-58px;
  366. word-spacing:2px;
  367. font-style:italic;
  368. font-size:16px;
  369. margin-top:10px;
  370. color:{color:title};
  371. }
  372.  
  373. #pagination {
  374. font-family:corbel;
  375. width:250px;
  376. font-size:9px;
  377. margin-top:25px;
  378. margin-left:-8px;
  379. padding-left:5px;
  380. letter-spacing:1px;
  381. text-align:center;
  382. text-transform:uppercase;
  383. }
  384.  
  385. #pagination a {
  386. color:{color:link};
  387. }
  388.  
  389. #info {
  390. font-family:times;
  391. width:250px;
  392. margin-top:8px;
  393. padding-top:4px;
  394. font-size:10px;
  395. border-top:1px solid #382a2c;
  396. opacity:0;
  397. color:{color:text};
  398. text-transform:uppercase;
  399. font-style:normal;
  400. text-align:left;
  401. -moz-transition-duration:0.5s;
  402. -webkit-transition-duration:0.5s;
  403. -o-transition-duration:0.5s;
  404. }
  405.  
  406. #info a {
  407. color:{color:link};
  408. }
  409.  
  410. #info a:hover {
  411. color:{color:link hover};
  412. }
  413.  
  414. .tags {
  415. font-family:times;
  416. font-style:normal;
  417. width:250px;
  418. margin-top:4px;
  419. text-transform:normal;
  420. font-style:normal;
  421. line-height:120%;
  422. padding-top:0px;
  423. font-size:9px;
  424. opacity:0;
  425. letter-spacing:1px;
  426. text-align:left;
  427. -moz-transition-duration:0.5s;
  428. -webkit-transition-duration:0.5s;
  429. -o-transition-duration:0.5s;
  430. }
  431. .tags a{
  432. color:{color:link};
  433. -moz-transition-duration:0.2s;
  434. -webkit-transition-duration:0.2s;
  435. -o-transition-duration:0.2s;
  436. }
  437. .tags a:hover{
  438. color:{color:link hover};
  439. -moz-transition-duration:0.2s;
  440. -webkit-transition-duration:0.2s;
  441. -o-transition-duration:0.2s;
  442. }
  443.  
  444. #post:hover #info{
  445. opacity:1;
  446. -moz-transition-duration:1s;
  447. -webkit-transition-duration:1s;
  448. -o-transition-duration:1s;
  449. }
  450. #post:hover .tags{
  451. opacity:1;
  452. -moz-transition-duration:1s;
  453. -webkit-transition-duration:1s;
  454. -o-transition-duration:1s;
  455. }
  456.  
  457. .audio {
  458. background-color:#efa1a6;
  459. width:30px;
  460. height:30px;
  461. overflow:hidden;
  462. position:absolute;
  463. margin-top:45px;
  464. margin-bottom:45px;
  465. -moz-border-radius: 30px;
  466. -webkit-border-radius: 30px;
  467. border-radius: 30px;
  468. }
  469.  
  470.  
  471. #ask {
  472. float:left;
  473. color:{color:text};
  474. }
  475.  
  476. #credit {
  477. font-size:9px;
  478. font-family:cambria;
  479. font-style:italic;
  480. letter-spacing:1px;
  481. -moz-transition-duration:0.5s;
  482. -webkit-transition-duration:0.5s;
  483. -o-transition-duration:0.5s;
  484. }
  485.  
  486. #credit a {
  487. background-color:#fff;
  488. padding:5px;
  489. border:1px solid #e9e9e9;
  490. position:fixed;
  491. right:15px;
  492. bottom:10px
  493. }
  494.  
  495. #credit a:hover {
  496. color:#fff;
  497. background-color:#191919;
  498. }
  499.  
  500. {CustomCSS}
  501.  
  502.  
  503. .button {
  504. width: 150px;
  505. padding: 10px;
  506. background-color: #FF8C00;
  507. box-shadow: -8px 8px 10px 3px rgba(0,0,0,0.2);
  508. font-weight:bold; text-decoration:none; }
  509. #cover{ position:fixed;
  510. top:0;
  511. left:0;
  512. background:rgba(0,0,0,0.6);
  513. z-index:5;
  514. width:100%;
  515. height:100%;
  516. display:none;
  517. }
  518. #loginScreen
  519. {
  520. height:380px;
  521. width:340px;
  522. margin:0
  523. auto;
  524. position:relative;
  525. z-index:10;
  526. display:none;
  527. background: url(login.png) no-repeat;
  528. border:5px solid #cccccc;
  529. border-radius:10px;
  530. }
  531. #loginScreen:target,
  532. #loginScreen:target +
  533. #cover{ display:block; opacity:2;
  534. }
  535. .cancel
  536. {
  537. display:block;
  538. position:absolute;
  539. top:3px;
  540. right:2px;
  541. background:rgb(245,245,245);
  542. color:black;
  543. height:30px;
  544. width:35px;
  545. font-size:30px;
  546. text-decoration:none;
  547. text-align:center;
  548. font-weight:bold;
  549. }
  550.  
  551. /************** FLAGS UPDATES TAB **************/
  552. /* tutorial by deanlirium|tumblr (clarence.tk) */
  553.  
  554. #flags {
  555. position:fixed;
  556. top:20px; /* distance from the top of the page - adjust as you wish! */
  557. left:-10px;
  558. text-align:center;
  559. text-transform:uppercase; /* the text is in all caps - delete this line and it won't be */
  560. color:#8C8C8C; /* change text color: use sites like http://www.colorpicker.com/ or the tumblr thing, copy the code it gives you and paste it! remember the #! */
  561. font-size:10px; /* adjust font size */
  562. letter-spacing:1px;
  563. z-index:2147483607;
  564. font-family:calibri;}
  565.  
  566.  
  567. #flag1 {
  568. border:solid 6px #151313; /* flag color */
  569. border-right:solid 6px transparent; /* IMPORTANT! -- to make the flag thicker increase the border and border-right value; it looks better if they both have the same number! */
  570. padding-left:10px;
  571. width:20px; /* increase or decrease to change the lenght of the CLOSED flag */
  572. height:0px;
  573. position:absolute;
  574. -moz-transition:all 0.7s ease-out;
  575. -webkit-transition:all 0.7s ease-out;
  576. -o-transition:all 0.7s ease-out;}
  577.  
  578. #flag1:hover {
  579. width:180px;} /* lenght of the OPEN flag */
  580.  
  581. #upd1 {
  582. position:absolute;
  583. width:110px;
  584. padding:10px;
  585. padding-left:60px; /* adjust this if you've changed the length of the open flag, subtract what you add here to the 'left' value below */
  586. left:-180px;
  587. margin-top:6px; /* keep this number equal to the 'border' value for the flag */
  588. opacity:0;
  589. -moz-transition:all 0.7s ease-out;
  590. -webkit-transition:all 0.7s ease-out;
  591. -o-transition:all 0.7s ease-out;}
  592.  
  593. #flag1:hover #upd1{
  594. left:0px;
  595. opacity:1;}
  596.  
  597. /* following is the coding for the other flags - same as above! */
  598.  
  599. #flag2 {
  600. border:solid 6px #313131;
  601. margin-top:20px;
  602. position:absolute;
  603. border-right:solid 6px transparent;
  604. padding-left:10px;
  605. width:20px;
  606. height:0px;
  607. -moz-transition:all 0.7s ease-out;
  608. -webkit-transition:all 0.7s ease-out;
  609. -o-transition:all 0.7s ease-out;}
  610.  
  611. #flag2:hover {
  612. width:180px;}
  613.  
  614. #upd2 {
  615. position:absolute;
  616. width:110px;
  617. padding:10px;
  618. padding-left:60px;
  619. left:-180px;
  620. margin-top:6px;
  621. opacity:0;
  622. -moz-transition:all 0.7s ease-out;
  623. -webkit-transition:all 0.7s ease-out;
  624. -o-transition:all 0.7s ease-out;}
  625.  
  626. #flag2:hover #upd2{
  627. left:0px;
  628. opacity:1;}
  629.  
  630. /*if you want more flags, just copy the part of the code below and change the numbers - then increase the margin-top value for the #flag(number) adding 20px each new flag! copy from here: */
  631.  
  632. #flag3 {
  633. border:solid 6px #737272;
  634. position:absolute;
  635. margin-top:40px; /* this one! */
  636. border-right:solid 6px transparent;
  637. padding-left:10px;
  638. width:20px;
  639. height:0px;
  640. -moz-transition:all 0.7s ease-out;
  641. -webkit-transition:all 0.7s ease-out;
  642. -o-transition:all 0.7s ease-out;}
  643.  
  644. #flag3:hover {
  645. width:180px;}
  646.  
  647. #upd3 {
  648. position:absolute;
  649. width:110px;
  650. padding:10px;
  651. padding-left:60px;
  652. left:-180px;
  653. margin-top:6px;
  654. opacity:0;
  655. -moz-transition:all 0.7s ease-out;
  656. -webkit-transition:all 0.7s ease-out;
  657. -o-transition:all 0.7s ease-out;}
  658.  
  659. #flag3:hover #upd3{
  660. left:0px;
  661. opacity:1;}
  662.  
  663. /* to here */
  664.  
  665. #post img{
  666.  
  667. opacity:0.8;
  668.  
  669. -webkit-transition: all 0.6s ease-in-out;
  670.  
  671. -moz-transition: all 0.6s ease-in-out;
  672.  
  673. -o-transition: all 0.6s ease-in-out;
  674.  
  675. -ms-transition: all 0.6s ease-in-out;
  676.  
  677. transition: all 0.6s ease-in-out;
  678.  
  679. }
  680.  
  681. #post img:hover{
  682.  
  683. opacity:1;
  684.  
  685. -webkit-transition: all 0.6s ease-in-out;
  686.  
  687. -moz-transition: all 0.6s ease-in-out;
  688.  
  689. -o-transition: all 0.6s ease-in-out;
  690.  
  691. -ms-transition: all 0.6s ease-in-out;
  692.  
  693. transition: all 0.6s ease-in-out;
  694.  
  695. }
  696.  
  697. </style></head><body>
  698.  
  699. <div id="flags">
  700. <div id="flag1"><div id="upd1">
  701.  
  702. write here for the first flag
  703.  
  704. </div></div>
  705.  
  706. <div id="flag2"><div id="upd2">
  707.  
  708. here for the second flag
  709.  
  710. </div></div>
  711.  
  712. <!---- if you want more flags, copy from here ---->
  713.  
  714. <div id="flag3"><div id="upd3">
  715.  
  716. here for the third one
  717.  
  718. </div></div>
  719.  
  720. <!---- to here and change the numbers according to your css! ---->
  721.  
  722. <!---- thanks for passing by and using this tutorial you're raaaaaaaaad c: ---->
  723.  
  724. </div>
  725.  
  726. <div id="theme">
  727.  
  728. <div id="container">
  729.  
  730. <div id="sidebar">
  731.  
  732. <div id="sidebarimage">
  733. <a href="/"><img src="{image:sidebar}"></a></div>
  734.  
  735. <div class="sidebartitle">{text:sidebartitle}</div>
  736.  
  737. <div id="links">
  738. <a href="{text:link1 url}" title="{text:link1}">✕</a><br>
  739. <a href="#?w=300" rel="box1" class="poplight">✕</a><br>
  740. <a href="{text:link3 url}" title="{text:link3}">✕</a><br>
  741. <a href="{text:link4 url}" title="{text:link4}">✕</a><br>
  742. </a>
  743.  
  744. </div>
  745.  
  746. <div id="description">{description}</div>
  747.  
  748. </div>
  749.  
  750. <div id="entries">{block:Posts}<div id="post">
  751.  
  752. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  753.  
  754. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-250}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  755.  
  756. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  757.  
  758. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  759.  
  760. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  761.  
  762. {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}
  763.  
  764. {block:Audio}
  765. <div id="audioplayer">{AudioPlayerWhite} </div>
  766. <div id="albumart">{block:AlbumArt}<img src="{AlbumArtURL}" width="50">{/block:AlbumArt}</div>
  767. {PlayCountWithLabel}
  768. {block:caption}<div class="caption">{caption}</div>{/block:caption}
  769. {/block:Audio}
  770.  
  771. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  772.  
  773. {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}
  774.  
  775. {block:Date}<div id="info"> <a title="{TimeAgo}" href="{Permalink}">{Month} &nbsp;{DayOfMonth}</a>
  776. {/block:Date} {block:NoteCount}&nbsp; ( <font color=#f6c6cd>♥</font> <a href="{Permalink}">{NoteCount}</a> ) {/block:NoteCount}
  777.  
  778. {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>
  779. </div>
  780.  
  781.  
  782. {block:HasTags}
  783. <div class="tags">
  784. {block:Tags} <a href="{TagURL}"> {Tag}, &nbsp; </a> {/block:Tags}</div>
  785. {/block:HasTags}
  786. <div class="postnote">
  787. {block:PostNotes}{PostNotes}{/block:PostNotes}
  788. </div>
  789. </div>
  790. {/block:Posts}
  791.  
  792. <div id="pagination">
  793. <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>
  794.  
  795. </div>
  796. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</div> </div>
  797.  
  798. </body>
  799.  
  800. <div id="box1" class="popup_block">
  801. <h2>message</h2><iframe frameborder="0" height="300" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/lamourhaine.tumblr.com" width="100%"></iframe>
  802. </div>
  803.  
  804. </div></div></div></div></div></div></div></div></div></div>
  805.  
  806. </html>
Add Comment
Please, Sign In to add comment