Advertisement
fearwakes

THEME 08 - changing wind

Sep 7th, 2014
1,938
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 18.37 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.  
  3.  
  4.  
  5. <!--——————————————————————THEME #08 BY FEARWAKES—————————————————————-->
  6.  
  7. <!--————————————————————————— changing wind —————————————————————————-->
  8.  
  9.  
  10.  
  11. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  12. <head>
  13.  
  14. <link href='http://fonts.googleapis.com/css?family=Lato:300,400' rel='stylesheet' type='text/css'>
  15. <style>   iframe#tumblr_controls { white-space:nowrap; -webkit-filter: invert(100%); -moz-filter: invert(100%); -o-filter: invert(100%); -ms-filter: invert(100%); filter: invert(100%); opacity:1;}body, a, a:hover </style>
  16.  
  17. <script type="text/javascript"
  18. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  19. <script>
  20. $(document).ready(function() {
  21. //
  22. $('a.poplight[href^=#]').click(function() {
  23. var popID = $(this).attr('rel'); //Get Popup Name
  24. var popURL = $(this).attr('href'); //Get Popup href to define size
  25. var query= popURL.split('?');
  26. var dim= query[1].split('&');
  27. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  28. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://www.shfwire.com/sites/default/files/images/closeButton.png" height="14" class="btn_close" title="Close" alt="Close" /></a>');
  29. var popMargTop = ($('#' + popID).height() + 80) / 2;
  30. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  31. //Apply Margin to Popup
  32. $('#' + popID).css({
  33. 'margin-top' : -popMargTop,
  34. 'margin-left' : -popMargLeft
  35. });
  36. $('body').append('<div id="fade"></div>');
  37. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  38. return false;
  39. });
  40. $('a.close, #fade').live('click', function() {
  41. $('#fade , .popup_block').fadeOut(function() {
  42. $('#fade, a.close').remove(); //fade them both out
  43. });
  44. return false;
  45. });
  46. });
  47. </script>
  48.  
  49.  
  50.  
  51. <title>{Title}</title>
  52.  
  53. <link rel="shortcut icon" href="{Favicon}">
  54. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  55. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  56.  
  57.  
  58. <meta name="color:Background" content="#ffffff"/>
  59. <meta name="color:Box" content="#ffffff"/>
  60. <meta name="color:Text" content="#222222"/>
  61. <meta name="color:Link" content="#222222"/>
  62. <meta name="color:Tags" content="#cccccc"/>
  63. <meta name="color:Hover" content="#222222"/>
  64. <meta name="color:Border" content="#eeeeee"/>
  65. <meta name="color:Scrollbar" content="#222222"/>
  66.  
  67. <meta name="image:sidebar" content=""/>
  68. <meta name="image:bg" content=""/>
  69. <meta name="if:sidebar" content="0"/>
  70. <meta name="if:Stretch bg" content="0"/>
  71.  
  72. <meta name="select:BlogFont" content="helvetica" title="Helvetica">
  73. <meta name="select:BlogFont" content="times" title="Times">
  74.  
  75. <meta name="text:link1" content="home page">
  76. <meta name="text:link1 url" content="/">    
  77. <meta name="text:link2" content="link 2">
  78. <meta name="text:link2 url" content="/">
  79. <meta name="text:link3" content="link 3">
  80. <meta name="text:link3 url" content="/">
  81. <meta name="text:link4" content="link 4">
  82. <meta name="text:link4 url" content="/">
  83. <meta name="text:link5" content="mailbox">
  84. <meta name="text:link5 url" content="/ask">
  85. <meta name="text:link6" content="link 6">
  86. <meta name="text:link6 url" content="/">
  87.  
  88.  
  89. <style type="text/css">
  90.  
  91.  
  92.  
  93.  
  94.  ::-webkit-scrollbar-thumb:vertical {
  95.     background-color:{color:Scrollbar};
  96.     height:auto;
  97. }
  98.  
  99.  
  100.  
  101. ::-webkit-scrollbar {
  102.     height:5px;
  103.     width:2px;
  104.     background-color:{color:box};
  105. }
  106.  
  107. ::selection {
  108. background: #000;
  109. color: #fff;
  110. }
  111. ::-moz-selection {
  112. background: #000;
  113. color: #fff;
  114. }
  115.  
  116.  
  117.  
  118. body {
  119.     background:{color:background} url('{image:bg}') center center fixed       repeat;
  120.     {block:ifstretchbg}
  121.     -webkit-background-size: cover;
  122.     -moz-background-size: cover;
  123.     -o-background-size: cover;
  124.     background-size: cover;
  125.     {/block:ifstretchbg}
  126.     margin:0px;
  127.     color:{color:text};
  128.     font-family:{select:BlogFont};
  129.     font-weight:lighter;
  130.     letter-spacing:1px;
  131.     font-size:11px;
  132.     font-style:none;
  133.     text-align:justify;
  134.     line-height:210%;
  135. }
  136.  
  137. a {
  138. color:{color:link};
  139. text-decoration:none;
  140. }
  141.  
  142. a:hover {
  143. color:{color:hover};
  144. text-shadow: 2px 2px 2px #ccc;
  145. }
  146.  
  147.  
  148. img {
  149.     border:none;
  150. }
  151.  
  152.  
  153. h1 {
  154.     font-weight:lighter;
  155.     letter-spacing:2px;
  156.     font-size:14px;
  157.     text-transform:uppercase;
  158.     font-style:none;
  159. }
  160.  
  161. h2 {
  162.     font-weight:lighter;
  163.     letter-spacing:1px;
  164.     font-size:14px;
  165.     text-transform:uppercase;
  166.     font-style:none;
  167.     border-bottom:1px solid {color:border};
  168. }
  169.  
  170. blockquote {
  171.     padding:7px;
  172.     margin-top:-2px;
  173.     padding-left:10px;
  174.     padding-right:21px;
  175.     margin-left:0px;
  176.     border-left:0px solid {color:border};
  177. }
  178.    
  179. blockquote blockquote {
  180.     padding-left:5px;
  181.     border-left:1px solid {color:border};
  182. }
  183.  
  184.  
  185. #header {
  186.     background:{color:backgrouund};
  187.     position:fixed;
  188.     width:585px;
  189.     height:100px;
  190.     margin-left:285px;
  191.     top:-75px;
  192.     border-bottom:0px solid {color:border};
  193. }
  194.  
  195.  
  196.  
  197.  
  198. #blogtitle {
  199.     position:absolute;
  200.     background:none;
  201.     color:{color:blogtitle};
  202.     top:415px;
  203.     width:110px;
  204.     height:100px;
  205.     margin-left:35px;
  206.     font-size:14px;
  207.     font-style:none;
  208.     font-weight:lighter;
  209.     letter-spacing:2px;
  210.     word-spacing:2px;
  211.     text-transform:uppercase;
  212.     text-align:left;
  213.     padding:14px;
  214.     padding-left:0px;
  215.     line-height:14px;
  216.     border-top:1px solid {color:border};
  217.     border-bottom:1px solid {color:border};
  218.    
  219. }
  220.  
  221. #blogtitle a:hover {
  222.    color:{color:Hover};
  223.    border-bottom:0px solid black;
  224.    font-weight:normal;
  225.    -webkit-filter:blur(1px) grayscale(.5) saturate(6);
  226. }
  227.  
  228.  .desc {
  229.     position:absolute;
  230.     background:none;
  231.     padding:14px;
  232.     padding-left:0px;
  233.     top:155px;
  234.     margin-left:35px;
  235.     font-weight:normal;
  236.     text-align:left;
  237.     text-transform:uppercase;
  238.     letter-spacing:1px;
  239.     line-height:17px;
  240.     font-size:9px;
  241.     font-style:none;
  242.     width:110px;
  243.     height:100px;
  244.     color:{color:text};
  245.     border-top:1px solid {color:border};
  246.     border-bottom:1px solid {color:border};
  247. }
  248.  
  249.  
  250.  
  251.  
  252. .links {
  253.     position:absolute;
  254.     top:284px;
  255.     margin-left:35px;
  256.     font-size:9px;
  257.     width:110px;
  258.     height:100px;
  259.     padding:14px;
  260.     padding-left:0px;
  261.     font-style:none;
  262.     font-weight:normal;
  263.     letter-spacing:1px;
  264.     text-transform:uppercase;
  265.     text-align:left;
  266.     color:{color:text};
  267.     border-top:1px solid {color:border};
  268.     border-bottom:1px solid {color:border};
  269.     background:none;
  270.     display: table;
  271.     line-height:17px;
  272. }
  273.  
  274.  
  275. .links a:hover {
  276.    color:{color:Hover};
  277.    padding-left:21px;
  278.    letter-spacing:2px;
  279.    border-bottom:0px solid black;
  280.    font-weight:lighter;
  281. }
  282.  
  283.  
  284.  
  285.  
  286. #pagi{
  287.     position:fixed;
  288.     margin-left:35px;
  289.     top:485px;
  290.     background:transparent;
  291.     text-align:left;
  292.     font-weight:normal;
  293.     width:110px;
  294.     padding:14px;
  295.     padding-left:0px;
  296.     font-size:9px;
  297.     letter-spacing:1px;
  298.     font-style:none;
  299.     word-spacing:2px;
  300.     text-transform:uppercase;
  301.     border:0px solid {color:border};
  302.     line-height:14px;
  303.     {block:ifsidebar}
  304.     text-align:right;
  305.     {/block:ifsidebar}
  306. }
  307.  
  308.  
  309. #pagi a:hover {
  310.     color:{color:hover};
  311.     font-weight:lighter;
  312.     padding-left:21px;
  313.     letter-spacing:2px;
  314.     border-bottom:0px solid {color:border};
  315.     text-decoration:none;
  316.     }
  317.  
  318.  
  319.  
  320. .quote {
  321.     font-size:14px;
  322.     font-weight:lighter;
  323.     font-style:none;
  324.     text-align:center;
  325.     letter-spacing:2px;
  326.     word-spacing:2px;
  327.     line-height:17px;
  328.     padding:28px;
  329.     text-transform:uppercase;
  330. }
  331.  
  332. #source {
  333.     text-transform:uppercase;
  334.     text-align:left;
  335.     font-size:9px;
  336.     letter-spacing:1px;
  337.     word-spacing:2px;
  338.     font-weight:lighter;
  339.     padding:14px;
  340.     padding-left:0px;
  341.     line-height:17px;
  342.     color:{color:text};
  343.     border:0px solid {color:border};
  344. }
  345.  
  346. #sidebar {
  347.     margin-left:-170px;
  348.     bottom:5px;
  349.     position:fixed;
  350.     height:100%;
  351.     border-right:0px solid white;
  352. }
  353.  
  354. #sidebarimage img {
  355.     position:fixed;
  356.     margin-left:35px;
  357.     margin-top:468px;
  358.     padding:0px;
  359.     width:60px;
  360.     height:60px;
  361.     border:0px solid {color:border};
  362.     border-radius:100%;
  363. }
  364.  
  365.  
  366. #details {
  367.     background:none;
  368.     margin-bottom:0px;
  369.     margin-left:0px;
  370.     padding:7px;
  371.     padding-bottom:14px
  372.     padding-top:0px;
  373.     padding-left:0px;
  374.     letter-spacing:0px;
  375.     word-spacing:2px;
  376.     text-align:left;
  377.     text-transform:none;
  378.     font-size:9px;
  379.     font-weight:normal;
  380.     font-style:none;
  381.     text-transform:uppercase;
  382.     line-height:10px;
  383.     border-top:1px solid {color:border};
  384.     border-bottom:0px solid {color:border};
  385.     opacity:1;
  386.     -webkit-transition:all 1s ease;
  387.     -moz-transition:all 1s ease;
  388.     transition:all 1s ease;
  389. }
  390.  
  391. #details a {
  392.     display:inline-block;
  393.     color:{color:text};
  394.     -webkit-transition: all 0.6s ease-in-out;
  395.     -moz-transition: all 0.6s ease-in-out;
  396.     -o-transition: all 0.6s ease-in-out;
  397.     -ms-transition: all 0.6s ease-in-out;
  398.     -transition: all 0.6s ease-in-out;
  399.     }
  400.  
  401. #details a:hover {color:{color:hover}; border-bottom: 0px solid {color:hover};-webkit-filter:blur(1px) grayscale(.5) saturate(6);}
  402.  
  403. #all {
  404.     padding:50px;
  405.     top:50%;
  406.     margin-top:100px;
  407.     left:50%;
  408.     margin-left:100px;
  409.     bottom:50%;
  410.     margin-bottom:100px;
  411.     right:50%;
  412.     margin-right:100px;
  413.     border:2px solid {color:border};
  414.     overflow-y:auto;
  415.     overflow-x:hidden;
  416.     background:{color:box} url('{image:box bg}') center center fixed repeat;
  417. {block:ifstretchboxbg}
  418.   -webkit-background-size: cover;
  419.   -moz-background-size: cover;
  420.   -o-background-size: cover;
  421.   background-size: cover;
  422. {/block:ifstretchboxbg}
  423. }
  424.  
  425.  
  426.  
  427. #posts {
  428.     display:block;
  429.     background:{color:box};
  430.     width:500px;
  431.     position:relative;
  432.     padding:9px;
  433.     top:-10px;
  434.     left:230px;
  435.     margin-bottom:50px;
  436.     border:px solid {color:border};
  437. }
  438.  
  439. #posts img, iframe {
  440. max-width:500px;
  441. display:block;
  442. }
  443.  
  444.  
  445.  
  446.  
  447.  
  448. #posts:hover #details {opacity:1;
  449. -webkit-transition:all 1s ease;
  450. -moz-transition:all 1s ease;
  451. transition:all 1s ease;}
  452.  
  453. #tags {
  454.     font-weight:lighter;
  455.     text-align:left;
  456.     color:{color:Tags};
  457.     margin-top:-1px;
  458.     margin-left:0px;
  459.     padding-top:7px;
  460.     padding-left:0px;
  461.     padding-right:7px;
  462.     line-height: 1.5;
  463.     letter-spacing:1px;
  464.     text-transform:uppercase;
  465.     font-size:9px;
  466.     font-style:none;
  467.     background-color:none;
  468.     border-top:1px solid {color:border};
  469.     opacity:1;
  470.     -webkit-transition:all 1s ease;
  471.     -moz-transition:all 1s ease;
  472.     transition:all 1s ease;
  473. }
  474.    
  475. #tags a {
  476.     display:inline-block;
  477.     color:{color:tags};
  478.     -webkit-transition: all 0.6s ease-in-out;
  479.     -moz-transition: all 0.6s ease-in-out;
  480.     -o-transition: all 0.6s ease-in-out;
  481.     -ms-transition: all 0.6s ease-in-out;
  482.     -transition: all 0.6s ease-in-out;
  483.     }    
  484.    
  485. #tags a:hover {color:{color:hover};}
  486.  
  487. #posts:hover #tags {opacity:1;
  488. -webkit-transition:all 1s ease;
  489. -moz-transition:all 1s ease;
  490. transition:all 1s ease;}
  491.  
  492.  
  493.  
  494. .notes {
  495.     width:468px;
  496.     height:200px;
  497.     margin-top:0px;
  498.     margin-left:239px;
  499.     font-weight:lighter;
  500.     background-color:{color:box};
  501.     text-transform:lowercase;
  502.     font-style:none;
  503.     letter-spacing:1px;
  504.     font-size:9px;
  505.     padding:9px;
  506.     padding-left:20px;
  507.     text-align:left;
  508.     border:1px {color:border} solid;
  509.     overflow-y:scroll;
  510. }
  511.  
  512. .notes li {
  513.     list-style-type:none;
  514. }
  515.  
  516. .notes img.avatar {
  517.       margin-right: -10px;
  518.       width: 0px;
  519.       height: 0px;
  520.       padding:9px;
  521. }
  522.  
  523.  
  524. #question {
  525.     margin-top:-1px;
  526.     padding:14px;
  527.     font-weight:lighter;
  528.     letter-spacing:1px;
  529.     word-spacing:2px;
  530.     text-align:left;
  531.     font-style:none;
  532.     border:1px solid {color:border};
  533.     color:{color:text};
  534.     background-color:none;
  535. }
  536.  
  537. #answer {
  538.     margin-top:-1px;
  539.     padding:14px;
  540.     font-weight:lighter;
  541.     letter-spacing:1px;
  542.     text-align:left;
  543.     border:1px solid {color:border};
  544. }
  545.  
  546. .playbutton {
  547.     width:30px;
  548.     height:27px;
  549.     color:white;
  550.     border:0px {color:border} solid;
  551.     overflow:hidden;
  552.     position:relative;
  553.     z-index:100;
  554.     margin:9px 18px 7px 10px;
  555. }
  556.  
  557. .playbox {
  558.     margin-top:10px;
  559.     margin-left:13px;
  560.     color:white;
  561.     position: absolute;
  562.     z-index: 100;
  563. }
  564.  
  565. .audiodata {
  566.     background-color:white;
  567.     font-size:9px;
  568.     letter-spacing:1px;
  569.     word-spacing:2px;
  570.     color:{color:text};
  571.     padding:0px 10px 10px 10px;
  572.     text-transform:uppercase;
  573.     line-height:17px;
  574.     height:55px;
  575.     width:478px;
  576.     margin-top:-1px;
  577.     margin-left:0px;
  578.     text-align:right;
  579.     border:1px {color:border} solid;
  580. }
  581.  
  582.  
  583.  
  584.  
  585. {CustomCSS}
  586.     #fade { /*--Transparent background layer--*/
  587. display: none; /*--hidden by default--*/
  588. background: #fff;
  589. position: fixed; left: 0; top: 0;
  590. width: 100%; height: 100%;
  591. opacity: .100;
  592. z-index: 9999;
  593. }
  594. .popup_block{
  595. display: none; /*--hidden by default--*/
  596. background: #fff;
  597. padding: 10px;
  598. border: 1px solid #eeeeee;
  599. float: left;
  600. font-size: 10;
  601. position: fixed;
  602. top: 50%; left: 50%;
  603. z-index: 99999;
  604. /*--CSS3 Box Shadows--*/
  605. -webkit-box-shadow: 0px 0px 0px #000;
  606. -moz-box-shadow: 0px 0px 0px #000;
  607. box-shadow: 0px 0px 0px #000;
  608. /*--CSS3 Rounded Corners--*/
  609. -webkit-border-radius: 0px;
  610. -moz-border-radius: 0px;
  611. border-radius: 0px;
  612. }
  613. img.btn_close {
  614. float: right;
  615. margin: -20 -20px 0 0;
  616. }
  617. /*--Making IE6 Understand Fixed Positioning--*/
  618. *html #fade {
  619. position: absolute;
  620. }
  621. *html .popup_block {
  622. position: absolute;
  623. }
  624. </style></head>
  625. <body>
  626.  
  627. <body>
  628.  
  629.  
  630. <script type="text/javascript">
  631.   WebFontConfig = {
  632.     google: { families: [ 'Josefin+Sans::latin' ] }
  633.   };
  634.   (function() {
  635.     var wf = document.createElement('script');
  636.     wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
  637.       '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
  638.     wf.type = 'text/javascript';
  639.     wf.async = 'true';
  640.     var s = document.getElementsByTagName('script')[0];
  641.     s.parentNode.insertBefore(wf, s);
  642.   })(); </script>
  643.  
  644.  
  645.  
  646. <script language="JavaScript">
  647. function function1(){
  648. window.scrollTo(0,5);
  649. }
  650. function function2(){
  651. window.scroll(0,2);
  652. }
  653. </script>
  654. <!---- end masonry scripts -->
  655.  
  656. <div id="header">
  657. <div id="sidebar">
  658. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  659. <div id="blogtitle"><a href="/">{Title}</a></div>
  660. <div class="desc">
  661. {Description}
  662. </div>
  663. <div class="links">
  664. {block:IfLink1}
  665. <a href="{text:link1 url}">{text:link1}</a>
  666. {/block:IfLink1}
  667. <br>
  668. {block:IfLink2}
  669. <a href="{text:link2 url}">{text:link2}</a>
  670. {/block:IfLink2}
  671. <br>
  672. {block:IfLink3}
  673. <a href="{text:link3 url}">{text:link3}</a>
  674. {/block:IfLink3}
  675. <br>
  676. {block:IfLink4}
  677. <a href="{text:link4 url}">{text:link4}</a>
  678. {/block:IfLink4}
  679. <br>
  680. {block:IfLink5}
  681. <a href="#?w=500" rel="02" class="poplight">contact</a>
  682. {/block:IfLink5}
  683. <br>
  684. {block:IfLink6}
  685. <a href="{text:link6 url}">{text:link6}</a>
  686. {/block:IfLink6}
  687. </div>
  688. {block:Pagination}<div id="pagi">
  689. {block:Pagination}
  690. {block:PreviousPage}
  691. <a href="{PreviousPage}">less</a>
  692. {/block:PreviousPage}
  693. <br>
  694. {block:NextPage}
  695. <a href="{NextPage}">more</a>
  696. {/block:NextPage}
  697. {/block:Pagination}  
  698. </div>
  699. </div>{/block:Pagination}
  700.  
  701. </div>
  702. <div id="all">{block:Posts}<div id="posts">
  703.  
  704. <div id="details">
  705. <br><a href="{Permalink}">{ShortMonth} {DayOfMonth}{Dayofmonthsuffix} {Year}</a> <br>  {block:NoteCount}<a href="{Permalink}">+{NoteCount}</a> {/block:NoteCount} {block:RebloggedFrom}<a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom} {block:ContentSource} <a href="{SourceURL}"> <a href="{SourceURL}">source</a> {/block:ContentSource}{block:RebloggedFrom} <a href="{ReblogParentURL}" target="_blank"></a>{/block:RebloggedFrom}</div>
  706.  
  707. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  708.  
  709. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  710.  
  711. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  712.  
  713. {block:Photoset}{Photoset-500}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  714.  
  715. {block:Quote}
  716.     <div class="quote">❝ {Quote} ❞</div>
  717. {block:Source}
  718.     <div id="source">{Source}</div>
  719. {/block:Source}
  720. {/block:Quote}
  721.  
  722. {block:Audio}
  723. <div class="playbox"><div class="playbutton">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div></div>
  724. <div class="audiodata"><br>{block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br><b>{Artist}</b>{/block:Artist}</div>
  725.  
  726. {block:Caption}
  727.     <span class="caption">{Caption}</span>
  728. {/block:Caption}
  729. {/block:Audio}
  730.  
  731. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  732.  
  733. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  734.  
  735.  
  736. {block:Answer}<div id="question"><span style="text-transform:uppercase;font-family:helvetica;font-weight:bold;letter-spacing:1px;font-size:9px;">{Asker} :<br></span>{Question}</div><div id="answer"><left> <font face="helvetica">{Answer}</font></div>{/block:Answer}
  737.  
  738.  
  739. {block:HasTags}<div id="tags">filed under: {block:Tags}<a href="{TagURL}"> {Tag},</a> {/block:Tags}</div>{/block:HasTags}</div>
  740.  
  741. {/block:Posts}
  742. {block:PostNotes}<div id="notes">{PostNotes}{/block:PostNotes}
  743. {/block:Posts}</div></div></div>
  744.  
  745.  
  746.  <div style="position:fixed;bottom:0px; right:7px; font-size:5px; font-style:none; color:#000; font-weight:lighter; letter-spacing:1px; font-family:helvetica; text-transform:uppercase; border:0px solid;padding:4px;"><a href="http://www.fearwakes.com/">©fearwakes</div>
  747.    
  748. </body><div id="02" class="popup_block">
  749.  
  750. <Center><h1>contact</h1></Center><br><p><iframe frameborder="0" scrolling="yes" width="100%" height="190" src="http://www.tumblr.com/ask_form/{Name}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form">
  751. </center></div>
  752.  
  753.  
  754. </div></div></div></div></div></div></div></div></div></div></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement