Advertisement
Guest User

Untitled

a guest
Jan 26th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.87 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><title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  7.  
  8. <!---- this is theme 36 by Hollywhood
  9. please don't remove the credit
  10. --->
  11.  
  12. <script type="text/javascript"
  13. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  14. <script>
  15. $(document).ready(function() {
  16. //
  17. $('a.poplight[href^=#]').click(function() {
  18. var popID = $(this).attr('rel'); //Get Popup Name
  19. var popURL = $(this).attr('href'); //Get Popup href to define size
  20. var query= popURL.split('?');
  21. var dim= query[1].split('&');
  22. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  23. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  24. var popMargTop = ($('#' + popID).height() + 80) / 2;
  25. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  26. //Apply Margin to Popup
  27. $('#' + popID).css({
  28. 'margin-top' : -popMargTop,
  29. 'margin-left' : -popMargLeft
  30. });
  31. $('body').append('<div id="fade"></div>');
  32. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  33. return false;
  34. });
  35. $('a.close, #fade').live('click', function() {
  36. $('#fade , .popup_block').fadeOut(function() {
  37. $('#fade, a.close').remove(); //fade them both out
  38. });
  39. return false;
  40. });
  41. });
  42. </script>
  43.  
  44.  
  45. <meta name="color:Background" content="#ffffff"/>
  46. <meta name="color:Text" content="#9B9B9B"/>
  47. <meta name="color:Link" content="#b8b8b8"/>
  48. <meta name="color:scrollbar" content="#D6D5D5">
  49. <meta name="color:Link Hover" content="#eeeeee"/>
  50. <meta name="image:sidebar" content=""/>
  51. <meta name="text:link 1" content="Link 1"/>
  52. <meta name="text:link 1 url" content="/"/>
  53. <meta name="text:link 2" content="Link 2"/>
  54. <meta name="text:link 2 url" content="/"/>
  55. <meta name="text:link 3" content="Link 3"/>
  56. <meta name="text:link 3 url" content="/"/>
  57. <meta name="text:link 4" content="Link 4"/>
  58. <meta name="text:link 4 url" content="/"/>
  59. <meta name="text:link 5" content="Link 5"/>
  60. <meta name="text:link 5 url" content="/"/>
  61. <meta name="text:link 6" content="Link 6"/>
  62. <meta name="text:link 6 url" content="/"/>
  63.  
  64. <meta name="image:bg" content=""/>
  65. <meta name="image:thekey" content=""/>
  66.  
  67.  
  68.  
  69.  
  70. <script type=”text/javascript”>
  71. /* Photoset Resize Code by Kevin - EXCOLO.TUMBLR.COM */
  72. $(document).ready(function() {
  73. function photosetResize() {
  74. $(‘iframe.photoset’).each(function(){
  75. var newSize = 300;
  76. var newSrc = $(this).attr(‘src’).replace(‘500’,newSize);
  77. $(this).attr(‘src’, newSrc).width(newSize);
  78. var high = $(this).css(‘height’);
  79. var calculate = parseInt(high, 10)* newSize/500;
  80. $(this).css(‘height’, calculate);
  81. });
  82. }
  83. photosetResize();
  84. });
  85. </script>
  86.  
  87.  
  88.  
  89. <link href='http://fonts.googleapis.com/css?family=Megrim|Pathway+Gothic+One' rel='stylesheet' type='text/css'>
  90.  
  91. <style type="text/css">
  92.  
  93.  
  94. #bite
  95. #bite a{
  96. display:block
  97. }
  98. #bite .death {
  99. margin-top:0px;filter: alpha(opacity = 0);
  100. opacity:0;-webkit-transition: all 0.5s ease-out;
  101. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  102. }
  103.  
  104. #bite:hover .death {
  105. margin-top:0px;
  106. -webkit-transition: all 0.8s ease-out;
  107. -moz-transition: all 0.8s ease-out;
  108. transition: all 0.8s ease-out;
  109. filter: alpha(opacity = 100);
  110. filter: alpha(opacity = 100);
  111. opacity:100;
  112. }
  113.  
  114.  
  115.  
  116. ::-webkit-scrollbar-thumb{
  117. background-color: none;
  118. border: 2px solid none;
  119. height:auto;
  120. }
  121.  
  122. ::-webkit-scrollbar {
  123. height:auto;
  124. width:11px;
  125. background-color:none;
  126. border:5px solid none;
  127. }
  128.  
  129.  
  130. iframe#tumblr_controls {
  131. white-space:nowrap;
  132. -webkit-filter: invert(100%);
  133. -moz-filter: invert(100%);
  134. -o-filter: invert(100%);
  135. -ms-filter: invert(100%);
  136. filter: invert(100%);
  137. opacity:.2;transition: .8s ease-in-out;
  138. -webkit-transition: .8s ease-in-out;
  139. -moz-transition: .8s ease-in-out;
  140. -o-transition: .8s ease-in-out;
  141. }
  142.  
  143. h1 {
  144. font-weight:normal;
  145. font-size:13px;
  146. text-align:center;
  147. font-style:normal;
  148. line-height:100%;
  149. letter-spacing:1px;
  150. text-transform:normal;
  151. color:{color:text};
  152. }
  153.  
  154. h2 {
  155. font-size:10px;
  156. text-align:center;
  157. line-height:100%;
  158. letter-spacing:-0.5px;
  159. color:{color:text};
  160. font-weight:bold;
  161. text-transform:uppercase;
  162. padding:5px;
  163. padding-bottom:2px;
  164. }
  165.  
  166.  
  167. blockquote {
  168. padding:0 0 0 10px;
  169. border-left:3px solid #5e6a68;
  170. margin:0;
  171. text-align:left;
  172. border-radius: 7px 7px
  173. }
  174.  
  175.  
  176.  
  177. body {
  178. background:#e2dcd3;
  179.  
  180. background-attachment:fixed;
  181. background-image: url('http://static.tumblr.com/i7f0f4j/8Ornitmdq/jennmultibg.png');
  182. background-repeat:no-repeat;
  183.  
  184.  
  185.  
  186. margin:0px;
  187. color:#676367;
  188. font-family:times;
  189. font-size:15px;
  190. line-height:100%;
  191. }
  192.  
  193.  
  194.  
  195. b, strong {
  196. font-weight: bold; color:#553b40; font-size: 16px;}
  197. i, em {text-shadow:1px 1px 1px #000; text-transform: italic; color:#553b40;}
  198.  
  199.  
  200. a {
  201. text-decoration:none;
  202. outline:none;
  203. -moz-outline-style:none;
  204. color:{color:link};
  205. -moz-transition-duration:0.5s;
  206. -webkit-transition-duration:0.5s;
  207. -o-transition-duration:0.5s;
  208. }
  209.  
  210. a:hover {
  211. text-decoration:none;
  212. outline:none;
  213. -moz-outline-style:none;
  214. color:{color:link hover};
  215. }
  216.  
  217. img {
  218. border:none;
  219. }
  220.  
  221. blockquote {
  222. padding-left:5px;
  223. border-left:2px solid;
  224. }
  225.  
  226. blockquote blockquote {
  227. padding-left:5px;
  228. border-left:2px solid;
  229. }
  230.  
  231. #post {
  232. width:500px;
  233. padding-bottom:30px;
  234. margin-top:20px;
  235. }
  236.  
  237. #entries {
  238. width:510px;
  239. margin-left:430px;
  240. position:fixed;
  241. height:230px;
  242. overflow-x:hidden;
  243. overflow-y:auto;
  244. text-align:;
  245. padding:20px;
  246. line-height:170%;
  247. top:340px;
  248. background-color:;
  249. border-radius: 0px;
  250. border: 0px dotted #eee;;
  251.  
  252.  
  253. }
  254.  
  255. #sidebar {
  256. color:{color:text};
  257. position:fixed;
  258. width:91px;
  259. height:auto;
  260. margin-top:100px;
  261. margin-left:275px;
  262. text-align:left;
  263. }
  264.  
  265. #sidebar img {
  266. width:100px;
  267. height:100px;
  268. margin-top:0px;
  269. margin-bottom:5px;
  270. padding:-1px;
  271. outline-offset:4px;
  272. }
  273.  
  274.  
  275. #actualnews {
  276. font-family:calibri;
  277. font-size:10px;
  278. color: #b8b8b8;
  279. width:100px;
  280. height:auto;
  281. padding-top:3px;
  282. border:1px solid#b8b8b8;
  283. margin-left: 30px;
  284. margin-top:100px;
  285. text-align:center;
  286. position:fixed;
  287. }
  288.  
  289. #thekey img{
  290. width:60px;
  291. margin-top: 40px;
  292. margin-left: 45px;
  293. position:fixed;
  294. }
  295.  
  296. #links {
  297. text-shadow:0px 0px 0px #fff;
  298. position:fixed;
  299. font-family:trebuchet ms;
  300. width:300px;
  301. margin-top:360px;
  302. margin-left:60px;
  303. font-size:20px;
  304. text-transform:lowercase;
  305. text-align:right;
  306. line-height:200%;
  307. }
  308.  
  309. #links a{
  310. line-height:200%;
  311. padding:1px;
  312. margin-top:1px;
  313. margin-left:3px;
  314. text-decoration:none;
  315. text-shadow:1px 1px 15px #fff;
  316. color:#f0bdbe;
  317. -moz-transition-duration:.7s;
  318. -webkit-transition-duration:.7s;
  319. -o-transition-duration:.7s;
  320. }
  321.  
  322. #links a:hover {
  323. color: #fff;
  324. -moz-transition-duration:.4s;
  325. -webkit-transition-duration:.4s;
  326. -o-transition-duration:.4s;
  327.  
  328. }
  329.  
  330. #description {
  331. width:120px;
  332. font-family: 'times', sans-serif;
  333. margin-bottom:0px;
  334. margin-top:80px;
  335. margin-left:-155px;
  336. text-align:right;
  337. font-size:9px;
  338. color: #584953;
  339. line-height:145%;
  340. }
  341.  
  342. #description a {
  343. color:#999;
  344. }
  345.  
  346. #description a:hover {
  347. color:#fff;
  348. }
  349.  
  350. #pagination {
  351. font-family:trebuchet ms;
  352. width:100px;
  353. font-size:8px;
  354. text-transform:normal;
  355. margin-top:540px;
  356. margin-left:790px;
  357. position:fixed;
  358. padding-left:5px;
  359. letter-spacing:1px;
  360. font-style:normal;
  361. text-align:right;
  362. }
  363.  
  364. #pagination a {
  365. color:#000;
  366. }
  367.  
  368. #info {
  369. font-family:calibri;
  370. width:500px;
  371. margin-top:6px;
  372. padding-top:1px;
  373. word-spacing:1px;
  374. font-size:8px;
  375. color:{color:text};
  376. text-transform:uppercase;
  377. font-style:normal;
  378. text-align:left;
  379. border-top:1px solid #ccc;
  380. -moz-transition-duration:0.5s;
  381. -webkit-transition-duration:0.5s;
  382. -o-transition-duration:0.5s;
  383. }
  384.  
  385. #info a {
  386. margin-right:2px;
  387. color:{color:link};
  388. font-style:normal;
  389. }
  390.  
  391. #info a:hover {
  392. color:{color:link hover};
  393. }
  394.  
  395. .tags {
  396. font-family:calibri;
  397. width:500px;
  398. text-transform:normal;
  399. line-height:120%;
  400. font-size:10px;
  401. text-align:left;
  402. padding-top:5px;
  403. padding-bottom:15px;
  404. -moz-transition-duration:0.2s;
  405. -webkit-transition-duration:0.2s;
  406. -o-transition-duration:0.2s;
  407. }
  408. .tags a{
  409. font-style:italic;
  410. color:{color:link};
  411. -moz-transition-duration:0.2s;
  412. -webkit-transition-duration:0.2s;
  413. -o-transition-duration:0.2s;
  414. }
  415. .tags a:hover{
  416. color:{color:link hover};
  417. -moz-transition-duration:0.2s;
  418. -webkit-transition-duration:0.2s;
  419. -o-transition-duration:0.2s;
  420. }
  421.  
  422. .audio{
  423. background-color:#e5e5e5;
  424. height:65px;
  425. overflow:hidden;
  426. }
  427.  
  428. #ask {
  429. padding:5px;
  430. padding-bottom:10px;
  431. padding-left:10px;
  432. text-align:left;
  433. color:{color:text};
  434. line-height:140%;
  435. background-color:none;
  436. }
  437. #ask img {
  438. margin-left:-2px;
  439. margin-bottom:-9px;
  440. padding:3px;
  441. }
  442. #ans {
  443. text-align:left;
  444. padding:5px;
  445. color:{color:text};
  446. }
  447.  
  448. #credit {
  449. font-size:9px;
  450. font-family:cambria;
  451. font-style:italic;
  452. letter-spacing:1px;
  453. -moz-transition-duration:0.5s;
  454. -webkit-transition-duration:0.5s;
  455. -o-transition-duration:0.5s;
  456. }
  457.  
  458. #credit a {
  459. background-color:none;
  460. padding:5px;
  461. border:1px solid #e9e9e9;
  462. position:fixed;
  463. right:15px;
  464. bottom:10px
  465. }
  466.  
  467. #credit a:hover {
  468. color:#fff;
  469. background-color:#191919;
  470. }
  471.  
  472.  
  473. .popup_block{
  474. display:none;
  475. background:#beb8bf;
  476. padding:20px;
  477. border:0px solid #545050; /* if you want a solid white pop-up, delete this */
  478. border-radius:10px;
  479. float:left;
  480. position:fixed;
  481. top:50%;left:50%;
  482. z-index: 99999;
  483. -webkit-box-shadow: 0px 0px 20px #fff; /* delete for solid white */
  484. -moz-box-shadow: 0px 0px 20px #fff; /* delete for solid white */
  485. box-shadow: 0px 0px 20px #000; /* delete for solid white */
  486. width: 300px;
  487.  
  488. }
  489.  
  490. *html #fade {position: absolute;}
  491. *html .popup_block {position: absolute;}
  492. #fade {
  493. display:none;
  494. position:fixed;
  495. left:0px;
  496. top:0px;
  497. width:100%;
  498. height:100%;
  499. z-index:9999;
  500. background:#000; /* change to #fff for solid white */
  501. opacity:0.90; /* change to opacity:1; */
  502. }
  503.  
  504.  
  505. {CustomCSS}</style></head><body>
  506.  
  507.  
  508.  
  509. <div id="sidebar">
  510.  
  511. <div id="sidebarimage">
  512. <a title="{text:homelink title}" href="/"><img src="{image:sidebar}"> </a></div>
  513.  
  514.  
  515. <div id="description">
  516. {Description}</div></div>
  517. <p></p>
  518. <div id="links">
  519. <a href="/" title="home">✘</a><br>
  520. <a href="#?w=500" rel="box1" class="poplight" title="ask">✘</a><br>
  521. <a href="#?w=500" rel="box2" class="poplight" title="guidelines">✘</a><br>
  522. <a href="#?w=500" rel="box3" class="poplight" title="verses">✘</a><br>
  523. <a href="/tagged/wishlist tag." title="wishlist">✘</a>
  524.  
  525. </div>
  526. <div style="float:right;"><p></p><br><br>
  527.  
  528. </div>
  529. <div id="pagination">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">&larr;</a>{/block:PreviousPage} {CurrentPage} of {TotalPages} {block:NextPage}<a href="{NextPage}">&rarr;</a>{/block:NextPage}{/block:Pagination} </div></div></div>
  530.  
  531.  
  532. <div id="entries">{block:Posts}<div id="post">
  533.  
  534. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  535.  
  536. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  537.  
  538. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  539.  
  540. {block:permalinkpage}{Photoset-500}{/block:permalinkpage}{/block:Photoset}
  541.  
  542. {block:Quote}<big><big>"{Quote}"</big></big>{block:Source}<br><br> <div style="text-align: right;">— {Source}</div>{/block:Source}{/block:Quote}
  543.  
  544. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}{hw}
  545.  
  546. {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}
  547.  
  548.  
  549. {block:Audio}{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" align="left">{/block:AlbumArt}<div class="audio">{AudioPlayerGrey}</div>{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  550.  
  551. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  552.  
  553. {block:Answer}<div id="ask"><img src="{AskerPortraitURL-24}"> {Asker}: {Question}</div><div id="ans">{Answer}</div>{/block:answer}
  554.  
  555. {block:Date}<div id="info"> <a href="{Permalink}" style="background-color:#;padding:2px;padding-left:5px;padding-right:5px;color:#443a46;">{TimeAgo}</a>
  556. {/block:Date} {block:NoteCount} with <a href="{Permalink}">{NoteCountWithLabel}</a> {/block:NoteCount} {block:RebloggedFrom} — <a title="{ReblogParentName}" href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}
  557. {block:ContentSource} © <a title="{SourceTitle}" href="{SourceURL}">source</a>{/block:ContentSource}<div style="float:right;"> <big><big>+</big></big> <a href="{ReblogURL}" target="_blank" class="details">Reblog</a> {/block:Date}</div></div>
  558. {block:HasTags}
  559. <div class="tags">
  560. <big>✎</big> {block:Tags} <a href="{TagURL}"> # {Tag}</a> {/block:Tags}</div>
  561. {/block:HasTags}
  562. <div class="postnote">
  563. {block:PostNotes}{PostNotes}{/block:PostNotes}
  564. </div>
  565. </div>
  566. {/block:Posts}
  567.  
  568. </div>
  569.  
  570.  
  571. <div id="box1" class="popup_block">
  572. <iframe frameborder="0" height="200" id="ask_form" scrolling="yes" src="http://www.tumblr.com/ask_form/wiildfires.tumblr.com" width="100%"></iframe>
  573. </div>
  574.  
  575.  
  576.  
  577. <div id="box2" class="popup_block">
  578.  
  579. <table width="100%" cellpadding="0" cellspacing="10" border="0">
  580. <tr>
  581. <td width="50%" valign="top">
  582. <p>
  583.  
  584. under co.
  585.  
  586. <br><br>
  587.  
  588.  
  589. </td>
  590. </tr>
  591. </table>
  592.  
  593. </div>
  594.  
  595.  
  596. <div id="box3" class="popup_block">
  597.  
  598. <table width="100%" cellpadding="0" cellspacing="10" border="0">
  599. <tr>
  600. <td width="50%" valign="top">
  601. <p>
  602.  
  603. under co.
  604.  
  605.  
  606.  
  607. </td>
  608. </tr>
  609. </table>
  610.  
  611. </div>
  612.  
  613. </div></div></div></div></div></div></div></div></div></div>
  614.  
  615.  
  616. <div id="credit"><a href="http://hollywhood.tumblr.com">HW</div>
  617.  
  618.  
  619.  
  620.  
  621. </body>
  622.  
  623. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement