Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <head>
- </script>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="color:background" content="#0C6B77"/>
- <meta name="color:text" content="#000000"/>
- <meta name="color:title" content="#000000"/>
- <meta name="color:link" content="#202020"/>
- <meta name="color:hover" content="#FFFFFF"/>
- <meta name="image:Background" content=""/>
- <meta name="image:Sidebar" content=""/>
- <meta name="if:Show Sidebar Image" content="1"/>
- <meta name="if:infinite scrolling" content="1"/>
- <meta name="if:rainbow links" content="1"/>
- <meta name="if:Faded Images" content="1"/>
- <meta name="if:show arrows" content="0"/">
- <meta name="text:Custom Link One Title" content="link" />
- <meta name="text:Custom Link One" content="http://" />
- <meta name="text:Custom Link Two Title" content="link" />
- <meta name="text:Custom Link Two" content="http://" />
- <meta name="text:Custom Link Three Title" content="link" />
- <meta name="text:Custom Link Three" content="http://" />
- <meta name="text:Custom Link Four Title" content="link" />
- <meta name="text:Custom Link Four" content="http://" />
- {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
- <title>{block:SearchPage}Search results for "{SearchQuery}" - {/block:SearchPage}{block:PostSummary}
- {PostSummary} - {/block:PostSummary}{Title}</title>
- <style type="text/css">
- {block:ifFadedImages}img{-webkit-transition: opacity 0.5s linear;
- opacity: 0.85;}
- img:hover{-webkit-transition: opacity 0.5s linear;
- opacity: 2;}{/block:ifFadedImages}
- body{
- margin:0px;
- background-color: {color:Background};
- background-image:url({image:Background});
- background-attachment: fixed;
- background-repeat: repeat;
- }
- body, div, p, textarea, submit, input{
- font-family: cambria;
- font-size: 10px;
- line-height:10px;
- color:{color:Text};
- }
- p{
- margin:0px;
- margin-top:0px;
- }
- a:link,
- a:active,
- a:visited{
- color: {color:Link};
- text-decoration: none;
- }
- a:hover {
- color:{color:Hover};
- text-decoration: none;
- }
- #cage{
- margin:auto;
- position:relative;
- width:810px;
- overflow:hidden;
- color: {color:Title};
- _margin-left:10%;
- }
- #center{
- margin:auto;
- position:relative;
- width:750px;
- background-color:;
- overflow:auto;
- overflow-y:hidden;
- }
- #content{
- float:right;
- width:300px;
- padding-top:1px;
- padding-left:1px;
- padding-right:1px;
- margin-top:0px;
- margin-right: 290px;
- background:#FFFFFF;
- }
- #entry{
- background-color:;
- margin-top:0px;
- padding-top:0px;
- padding-bottom:0px;
- }
- #sidebar{
- position:fixed !important;
- width: 180px;
- height:auto;
- background-color:#FFFFFF;
- margin-left:470px;
- margin-top: 10px;
- padding:1px;
- padding-top:1px;
- border: 1px ;
- }
- #links {position:fixed; margin-top: 50px; height: auto; width: 80px; padding-left: 2px; margin-left: -1px; border-left: 1px dashed #000;}
- #postnotes{
- text-align: justify;
- }
- #postnotes blockquote{
- border: 0px;
- }
- .title{
- font-family: cambria;
- font-size: 12px;
- line-height: 10px;
- color: {color:Title};
- font-weight: normal;
- }
- blockquote{
- padding:0px 0px 2px 5px;
- margin:0px 0px 2px 1px;
- border-left: 1px dotted {color:Text};
- }
- blockquote p, ul{
- margin:0px;
- padding:0px;
- }
- a img{border: 0px;}
- ul, ol, li{list-style:none; margin:0px; padding:0px;}
- .user_1 .label, .user_2 .label, .user_3 .label, .user_4 .label, .user_5 .label, .user_6 .label,
- .user_7 .label, .user_8 .label, .user_9 .label {color:{color:Title};}
- .notes img{width:10px; position:relative; top:3px;}
- .permalink{color:; display:block; margin-left: 302px; position: absolute;text-align: left;}
- small{font-size: 90%;}
- {CustomCSS}
- </style>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
- <meta name="viewport" content="width=820" />
- {block:ifrainbowlinks}
- <script type='text/javascript'>
- //<![CDATA[
- var rate = 50;
- if (document.getElementById)
- window.onerror=new Function("return true")
- var objActive; // The object which event occured in
- var act = 0; // Flag during the action
- var elmH = 0; // Hue
- var elmS = 128; // Saturation
- var elmV = 255; // Value
- var clrOrg; // A color before the change
- var TimerID; // Timer ID
- if (document.all) {
- document.onmouseover = doRainbowAnchor;
- document.onmouseout = stopRainbowAnchor;
- }
- else if (document.getElementById) {
- document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
- document.onmouseover = Mozilla_doRainbowAnchor;
- document.onmouseout = Mozilla_stopRainbowAnchor;
- }
- function doRainbow(obj)
- {
- if (act == 0) {
- act = 1;
- if (obj)
- objActive = obj;
- else
- objActive = event.srcElement;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- function stopRainbow()
- {
- if (act) {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- function doRainbowAnchor()
- {
- if (act == 0) {
- var obj = event.srcElement;
- while (obj.tagName != 'A' && obj.tagName != 'BODY') {
- obj = obj.parentElement;
- if (obj.tagName == 'A' || obj.tagName == 'BODY')
- break;
- }
- if (obj.tagName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = objActive.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function stopRainbowAnchor()
- {
- if (act) {
- if (objActive.tagName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function Mozilla_doRainbowAnchor(e)
- {
- if (act == 0) {
- obj = e.target;
- while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
- obj = obj.parentNode;
- if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
- break;
- }
- if (obj.nodeName == 'A' && obj.href != '') {
- objActive = obj;
- act = 1;
- clrOrg = obj.style.color;
- TimerID = setInterval("ChangeColor()",100);
- }
- }
- }
- function Mozilla_stopRainbowAnchor(e)
- {
- if (act) {
- if (objActive.nodeName == 'A') {
- objActive.style.color = clrOrg;
- clearInterval(TimerID);
- act = 0;
- }
- }
- }
- function ChangeColor()
- {
- objActive.style.color = makeColor();
- }
- function makeColor()
- {
- // Don't you think Color Gamut to look like Rainbow?
- // HSVtoRGB
- if (elmS == 0) {
- elmR = elmV; elmG = elmV; elmB = elmV;
- }
- else {
- t1 = elmV;
- t2 = (255 - elmS) * elmV / 255;
- t3 = elmH % 60;
- t3 = (t1 - t2) * t3 / 60;
- if (elmH < 60) {
- elmR = t1; elmB = t2; elmG = t2 + t3;
- }
- else if (elmH < 120) {
- elmG = t1; elmB = t2; elmR = t1 - t3;
- }
- else if (elmH < 180) {
- elmG = t1; elmR = t2; elmB = t2 + t3;
- }
- else if (elmH < 240) {
- elmB = t1; elmR = t2; elmG = t1 - t3;
- }
- else if (elmH < 300) {
- elmB = t1; elmG = t2; elmR = t2 + t3;
- }
- else if (elmH < 360) {
- elmR = t1; elmG = t2; elmB = t1 - t3;
- }
- else {
- elmR = 0; elmG = 0; elmB = 0;
- }
- }
- elmR = Math.floor(elmR).toString(16);
- elmG = Math.floor(elmG).toString(16);
- elmB = Math.floor(elmB).toString(16);
- if (elmR.length == 1) elmR = "0" + elmR;
- if (elmG.length == 1) elmG = "0" + elmG;
- if (elmB.length == 1) elmB = "0" + elmB
- elmH = elmH + rate;
- if (elmH >= 360)
- elmH = 0;
- return '#' + elmR + elmG + elmB;
- }
- //]]>
- </script>
- {/block:ifrainbowlinks}
- </head>
- <body>
- <div id="cage">
- <div id="center">
- <div id="sidebar">
- {block:ifShowTitle}<center><div class="blogtitle"><font face="Lobster"><a href="/"><big><big><big>{Title}</big></big></big></font></a></div></center><br>{/block:ifShowTitle}
- {block:ifshowsidebarimage}<a href="/"><img src="{image:sidebar}" width=180px></a>{/block:ifshowsidebarimage}
- <center>{Description}
- <big><b><div style="float: left; position: fixed; bottom: 5px; left: 5px; text-transform:lowercase;"><a href="http://www.rev-rse.tumblr.com"><small> © theme</small></a></div></big></b>
- <big>
- {block:HasPages}{block:Pages}· <a href="{URL}" class="page">{Label}</a>{/block:Pages}{/block:HasPages}{/block:HasPages}
- <div id="links"><div class="nav"><a href="/">home</a>
- {block:AskEnabled}<p><a href="/ask">message</a></p>{/block:AskEnabled}
- {block:HasPages}{block:Pages}<a href="{URL}">{Label}</a>{/block:Pages}{/block:HasPages} {block:IfCustomLinkOneTitle}<p><a href="{text:Custom Link One}">{text:Custom Link One Title} </a></p>{/block:ifCustomLinkOneTitle}
- {block:ifCustomLinkTwoTitle}<p><a href="{text:Custom Link Two}"> {text:Custom Link Two Title} </a></p>{/block:ifCustomLinkTwoTitle}
- {block:ifCustomLinkThreeTitle}<p><a href="{text:Custom Link Three}"> {text:Custom Link Three Title} </a></p>{/block:ifCustomLinkThreeTitle}
- {block:ifCustomLinkFourTitle}<p><a href="{text:Custom Link Four}">{text:Custom Link Four Title} </a></p>{/block:ifCustomLinkFourTitle}
- <p><a href="http://rev-rse.tumblr.com/">credit</a></p><br>
- </div></div>
- <center>
- <br>
- {block:ifshowarrows}
- {block:NextPage}<a href="{NextPage}"><center>«</center></a>{/block:NextPage}
- {block:PreviousPage} <a href="{PreviousPage}"><center>»</center></a>{/block:PreviousPage}
- {block:PermalinkPagination}
- {block:NextPage}<a href="{NextPage}"><center>«</center></a>{/block:NextPage}
- {block:PreviousPage} <a href="{PreviousPage}"><center>»</center></a>{/block:PreviousPage}
- {/block:PermalinkPagination}
- {/block:ifshowarrows}
- {block:ifinfinitescrolling}{/block:ifinfinitescrolling}
- </center>
- </div>
- <div id="content">
- {block:Posts}
- <div id="entry">
- <a href="{permalink}">{block:Text}
- {block:Title}<span class="title">{Title}</span>{/block:Title}
- <span class="entrytext">{Body}</span>
- {/block:Text}
- {block:Link}
- <a href="{URL}" class="title">{Name}</a>
- {block:Description}{Description}{/block:Description}
- {block:Link}
- {block:Photo}<Center>
- {LinkOpenTag}<a href="{permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"width=300px/></a>
- {LinkCloseTag}</center>
- {/block:Photo}
- {block:Quote}
- <span class="title">{Quote}</span>
- {block:Source}{Source}{/block:Source}
- {/block:Quote}
- {block:Chat}
- {block:Title}<span class="title">{Title}</span>{/block:Title}
- <ul class="chat">
- {block:Lines}
- <li class="user_{UserNumber}">
- {block:Label}
- <span class="label">{Label}</span>
- {/block:Label}
- {Line}
- </li>
- {/block:Lines}
- </ul>
- {/block:Chat}
- {block:Audio}
- <center><div style="width:300px; height:20px;"><div
- style="float:left">{AudioPlayerWhite}</div><div style="margin-top:8px;
- float:right;"><small>
- {FormattedPlayCount} plays {block:ExternalAudio} // <a
- href="{ExternalAudioURL}">Download?</a>{/block:ExternalAudio}
- </small></div></div></centeR><BR>
- {block:permalinkpage}{block:ifShowCaptions}{block:Caption}{Caption}{/block:Caption}{/block:ifShowCaptions}{/block:permalinkpage}
- {/block:Audio}
- {block:Video}<center>
- {Video-300}<BR>
- {block:permalinkpage}on}{/block:permalinkpage}</center>
- {block:Video}
- {block:PostNotes}
- {block:Caption}{Caption}{/block:Caption}
- <center>{block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
- {block:HasTags}
- tagged as: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
- {block:RebloggedFrom}
- reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
- originally posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>
- {/block:RebloggedFrom}
- </center></span>
- <br>
- <div id="postnotes">{PostNotes}</div><br>
- <center>{block:ContentSource}
- <br><a href="{SourceURL}">
- {lang:Source}:
- {block:SourceLogo}
- <img src="{BlackLogoURL}" width="{LogoWidth}"
- height="{LogoHeight}" alt="{SourceTitle}" />
- {/block:SourceLogo}
- {block:NoSourceLogo}
- {SourceLink}
- {/block:NoSourceLogo}
- </a>
- {/block:ContentSource}</center>
- {/block:PostNotes}
- </div>
- {/block:Posts}
- {block:ifshowarrows}<center>{/block:ifshowarrows}</center>
- {block:ifinfinitescrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:ifinfinitescrolling}
- </div></div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment