Trevania

Let Them Eat Cake

May 30th, 2013
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.31 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4.  
  5. <link href='http://fonts.googleapis.com/css?family=Noto+Serif:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
  6.  
  7. <link rel="shortcut icon" href="{Favicon}" />
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  9. <title>{Title}</title>
  10. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  11.  
  12. <!-- DEFAULTS -->
  13. <meta name="color:background" content="#ffffff">
  14. <meta name="color:posts" content="#fcfcfc">
  15. <meta name="color:info" content="#fdfdfd">
  16. <meta name="color:tag" content="#fdfdfd">
  17. <meta name="color:text" content="#c0bdb8" />
  18. <meta name="color:link hover" content="#fdfdfd" />
  19. <meta name="color:title" content="#d5d2d2" />
  20. <meta name="color:link" content="#c0bdb8" />
  21. <meta name="color:scrollbar" content="#c0bdb8" />
  22. <meta name="color:scrollbg" content="#ffffff" />
  23. <meta name="color:fade" content="#000000" />
  24.  
  25.  
  26. <meta name="image:sidebar1" content=""/>
  27. <meta name="image:sidebar2" content=""/>
  28. <meta name="image:sidebar3" content=""/>
  29. <meta name="image:sidebar4" content=""/>
  30. <meta name="image:sidebar5" content=""/>
  31.  
  32.  
  33. <meta name="text:Link1" content="/" />
  34. <meta name="text:Link1 Title" content="LINK1" />
  35. <meta name="text:Link2" content="/" />
  36. <meta name="text:Link2 Title" content="LINK2" />
  37. <meta name="text:Link3" content="/" />
  38. <meta name="text:Link3 Title" content="LINK3" />
  39. <meta name="text:Link4" content="/" />
  40. <meta name="text:Link4 Title" content="LINK4" />
  41.  
  42.  
  43. <script type="text/javascript"
  44. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  45.  
  46. <script>
  47. $(document).ready(function() {
  48. //
  49. $('a.poplight[href^=#]').click(function() {
  50. var popID = $(this).attr('rel'); //Get Popup Name
  51. var popURL = $(this).attr('href'); //Get Popup href to define size
  52. var query= popURL.split('?');
  53. var dim= query[1].split('&');
  54. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  55. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="Close" alt="Close" /></a>');
  56. var popMargTop = ($('#' + popID).height() + 80) / 2;
  57. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  58.  
  59. //Apply Margin to Popup
  60. $('#' + popID).css({
  61. 'margin-top' : -popMargTop,
  62. 'margin-left' : -popMargLeft
  63. });
  64. $('body').append('<div id="fade"></div>');
  65. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  66. return false;
  67. });
  68. $('a.close, #fade').live('click', function() {
  69. $('#fade , .popup_block').fadeOut(function() {
  70. $('#fade, a.close').remove(); //fade them both out
  71. });
  72. return false;
  73. });
  74. });
  75. </script>
  76.  
  77.  
  78.  
  79. </head>
  80.  
  81.  
  82. <style type="text/css">
  83.  
  84.  
  85. ::-webkit-scrollbar-thumb:vertical {
  86. background-color:{color:scrollbar};
  87. height:100px;
  88. }
  89.  
  90. ::-webkit-scrollbar-thumb:horizontal {
  91. background-color:{color:scrollbar};
  92. height:10px !important;
  93. }
  94.  
  95. ::-webkit-scrollbar {
  96. height:7px;
  97. width:7px;
  98. background-color:{color:scrollbg};
  99. }
  100.  
  101. .ask {
  102. align:right;
  103. background: {color:scrollbar};
  104. margin:7px 0px 5px 66px;
  105. padding:10px;
  106. position: relative;
  107. -moz-border-radius:5px;
  108. -webkit-border-radius:5px;
  109. border-radius:5px;
  110. color:white;
  111. }
  112.  
  113. .ask a:link {
  114. color:#000;
  115. }
  116.  
  117.  
  118. .ask p {
  119. margin:1px 0px;
  120. }
  121.  
  122. .ask span {
  123. display:block;
  124. position:absolute;
  125. width:1px;
  126. height:1px;
  127. font-size: 0;
  128. line-height: 1px;
  129. left:-10px;
  130. top:10px;
  131. border-top:7px solid transparent;
  132. border-bottom:7px solid transparent;
  133. border-right:10px solid {color:scrollbar};
  134. }
  135.  
  136. .askborder {
  137. float: left;
  138. margin: 1px 4px 0 0;
  139. padding: 2px;
  140. background:{color:link};
  141. }
  142.  
  143. #askbg a {
  144. color:white;
  145. font-weight:bold;
  146. }
  147.  
  148. ::-moz-selection {
  149. background-color:{color:scrollbg};
  150. color: {color:scrollbar};
  151. }
  152.  
  153. ::selection {
  154. background-color:{color:scrollbg};
  155. color: {color:scrollbar};
  156. }
  157.  
  158. body {color:{color:text};
  159. background-color:{color:background};
  160. background-image: url('{image:Background}');
  161. background-attachment:fixed;
  162. font-family:calibri;
  163. font-size:11px;
  164. line-height:110%;
  165. text-align:justify;
  166. }
  167.  
  168. a:link, a:active, a:visited{
  169. color: {color:link};
  170. text-decoration:none;
  171. }
  172.  
  173. a:hover {
  174. color:{color:link hover};
  175. -webkit-transition: all 0.4s linear;
  176. -moz-transition: all 0.4s linear;
  177. transition: all 0.4s linear;
  178. }
  179.  
  180. color:{color:title};font-style:auto;
  181. -webkit-transition: all 0.4s ease-in;
  182. -moz-transition: all 0.4s ease-in;
  183. -o-transition: all 0.4s ease-in;
  184. transition: all 0.4s ease-in;
  185. }
  186.  
  187. small{font-size:auto}
  188. big{font-size:auto}
  189. b, strong{color:{color:scrollbar};}
  190. i, em {color:{color:text};}
  191. u{color:#483d43;}
  192. p{margin-top:6px; margin-bottom:6px}
  193. blockquote {padding:0px;
  194. padding-left:10px;
  195. margin:8px;
  196. border-left:2px solid {color:text};
  197. }
  198.  
  199. img a{
  200. border:none;
  201. width:100%;
  202. }
  203.  
  204. #container {
  205. background-color:transparent;
  206. width: 800px;
  207. text-align: center;
  208. margin: 0 auto -10px auto;
  209. }
  210.  
  211. #entries {
  212. margin: 22px 0 -10px 260px;
  213. margin-right:78px;
  214. float:right;
  215. text-align: justify;
  216. }
  217.  
  218. #posts {
  219. margin: 0px 0 0px 0;
  220. width: 470px;
  221. text-align: justify;
  222. padding: 10px;
  223. }
  224.  
  225. #sidebar {
  226. width:220px;
  227. padding:0px;
  228. margin-top:0px;
  229. margin-left:-100px;
  230. height:100%;
  231. position:fixed;
  232. }
  233.  
  234. #sidebarimg img {
  235. margin-top:200px;
  236. width:185px;
  237. height:auto;
  238. }
  239.  
  240. #description img {
  241. max-width:185px;
  242. text-align:center;
  243. }
  244.  
  245. #links {
  246. font:7px 'Noto Serif', serif;
  247. color:{color:border2}
  248. letter-spacing: 1px;
  249. width:185px;
  250. text-align:center;
  251. padding-bottom:0px;
  252. text-transform:uppercase;
  253. margin-left:15px;
  254. margin-top:3px;
  255. position:fixed;
  256.  
  257. }
  258.  
  259. #links a{
  260. -webkit-transition: all 0.4s ease;
  261. -moz-transition: all 0.4s ease;
  262. -o-transition: all 0.4s ease;
  263. }
  264.  
  265. #description {
  266. text-align:justify;
  267. display:block;
  268. width:200px;
  269. height:auto;
  270. font-family: 'Noto Serif', serif;
  271. font-size: 8px;
  272. padding:0px;
  273. text-transform:none;
  274. border-top: solid 1px #f5f5f5;
  275. padding-top:10px;
  276. position:absolute;
  277. margin-left:10px;
  278. margin-top:20px;
  279. }
  280.  
  281. #pagination {
  282. font-family: 'Noto Serif', serif;
  283. text-align:left;
  284. margin-left:855px;
  285. margin-top:350px;
  286. font-size:12px;
  287. position:fixed;
  288. text-transform:uppercase;
  289. }
  290.  
  291. #credit{
  292. position:fixed;
  293. bottom:10px;
  294. right:10px;
  295. font-size:6px;
  296. font-family: 'Noto Serif', serif;
  297. color:{color:text};
  298. text-transform:uppercase;
  299. letter-spacing: 0px;
  300. font-style:normal;
  301. }
  302.  
  303.  
  304. h1{
  305. color:{color:title};
  306. font-family:{font:text};
  307. font-size:12px;
  308. line-height:12px;
  309. letter-spacing:0px;
  310. font-weight:italic;
  311. text-transform:uppercase;
  312. margin:0px;
  313. padding:0px;
  314. text-align:center;
  315. }
  316.  
  317. h2{
  318. color:{color:text};
  319. font-family:{font:link};
  320. font-size:12px;
  321. line-height:12px;
  322. letter-spacing:0px;
  323. font-weight:normal;
  324. text-transform:none;
  325. margin:0px;
  326. padding:0px;
  327. margin-bottom:-5px;
  328. text-align:center;
  329. }
  330.  
  331. #info{
  332. padding-top:5px;
  333. display:block;
  334. padding-bottom:5px;
  335. width:500px;
  336. color:{color:tag};
  337. background-color:{color:info};
  338. font-size:8px;
  339. font-family: 'Noto Serif', serif;
  340. text-align:right;
  341. text-transform:uppercase;
  342. border-top: solid 1px #e7e7e7;
  343. }
  344.  
  345. #tags {
  346. margin-top:-30px;
  347. width:300px;
  348. text-transform:lowercase;
  349. font-size:7px;
  350. font-family: 'Noto Serif', serif;
  351. }
  352.  
  353. #questions {
  354. background-color:{color:info};
  355. color: {color:text};
  356. padding:2px;
  357. margin-top: 6px;
  358. margin-bottom:2px;
  359. font-family:calibri;
  360. font-size:11px;
  361. text-transform:lowercase;
  362. border-bottom:1px {color:text};
  363. text-align:center;
  364. }
  365.  
  366. #questions a {
  367. color:{color:link};
  368. }
  369.  
  370. #permalink {
  371. padding-bottom:5px;
  372. text-align:right;
  373. }
  374.  
  375. .audio{
  376. background-color:black;
  377. display:block;
  378. }
  379.  
  380. .user_1 .label {color:{color:link}; font-weight:bold}
  381. .user_2 .label {color:{color:text}; font-weight:bold}
  382. .user_3 .label {color:{color:link}; font-weight:bold}
  383. .user_4 .label {color:{color:text}; font-weight:bold}
  384.  
  385. ul.chat, .chat ol, .chat li {
  386. list-style:none;
  387. margin:0px;
  388. padding:0px;
  389. }
  390.  
  391. .notes img{
  392. width:10px;
  393. position:relative;
  394. top:1px;
  395. }
  396.  
  397. ol.notes, .notes li{
  398. width:490px;
  399. list-style:none;
  400. margin:0px 0 -1px 5px;
  401. padding:0px;
  402. }
  403.  
  404. #fade { /*--Transparent background layer--*/
  405. display: none; /*--hidden by default--*/
  406. background: {color:fade};
  407. position: fixed; left: 0; top: 0;
  408. width: 100%; height: 100%;
  409. opacity: .80;
  410. z-index: 9999;
  411. }
  412.  
  413. .popup_block{
  414. display: none; /*--hidden by default--*/
  415. background: #FFFFFF;
  416. padding: 10px;
  417. border: 5px solid #F8F8F8;
  418. float: left;
  419. font-size: 10;
  420. position: fixed;
  421. top: 50%; left: 50%;
  422. z-index: 99999;
  423. /*--CSS3 Box Shadows--*/
  424. -webkit-box-shadow: 0px 0px 20px #000;
  425. -moz-box-shadow: 0px 0px 20px #000;
  426. box-shadow: 0px 0px 20px #000;
  427. /*--CSS3 Square Corners--*/
  428. -webkit-border-radius: 0px;
  429. -moz-border-radius: 0px;
  430. border-radius: 0px;
  431. }
  432.  
  433. img.btn_close {
  434. float: right;
  435. margin: -20 -20px 0 0;
  436. }
  437.  
  438. /*--Making IE6 Understand Fixed Positioning--*/
  439. *html #fade {
  440. position: absolute;
  441. }
  442.  
  443. *html .popup_block {
  444. position: absolute;
  445. }
  446.  
  447. </style>
  448. <style type="text/css">{CustomCSS}</style>
  449.  
  450.  
  451.  
  452. </head>
  453. <body>
  454.  
  455. <div id="container">
  456. <div id="sidebar">
  457. <div id="sidebarimg">
  458. <script language="JavaScript">
  459.  
  460. <!--
  461.  
  462. function random_imglink(){
  463.  
  464. var myimages=new Array()
  465.  
  466.  
  467. myimages[1]="{image:Sidebar1}"
  468.  
  469. myimages[2]="{image:Sidebar2}"
  470.  
  471. myimages[3]="{image:Sidebar3}"
  472.  
  473. myimages[4]="{image:Sidebar4}"
  474.  
  475. myimages[5]="{image:Sidebar5}"
  476.  
  477.  
  478.  
  479.  
  480.  
  481.  
  482. var imagelinks=new Array(0)
  483.  
  484.  
  485. imagelinks[1]="{image:Sidebar1}"
  486.  
  487. imagelinks[2]="{image:Sidebar2}"
  488.  
  489. imagelinks[3]="{image:Sidebar3}"
  490.  
  491. imagelinks[4]="{image:Sidebar4}"
  492.  
  493. imagelinks[5]="{image:Sidebar5}"
  494.  
  495.  
  496.  
  497.  
  498.  
  499.  
  500.  
  501. var ry=Math.floor(Math.random()*myimages.length)
  502.  
  503.  
  504. if (ry==0)
  505.  
  506. ry=1
  507.  
  508. document.write('<img src="'+myimages[ry]+'" width="285"></a>')
  509.  
  510. }
  511.  
  512.  
  513. random_imglink()
  514.  
  515. </script></div>
  516. <center><div id="links">
  517. <a href="/">home</a>&nbsp;
  518. <a href="#?w=500" rel="02" class="poplight">
  519. Ask
  520. </a>&nbsp;
  521.  
  522. {block:ifLink1}
  523. <a href="{text:Link1}">
  524. {text:Link1 Title}</a>
  525. {/block:ifLink1}&nbsp;
  526.  
  527. {block:ifLink2}
  528. <a href="{text:Link2}">
  529. {text:Link2 Title}</a>
  530. {/block:ifLink2}&nbsp;
  531.  
  532. {block:ifLink3}
  533. <a href="{text:Link3}">
  534. {text:Link3 Title}</a>
  535. {/block:ifLink3}&nbsp;
  536.  
  537. {block:ifLink4}
  538. <a href="{text:Link4}">
  539. {text:Link4 Title}</a>
  540. {/block:ifLink4}&nbsp;
  541.  
  542.  
  543. <p>
  544. </div>
  545. <center><div id="description">{Description}</div></center>
  546.  
  547. </div>
  548.  
  549. <div id="credit">
  550. <a href="http://tomhardies.tumblr.com/">©</a>
  551. </div>
  552.  
  553. <div id="pagination">
  554. {block:Pagination}
  555. {block:NextPage}
  556. <a href="{NextPage}">next</a><br />
  557. {/block:NextPage}
  558. {block:PreviousPage}
  559. <a href="{PreviousPage}">previous</a>
  560. {/block:PreviousPage}
  561. {/block:Pagination}
  562.  
  563. </div>
  564.  
  565. <div id="entries">
  566.  
  567. {block:posts}
  568.  
  569. <div id="posts">
  570.  
  571. {block:Text}
  572. {block:Title}<h1>{Title}</h1>{/block:Title}
  573. {Body}{/block:Text}
  574.  
  575.  
  576. {block:Quote}<h2>“{Quote}” — {Source}</h2><br>{/block:Quote}
  577.  
  578. {block:Link}
  579. <a href="{URL}"><h1>{Name}</h1>
  580. </a>
  581.  
  582. {block:Description}
  583. <p>{Description}</p>
  584. {/block:Description}
  585. {/block:Link}
  586.  
  587. {block:Photo}<center>
  588. <img src="{PhotoURL-500}"/></center>
  589. {block:Caption}{Caption}{/block:Caption}
  590. {/block:Photo}
  591.  
  592. {block:Photoset}<center>
  593. {Photoset-500}</center>
  594. {block:Caption}{Caption}
  595. {/block:Caption}{/block:Photoset}
  596.  
  597. {block:Chat}<ul class="chat">
  598. {block:Lines}<li class="user_{UserNumber}">
  599. {block:Label}<span class="label">{Label}</span>
  600. {/block:Label}&nbsp;{Line}</li>{/block:Lines}</ul>{/block:Chat}
  601.  
  602. {block:Video}{Video-500}
  603. {block:Caption}{Caption}
  604. {/block:Caption}{/block:Video}
  605.  
  606. {block:Answer}<img src="{AskerPortraitURL-40}" align="center" class="askborder"><div class="ask">
  607. <div id="askbg">
  608. <span></span>{Asker}: {Question}&nbsp;</div></div>
  609. <br>
  610. <blockquote>{Answer}{/block:Answer}</blockquote>
  611.  
  612.  
  613. {block:Audio}<div id="_">{AudioPlayerWhite}<br>
  614. {block:Caption}{Caption}{/block:Caption}<br clear="all" /></div> {/block:Audio}
  615.  
  616.  
  617.  
  618. <div id="info">
  619. <div id="permalink">
  620. {block:PermalinkPage}
  621. {block:RebloggedFrom}
  622. <br><a href="{ReblogParentURL}">via</a> - {/block:RebloggedFrom}
  623. {block:ContentSource}<a href="{SourceURL}">source</a><br>
  624. {/block:ContentSource}
  625. {/block:PermalinkPage}
  626. {block:Date}
  627. <a href="{Permalink}">
  628. <a href="{Permalink}"> {TimeAgo}</a>{/block:Date}
  629. {block:NoteCount}with <a href="{Permalink}">{NoteCount}</a>{/block:NoteCount}
  630. </div>
  631. </div> <p>
  632.  
  633.  
  634. <div id="tags">
  635. {block:HasTags}{block:Tags}<b>#</b> <a href="{TagURL}">{Tag} </a> {/block:Tags}{/block:HasTags}</div></div>
  636. <br />
  637.  
  638.  
  639. {/block:Posts}
  640.  
  641. {block:PostNotes}{PostNotes}{/block:PostNotes}<br />
  642. </div>
  643. </div>
  644.  
  645. </body>
  646.  
  647. <div id="02" class="popup_block">
  648. <Center>
  649. <iframe frameborder="0" scrolling="yes" width="100%" height="200" src= "http://www.tumblr.com/ask_form/TUMBLRNAMEHERE.tumblr.com/" style="background-color:transparent; overflow:hidden;" id="ask_form">
  650. </center></div>
  651.  
  652. </div></div></div></div></div></div></div></div></div></div>
  653. </html>
Add Comment
Please, Sign In to add comment