Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head><title>{Title}</title>
- <link href='http://fonts.googleapis.com/css?family=Rokkitt' rel='stylesheet' type='text/css'>
- <script type="text/javascript">
- WebFontConfig = {
- google: { families: [ 'Rokkitt::latin' ] }
- };
- (function() {
- var wf = document.createElement('script');
- wf.src = ('https:' == document.location.protocol ? 'https' : 'http') +
- '://ajax.googleapis.com/ajax/libs/webfont/1/webfont.js';
- wf.type = 'text/javascript';
- wf.async = 'true';
- var s = document.getElementsByTagName('script')[0];
- s.parentNode.insertBefore(wf, s);
- })(); </script>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <script>
- $(document).ready(function() {
- //
- //When you click on a link with class of poplight and the href starts with a #
- $('a.poplight[href^=#]').click(function() {
- var popID = $(this).attr('rel'); //Get Popup Name
- var popURL = $(this).attr('href'); //Get Popup href to define size
- //Pull Query & Variables from href URL
- var query= popURL.split('?');
- var dim= query[1].split('&');
- var popWidth = dim[0].split('=')[1]; //Gets the first query string value
- //Fade in the Popup and add close button
- $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://tiny.cc/closeimg" class="btn_close" title="Close Window" alt="Close" /></a>');
- //Define margin for center alignment (vertical horizontal) - we add 80px to the height/width to accomodate for the padding and border width defined in the css
- var popMargTop = ($('#' + popID).height() + 80) / 2;
- var popMargLeft = ($('#' + popID).width() + 80) / 2;
- //Apply Margin to Popup
- $('#' + popID).css({
- 'margin-top' : -popMargTop,
- 'margin-left' : -popMargLeft
- });
- //Fade in Background
- $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
- $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'}) is used to fix the IE Bug on fading transparencies
- return false;
- });
- //Close Popups and Fade Layer
- $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
- $('#fade , .popup_block').fadeOut(function() {
- $('#fade, a.close').remove(); //fade them both out
- });
- return false;
- });
- });
- </script>
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
- </script>
- <script src="http://static.tumblr.com/ikeq9mi/DfYl6o46t/scrolltotop.min.js">
- </script>
- <a href="javascript:;" id="scrollToTop">
- <img src="{image:Back To Top}" border="0"></a>
- <!---- base theme by meliapond @ tumblr, for public use --->
- <meta name="color:Background" content="#ffffff"/>
- <meta name="color:Text" content="#838282"/>
- <meta name="color:Link" content="#b8b8b8"/>
- <meta name="image:sidebar" content=""/>
- <meta name="image:Link 1 Icon" content=""/>
- <meta name="image:Link 2 Icon" content=""/>
- <meta name="image:Link 3 Icon" content=""/>
- <meta name="image:Link 4 Icon" content=""/>
- <meta name="image:Link 5 Icon" content=""/>
- <meta name="image:Back To Top" content=""/>
- <meta name="text:Link URL 1" content="">
- <meta name="text:Link URL 2" content="">
- <meta name="text:Link URL 3" content="">
- <meta name="text:Link URL 4" content="">
- <meta name="text:Link URL 5" content="">
- <meta name="text:Tumblr URL" content="">
- <meta name="if:Search Bar" content="0">
- <style type="text/css">
- @import url(http://fonts.googleapis.com/css?family=Rokkitt);
- body {
- background:{color:background};
- margin:0px;
- color:{color:text};
- font-family:Calibri;
- font-size:10px;
- line-height:100%;
- cursor: url(http://media.tumblr.com/tumblr_lqcmexUvFW1qfc7qm.png), auto;
- }
- a {
- text-decoration:none;
- outline:none;
- -moz-outline-style:none;
- color:{color:link};
- }
- ::-moz-selection {
- background-color: #CFE6E8;
- color: #979B9C;
- }
- ::selection {
- background-color: #CFE6E8;
- color: #979B9C;
- }
- img {
- border:none;
- }
- blockquote {
- padding-left:5px;
- border-left:2px solid;
- }
- blockquote blockquote {
- padding-left:5px;
- border-left:2px solid;
- }
- h1 {
- font-size:15px;
- }
- .photo {
- filter: url("data:image/svg+xml;utf8,<svg xmlns=’http://www.w3.org/2000/svg’><filter id=’grayscale’><feColorMatrix type=’matrix’ values=’0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0’/></filter></svg>#grayscale"); /* Firefox 3.5+ */
- filter: gray; /* IE6-9 */
- -webkit-filter: grayscale(1);
- -webkit-transition: all 0.5s ease-in-out;
- -moz-transition: all 0.5s ease-in-out;
- -o-transition: all 0.5s ease-in-out;
- -ms-transition: all 0.5s ease-in-out;
- transition: all 0.5s ease-in-out;
- }
- .photo:hover{
- filter: none;
- -webkit-filter: grayscale(0);
- -webkit-transition: all 0.7s ease-in-out;
- -moz-transition: all 0.7s ease-in-out;
- -o-transition: all 0.7s ease-in-out;
- }
- #parceiros {
- opacity: .99; -webkit-transition:all 1s ease; -moz-transition:all 1s ease; -o-transition:all 1s ease;
- }
- #parceiros:hover a {
- opacity: .20;
- }
- #parceiros a {
- opacity: .80; -webkit-transition:all 1s ease; -moz-transition:all 1s ease; -o-transition:all 1s ease;
- }
- #parceiros a:hover {
- opacity: .99;
- }
- #entries {
- padding:10px;
- width:500px;
- margin-left:500px;
- margin-top:40px;
- }
- #post {
- width:500px;
- padding-bottom:20px;
- }
- #sidebar {
- width:150px;
- position:fixed;
- margin-left:300px;
- margin-top:100px;
- }
- #title {
- font-family: 'Rokkitt', serif;
- font-size:15px;
- text-align:center;
- margin-bottom:5px;
- }
- #sidebarimage {
- width 150px;
- }
- #sidebarimage img {
- width:150px;
- }
- #description {
- padding:5px;
- text-align:center;
- }
- #pagination {
- font-size:20px;
- text-align:center;
- }
- #info {
- text-align:center;
- margin-top:10px;
- }
- #asker {
- float:left;
- margin-right:5px;
- }
- #fade {
- display: none;
- background: #000;
- position: fixed;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- opacity: .80;
- z-index: 9999;
- }
- #scrollToTop:link,#scrollToTop:visited { color: transparent; background-color: transparent; display: none; position: fixed; bottom: 15px; right: 15px;}
- {CustomCSS}</style></head><body>
- <div id="sidebar">
- <div id="title">{Title}</div>
- <center>
- <a href="/">home</a> |
- <a href="/ask">message</a> |
- <a href="/archive">history</a> |
- <a href="http://saengeols.tumblr.com">✽</a>
- </center>
- <br>
- <div id="sidebarimage"><img src="{image:sidebar}"></div>
- <br>
- <div id="parceiros"> <center>
- <a href="{text:Link URL 1}"><img src="{image:Link 1 Icon}" /></a>
- <a href="{text:Link URL 2}"><img src="{image:Link 2 Icon}" /></a>
- <a href="{text:Link URL 3}"><img src="{image:Link 3 Icon}" /></a>
- <a href="{text:Link URL 4}"><img src="{image:Link 4 Icon}" /></a>
- <a href="{text:Link URL 5}"><img src="{image:Link 5 Icon}" /></a>
- <br>
- </center> </div>
- <div id="description">{Description}</div>
- <br>
- {block:IfSearchBar}
- <form action="/search" method="get">
- <input type="text" name="q" value="" style="width:97px; height:11px; background-color:#ffffff; color: #000000; font-size: 11px; border: 1px dotted #696969;"/>
- <input type="button" value="search" style="font-size: 9px; background-color:#ffffff; color: #000000; border: 1px solid #696969;"/></form>
- {/block:IfSearchBar}
- <div id="pagination">
- {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}
- {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}
- </div>
- </div>
- <div id="entries">{block:Posts}<div id="post">
- {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
- {block:Photo}{LinkOpenTag}<div class="photo"><img src="{PhotoURL-500}"></div>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
- {block:Photoset}<div class="photo">{Photoset-500}</div>{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
- {block:Quote}{Quote}{block:Source} —{Source}{/block:Source}{/block:Quote}
- {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
- {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
- {block:Audio}{AudioPlayerWhite}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
- {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
- {block:Answer}<div id="asker"><img src="{AskerPortraitURL-24}"></div>{Asker}:<br>{Question}<br>{Answer}{/block:Answer}
- <div id="info">
- {block:Date}posted {TimeAgo}{/block:Date} with <a href="{Permalink}">
- {NoteCountWithLabel}</a>{block:RebloggedFrom}<br>via:<a href="{ReblogParentURL}"
- title="{ReblogParentTitle}">{ReblogParentName}</a> source:<a href="{ReblogRootURL}"title="{ReblogRoottitle}">{ReblogRootName}</a>{/block:RebloggedFrom}<br> {block:HasTags}{block:Tags} #<a href="{TagURL}">{Tag}</a>{/block:Tags}{/block:HasTags}</div>
- </div>
- {block:PostNotes}{PostNotes}{/block:PostNotes}
- {/block:Posts}</div>
- </body>
- </div>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment