Advertisement
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">
- <!--
- redux edit by yours truly
- seansoo.tumblr.com/ask
- if you have any theme questions
- send it off anonymous
- or i'll ignore it
- -->
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta name="text:mp3 url" content=""/>
- <meta name="text:link 1 url" content="/"/>
- <meta name="text:link 1 title" content="refresh"/>
- <meta name="text:link 2 url" content=""/>
- <meta name="text:link 2 title" content=""/>
- <meta name="text:link 3 url" content=""/>
- <meta name="text:link 3 title" content=""/>
- <meta name="text:link 4 url" content=""/>
- <meta name="text:link 4 title" content=""/>
- <meta name="text:link 5 url" content=""/>
- <meta name="text:link 5 title" content=""/>
- <meta name="image:favicon" content="http://cdn.wikimg.net/strategywiki/images/b/bf/The_Legend_of_Zelda_The_Minish_Cap_Item_Small_Shield.png" />
- <meta name="color:background" content="#ffffff">
- <link href="#s-m-t-tooltip" rel="stylesheet" type="text/css" />
- <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
- <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
- <script>
- (function($){
- $(document).ready(function(){
- $("a[title]").style_my_tooltips({
- tip_follows_cursor:true,
- tip_delay_time:50,
- tip_fade_speed:500,
- attribute:"title"
- });
- });
- })(jQuery);
- </script>
- <script>
- var html5_audiotypes={
- "mp3": "audio/mpeg",
- "mp4": "audio/mp4",
- "ogg": "audio/ogg",
- "wav": "audio/wav"
- }
- function createsoundbite(sound){
- var html5audio=document.createElement('audio')
- if (html5audio.canPlayType){ //check support for HTML5 audio
- for (var i=0; i<arguments.length; i++){
- var sourceel=document.createElement('source')
- sourceel.setAttribute('src', arguments[i])
- if (arguments[i].match(/\.(\w+)$/i))
- sourceel.setAttribute('type', html5_audiotypes[RegExp.$1])
- html5audio.appendChild(sourceel)
- }
- html5audio.load()
- html5audio.playclip=function(){
- html5audio.pause()
- html5audio.currentTime=0
- html5audio.play()
- }
- return html5audio
- }
- else{
- return {playclip:function(){throw new Error("Your browser doesn't support HTML5 audio unfortunately")}}
- }
- }
- var clicksound=createsoundbite ("http://noproblo.dayjo.org/ZeldaSounds/OOT/OOT_PressStart.wav")
- var mouseoversound=createsoundbite("http://noproblo.dayjo.org/ZeldaSounds/OOT/OOT_PauseMenu_Cursor.wav")
- </script>
- <script type="text/javascript">
- // <![CDATA[
- var colour="#bfbfbf";
- var sparkles=120;
- /****************************
- * Tinkerbell Magic Sparkle *
- * (c) 2005 mf2fm web-design *
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var x=ox=400;
- var y=oy=300;
- var swide=800;
- var shigh=600;
- var sleft=sdown=0;
- var tiny=new Array();
- var star=new Array();
- var starv=new Array();
- var starx=new Array();
- var stary=new Array();
- var tinyx=new Array();
- var tinyy=new Array();
- var tinyv=new Array();
- window.onload=function() { if (document.getElementById) {
- var i, rats, rlef, rdow;
- for (var i=0; i<sparkles; i++) {
- var rats=createDiv(3, 3);
- rats.style.visibility="hidden";
- document.body.appendChild(tiny[i]=rats);
- starv[i]=0;
- tinyv[i]=0;
- var rats=createDiv(5, 5);
- rats.style.backgroundColor="transparent";
- rats.style.visibility="hidden";
- var rlef=createDiv(1, 5);
- var rdow=createDiv(5, 1);
- rats.appendChild(rlef);
- rats.appendChild(rdow);
- rlef.style.top="2px";
- rlef.style.left="0px";
- rdow.style.top="0px";
- rdow.style.left="2px";
- document.body.appendChild(star[i]=rats);
- }
- set_width();
- sparkle();
- }}
- function sparkle() {
- var c;
- if (x!=ox || y!=oy) {
- ox=x;
- oy=y;
- for (c=0; c<sparkles; c++) if (!starv[c]) {
- star[c].style.left=(starx[c]=x)+"px";
- star[c].style.top=(stary[c]=y)+"px";
- star[c].style.clip="rect(0px, 5px, 5px, 0px)";
- star[c].style.visibility="visible";
- starv[c]=50;
- break;
- }
- }
- for (c=0; c<sparkles; c++) {
- if (starv[c]) update_star(c);
- if (tinyv[c]) update_tiny(c);
- }
- setTimeout("sparkle()", 40);
- }
- function update_star(i) {
- if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
- if (starv[i]) {
- stary[i]+=1+Math.random()*3;
- if (stary[i]<shigh+sdown) {
- star[i].style.top=stary[i]+"px";
- starx[i]+=(i%5-2)/5;
- star[i].style.left=starx[i]+"px";
- }
- else {
- star[i].style.visibility="hidden";
- starv[i]=0;
- return;
- }
- }
- else {
- tinyv[i]=50;
- tiny[i].style.top=(tinyy[i]=stary[i])+"px";
- tiny[i].style.left=(tinyx[i]=starx[i])+"px";
- tiny[i].style.width="2px";
- tiny[i].style.height="2px";
- star[i].style.visibility="hidden";
- tiny[i].style.visibility="visible"
- }
- }
- function update_tiny(i) {
- if (--tinyv[i]==25) {
- tiny[i].style.width="1px";
- tiny[i].style.height="1px";
- }
- if (tinyv[i]) {
- tinyy[i]+=1+Math.random()*3;
- if (tinyy[i]<shigh+sdown) {
- tiny[i].style.top=tinyy[i]+"px";
- tinyx[i]+=(i%5-2)/5;
- tiny[i].style.left=tinyx[i]+"px";
- }
- else {
- tiny[i].style.visibility="hidden";
- tinyv[i]=0;
- return;
- }
- }
- else tiny[i].style.visibility="hidden";
- }
- document.onmousemove=mouse;
- function mouse(e) {
- set_scroll();
- y=(e)?e.pageY:event.y+sdown;
- x=(e)?e.pageX:event.x+sleft;
- }
- function set_scroll() {
- if (typeof(self.pageYOffset)=="number") {
- sdown=self.pageYOffset;
- sleft=self.pageXOffset;
- }
- else if (document.body.scrollTop || document.body.scrollLeft) {
- sdown=document.body.scrollTop;
- sleft=document.body.scrollLeft;
- }
- else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
- sleft=document.documentElement.scrollLeft;
- sdown=document.documentElement.scrollTop;
- }
- else {
- sdown=0;
- sleft=0;
- }
- }
- window.onresize=set_width;
- function set_width() {
- if (typeof(self.innerWidth)=="number") {
- swide=self.innerWidth;
- shigh=self.innerHeight;
- }
- else if (document.documentElement && document.documentElement.clientWidth) {
- swide=document.documentElement.clientWidth;
- shigh=document.documentElement.clientHeight;
- }
- else if (document.body.clientWidth) {
- swide=document.body.clientWidth;
- shigh=document.body.clientHeight;
- }
- }
- function createDiv(height, width) {
- var div=document.createElement("div");
- div.style.position="absolute";
- div.style.height=height+"px";
- div.style.width=width+"px";
- div.style.overflow="hidden";
- div.style.backgroundColor=colour;
- return (div);
- }
- // ]]>
- </script>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>{Title}</title>
- {block:Description}
- <meta name="description" content="{MetaDescription}"/>
- {/block:Description}
- <link rel="shortcut icon" href="{image:favicon}"/>
- <link rel="apple-touch-icon" href="{PortraitURL-96}"/>
- <link rel="alternate" type="application/rss+xml" href="{RSS}"/>
- <style type="text/css">
- #ocarina {
- position: fixed;
- top: 25px;
- left: 25px;
- width: 50px;
- height: 26.5px;
- margin-bottom: -5px;
- padding: 5px;
- background: white;
- border: 1px solid #bfbfbf;
- -webkit-filter: drop-shadow(1px 1px 5px black);
- }
- #s-m-t-tooltip {
- min-width: 20px;
- z-index: 999;
- background: rgba(0, 0, 0, 0.75);
- font-size: 8px;
- font-family: consolas;
- letter-spacing: 2px;
- text-transform: uppercase;
- color: white;
- word-wrap: break-word;
- padding: 3px 7px;
- display: block;
- margin: -20px 0px 0px 0px;
- -webkit-border-radius: 4px;
- -moz-border-radius: 4px;
- border-radius: 4px;
- -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
- -moz-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
- box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
- margin-top: -30px;
- }
- #s-m-t-tooltip:after {
- position: absolute;
- display: block;
- content: "";
- bottom: -11px;
- left: 1em;
- border-color: #333 transparent transparent transparent;
- border-style: solid;
- border-width: 6px;
- height: 0;
- width: 0;
- }
- iframe#tumblr_controls {
- -webkit-filter: invert(100%);
- -moz-filter: invert(100%);
- -o-filter: invert(100%);
- opacity: 1;
- z-index: 99999999999999999999999999999999999999999999999999999 !important;
- }
- body {
- cursor: url(http://img69.imageshack.us/img69/7673/cursorw.png), auto;
- background: {color:background};
- margin: 0;
- padding: 0;
- font-family: consolas;
- }
- ::-webkit-scrollbar {
- display: none;
- }
- .clear {
- clear: both;
- height: 0px;
- overflow: hidden;
- }
- a img {
- border: none;
- }
- #heartless {
- width: 845px;
- margin: 0 auto;
- }
- #heartless #title {
- position: relative;
- margin-top: 75px;
- color: #fff;
- font-size: 50px;
- font-weight: bold;
- font-family: consolas;
- text-shadow: 1px 3px 5px rgba(0,0,0, 0.5);
- letter-spacing: -1px;
- }
- #heartless #content {
- margin-top: 75px;
- width: 520px;
- float: right;
- }
- #heartless #content .post {
- -webkit-filter: drop-shadow(1px 1px 5px black);
- font-family: consolas;
- background: #fff;
- border: 1px solid #bfbfbf;
- padding: 10px;
- position: relative;
- }
- #heartless #content .post .media {
- text-align: center;
- margin-bottom: 10px;
- }
- #heartless #content .post .quotebg {
- font-family: georgia, serif;
- font-size: 150px;
- color: black;
- opacity: 0.25;
- filter: alpha(opacity=20);
- -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=20)";
- position: absolute;
- top: 70px;
- left: 10px;
- }
- #heartless #content .post .quote {
- color: gray;
- font-weight: bold;
- padding: 20px 20px 5px 20px;
- }
- #heartless #content .post .quote.short {
- font-size: 33px;
- line-height: 35px;
- }
- #heartless #content .post .quote.medium {
- font-size: 25px;
- line-height: 28px;
- }
- #heartless #content .post .quote.long {
- font-size: 18px;
- line-height: 22px;
- }
- #heartless #content .post .quote_source *:first-child {
- margin-top: 0px;
- }
- #heartless #content .post .quote_source *:last-child {
- margin-bottom: 0px;
- }
- #heartless #content .post .quote *:first-child {
- margin-top: 0px;
- }
- #heartless #content .post .quote *:last-child {
- margin-bottom: 0px;
- }
- #heartless #content .post .copy {
- color: #6e7173;
- padding: 10px;
- font-size: 13px;
- line-height: 15px;
- }
- #heartless #content .post .copy a {
- color: #6e7173;
- text-decoration: underline;
- }
- #heartless #content .post .copy p {
- margin: 10px 0 0 0;
- padding: 0;
- }
- #heartless #content .post .copy pre {
- margin: 10px 0px 10px 0px;
- padding: 10px;
- background-color: #e6e6e6;
- font: normal 11px Courier, monospace;
- overflow: auto;
- }
- #heartless #content .post .copy > p:first-child {
- margin-top: 0;
- }
- #heartless #content .post .copy img {
- max-width: 100%;
- }
- #heartless #content .post .audio {
- background: white;
- border: 1px solid #bfbfbf;
- float: left;
- padding: 7px;
- margin-bottom: 10px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- }
- #heartless #content .post .audio .player {
- float: left;
- width: 322px;
- }
- #heartless #content .post .audio .player .audio_player embed {
- border: 1px solid #c8c8c8;
- }
- #heartless #content .post .audio .meta {
- padding: 8px 13px;
- height: 13px;
- float: left;
- color: #666;
- font-family: consolas;
- font-size: 11px;
- text-transform: lowercase;
- }
- #heartless #content .post .audio .meta a {
- color: #666;
- text-decoration: none;
- }
- #heartless #content .post .album_art {
- text-align: center;
- }
- #heartless #content .post .question {
- color: white;
- font-size: 12px;
- font-weight: none;
- background: black;
- border-radius: 5px;
- margin: 0 0 15px 0;
- padding: 15px 20px;
- position: relative;
- }
- #heartless #content .post .question .nipple {
- width: 0;
- height: 0;
- border-left: 10px solid transparent;
- border-right: 10px solid transparent;
- border-top: 10px solid #111;
- z-index: 9999;
- position: relative;
- }
- #heartless #content .post .asker_container {
- font-size: 12px;
- margin: 0 0 20px 24px;
- }
- #heartless #content .post .asker_container img {
- margin: 0 12px -7px 0;
- }
- #heartless #content .post .asker_container a.asker {
- color: black;
- }
- #heartless #content .post .title {
- color: #494949;
- font-size: 16px;
- font-weight: bold;
- padding: 10px 10px 0 10px;
- }
- #heartless #content .post img {
- max-width: 500px;
- }
- #heartless #content .post .chat {
- background-color: #fff;
- border-left: 5px solid #dedddd;
- margin: 10px 10px 0 10px;
- font-size: 14px;
- }
- #heartless #content .post .chat .lines {
- margin-left: 1px;
- }
- #heartless #content .post .chat .lines .line {
- background-color: #eaeaea;
- color: #494949;
- margin-bottom: 1px;
- padding: 3px 5px;
- }
- #heartless #content .post .chat .lines .line.even {
- background-color: #dedddd;
- }
- #heartless #content .post .link {
- margin: 4px 0 2px 0;
- font-size: 16px;
- line-height: 25px;
- }
- #heartless #content .post .link a {
- background-color: transparent;
- color: black;
- font-weight: bold;
- padding: 5px 7px;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- }
- #heartless #content .post .link a:hover {
- opacity: 0.9;
- filter: alpha(opacity=90);
- -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
- }
- #heartless #content .post .footer {
- text-transform: lowercase;
- background: white;
- border: 1px solid #bfbfbf;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- font-family: consolas;
- font-size: 11px;
- color: #666;
- padding: 5px 10px;
- margin-top: 5px;
- }
- #heartless #content .post .footer.for_permalink:hover {
- opacity: 0.9;
- filter: alpha(opacity=90);
- -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
- }
- #heartless #content .post .footer .date {
- text-transform: lowercase;
- width: 67%;
- float: left;
- color: #666;
- }
- #heartless #content .post .footer .notes {
- width: 33%;
- float: right;
- text-align: right;
- color: #666;
- }
- #heartless #content .post .footer .notes a {
- color: #666;
- }
- #heartless #content .post .footer .tags a {
- color: #bfbfbf;
- }
- #heartless #content .post .footer .tags .tag-commas:last-child {
- display: none;
- color: #bfbfbf;
- }
- #heartless #content .post .footer.with_source_url .tags {
- max-width: 330px;
- color: #bfbfbf;
- float: left;
- }
- #heartless #content .post .footer.with_source_url .source_url {
- float: right;
- max-width: 160px;
- overflow: hidden;
- white-space: nowrap;
- }
- #heartless #content .post .footer.with_source_url .source_url img {
- vertical-align: top;
- -moz-opacity: 0.5;
- opacity: 0.5;
- }
- #heartless #content .post .footer.with_source_url .source_url:hover img {
- -moz-opacity: 0.7;
- }
- #heartless #content .post a {
- color: #6e7173;
- text-decoration: none;
- }
- #heartless #content .post .copy blockquote {
- margin: 10px 0px 10px 10px;
- padding-left: 15px;
- border-left: solid 4px #dcdcdc;
- }
- #heartless #content .post .copy blockquote blockquote {
- border-left: solid 4px #cccccc;
- }
- #heartless #content .post .copy blockquote blockquote blockquote {
- border-left: solid 4px #bcbcbc;
- }
- #heartless #content .post .copy blockquote blockquote blockquote blockquote {
- border-left: solid 4px #acacac;
- }
- #heartless #content .post .copy blockquote blockquote blockquote blockquote blockquote {
- border-left: solid 4px #9c9c9c;
- }
- #heartless #content .post .copy blockquote blockquote blockquote blockquote blockquote blockquote {
- border-left: solid 4px #8c8c8c;
- }
- #heartless #content .bottom {
- width: 513px;
- height: 40px;
- margin: 0 auto;
- }
- #heartless #content #navigation {
- text-align: right;
- padding-bottom: 35px;
- text-transform: lowercase;
- }
- #heartless #content #navigation a {
- background-color: #fff;
- border: 1px solid #bfbfbf;
- color: gray;
- -webkit-filter: drop-shadow(1px 1px 5px black);
- padding: 5px 10px;
- text-decoration: none;
- margin-left: 25px;
- }
- #heartless #content #navigation a:hover {
- opacity: 0.9;
- filter: alpha(opacity=90);
- -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
- }
- #heartless #content #navigation.jump_pagination {
- }
- #heartless #content #navigation.jump_pagination a {
- margin: 0 0 0 4px;
- }
- #heartless #content #navigation.jump_pagination .current_page {
- color: #fff;
- background-color: rgba(255,255,255, 0.1);
- border: 1px solid #bfbfbf;
- -webkit-filter: drop-shadow(1px 1px 5px black);
- padding: 3px 8px;
- margin: 0 0 0 4px;
- cursor: default;
- }
- #heartless #content #navigation.jump_pagination .jump_page {
- color: #fff;
- background-color: rgba(255,255,255, 0.1);
- border: 1px solid #bfbfbf;
- -webkit-filter: drop-shadow(1px 1px 5px black);
- padding: 3px 8px;
- margin: 0 0 0 4px;
- cursor: default;
- }
- #heartless #content .post .notecontainer {
- background: #eaeaea;
- -moz-border-radius: 4px;
- -webkit-border-radius: 4px;
- border-radius: 4px;
- font-family: consolas;
- font-size: 11px;
- color: #666;
- margin-top: 10px;
- margin-bottom: -10px;
- }
- #heartless #content .post .notecontainer a {
- color: #666;
- text-decoration: underline;
- }
- #heartless #content .post .notecontainer ol.notes {
- padding: 0px 0 10px 0;
- list-style-type: none;
- font-size: 11px;
- }
- #heartless #content .post .notecontainer ol.notes li.note {
- padding: 10px 10px 0 10px;
- }
- #heartless #content .post .notecontainer ol.notes li.note img.avatar {
- border: 0px solid transparent;
- border-radius: 25px;
- vertical-align: -4px;
- margin-right: 10px;
- width: 16px;
- height: 16px;
- }
- #heartless #content .post .notecontainer ol.notes li.note span.action {
- font-weight: normal;
- }
- #heartless #content .post .notecontainer ol.notes li.note .answer_content {
- font-weight: normal;
- }
- #heartless #content .post .notecontainer ol.notes li.note blockquote {
- border-left: 2px solid #666;
- padding: 4px 10px;
- margin: 10px 0px 0px 25px;
- }
- #heartless #content .post .notecontainer ol.notes li.note blockquote a {
- text-decoration: none;
- }
- #triforce {
- display: inline-block;
- margin-left: -1px;
- margin-top: 10px;
- margin-bottom: -5px;
- transition: .15s ease-in-out;
- -moz-transition: .15s ease-in-out;
- -webkit-transition: .15s ease-in-out;
- }
- #triforce:hover {
- display: inline-block;
- margin-left: -1px;
- margin-top: 10px;
- margin-bottom: -5px;
- -webkit-filter: drop-shadow(1px 1px 5px red);
- transition: .15s ease-in-out;
- -moz-transition: .15s ease-in-out;
- -webkit-transition: .15s ease-in-out;
- }
- #heartless #nobody {
- -webkit-filter: drop-shadow(1px 1px 5px black);
- border: 1px solid #bfbfbf;
- position: fixed;
- margin-top: 200px;
- width: 225px;
- height: auto;
- float: right;
- color: white;
- font-family: consolas;
- }
- #heartless #nobody a {
- color: {color:Background};
- }
- #heartless #nobody #top {
- background: #fff;
- padding: 0 20px;
- }
- #avatar {
- -webkit-filter: drop-shadow(1px 1px 2.5px black);
- opacity: 1.0;
- transition: .15s ease-in-out;
- -moz-transition: .15s ease-in-out;
- -webkit-transition: .15s ease-in-out;
- border: 1px double #bfbfbf;
- border-radius: 5px;
- width: 96px;
- height: 96px;
- padding: 5px;
- background: white;
- position: relative;
- top: -25px;
- left: 40px;
- }
- #avatar:hover {
- opacity: 0.75;
- transform: scale(1.15);
- -ms-transform: scale(1.15);
- -webkit-transform: scale(1.15);
- -moz-transform: scale(1.15);
- transition: .15s ease-in-out;
- -moz-transition: .15s ease-in-out;
- -webkit-transition: .15s ease-in-out;
- border: 1px double #bfbfbf;
- border-radius: 5px;
- width: 96px;
- height: 96px;
- padding: 5px;
- background: white;
- position: relative;
- top: -25px;
- left: 40px;
- }
- #heartless #nobody #top #description {
- font: consolas;
- font-size: 12px;
- color: gray;
- position: relative;
- top: -18px;
- }
- #heartless #nobody #top #description a {
- color: black;
- text-decoration: underline;
- }
- #heartless #nobody #top .content {
- margin-top: 2px;
- padding: 7px 10px;
- background: #eaeaea;
- color: #666;
- font-size: 11px;
- overflow: hidden;
- }
- #heartless #nobody #top a {
- text-decoration: none;
- }
- </style>
- <style type="text/css">{CustomCSS}</style>
- </head>
- <body>
- <div id="ocarina"><embed src="http://www.sheepproductions.com/billy/billy.swf?autoplay=false&f0={text:mp3 url}&t0=&total=1" quality="high" wmode="transparent" width="200" height="10" name="billy" align="middle" type="application/x-shockwave-flash" /></div>
- <div style="bottom: 5px; right: 5px; position: fixed; z-index: 99999;"><a href="http://seansoo.tumblr.com/" title="theme"><img src="http://31.media.tumblr.com/tumblr_lnvurxvJ8i1qepbs7.png"></a></div>
- <div id="heartless">
- <div id="content">
- {block:Posts}
- <div class="post">
- {block:Photo}
- <div class="media">{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}" />{LinkCloseTag}</div>
- {block:Caption}<div class="copy">{Caption}</div>{/block:Caption}
- {/block:Photo}
- {block:Video}
- <div class="media">{Video-500}</div>
- {block:Caption}<div class="copy">{Caption}</div>{/block:Caption}
- {/block:Video}
- {block:Audio}
- {block:AudioEmbed}{AudioEmbed}{/block:AudioEmbed}
- {block:AudioPlayer}
- {block:AlbumArt}
- <div class="album_art">
- <img src="{AlbumArtURL}" alt="{block:Artist}{Artist}{/block:Artist}{block:TrackName} - {TrackName}{/block:TrackName}" style="margin-bottom: 10px;"/>
- </div>
- {/block:AlbumArt}
- <div class="audio">
- <div class="player">{AudioPlayerWhite}</div>
- <div class="meta">{block:PlayCount}{PlayCountWithLabel}{/block:PlayCount}{block:ExternalAudio}<span class="download_external_audio"> • <a href="{ExternalAudioURL}">{lang:Download}</a></span>{/block:ExternalAudio}</div>
- <div class="clear"></div>
- </div>{/block:AudioPlayer}<div class="clear"></div>
- {block:Caption}<div class="copy">{Caption}</div>{/block:Caption}
- {/block:Audio}
- {block:Quote}
- <div class="quote {Length}">{Quote}</div>
- <div class="copy">
- <div class="quotebg">“</div>
- {block:Source}
- <table border="0" cellpadding="0" cellspacing="0" width="100%"><tr><td valign="top" style="width:20px;">—</td>
- <td valign="top" class="quote_source">
- {Source}
- </td>
- </tr>
- </table>
- {/block:Source}
- </div>
- {/block:Quote}
- {block:Text}
- {block:Title}<div class="title">{Title}</div>{/block:Title}
- <div class="copy">{Body}</div>
- {/block:Text}
- {block:Answer}
- <div class="question">
- {Question}
- </div>
- <div class="asker_container"><img src="{AskerPortraitURL-24}">{Asker}</div>
- <div class="copy">{Answer}</div>
- {/block:Answer}
- {block:Chat}
- {block:Title}<div class="title"><img src="http://i.imgur.com/h3OVg6M.png" title="chat"> {Title}</div>{/block:Title}
- <div class="chat"><div class="lines">{block:Lines}<div class="line {Alt}">{block:Label}<strong>{Label}</strong>{/block:Label} {Line}</div>{/block:Lines}</div></div><div class="clear"></div><div style="height:10px;"></div>{/block:Chat}
- {block:Link}
- <div class="link"><img src="http://orig07.deviantart.net/aabe/f/2008/067/4/0/the_legend_of_zelda__link_by_tehmr21.gif" title="link"><a href="{URL}" {Target}>{Name} »</a></div>
- {block:Description}<div class="copy">{Description}
- </div>{/block:Description}
- {/block:Link}
- {block:Date}
- <a href="{Permalink}">
- <div class="footer for_permalink">
- <div class="date">{block:Reblog}{TimeAgo}{/block:Reblog}
- {block:NotReblog}{TimeAgo}{/block:NotReblog}
- </div><div class="notes">{block:NoteCount}{NoteCount}{/block:NoteCount}</div><div class="clear"></div></div></a>{/block:Date}
- <div class="footer {block:ContentSource}with_source_url{/block:ContentSource}" style="display:none;{block:HasTags}display:block;{/block:HasTags}"><div class="tags">{block:Tags}<img src="http://lh5.ggpht.com/_NZJzdRm10Y0/TTSEuJNskzI/AAAAAAAAAFE/l9xLQCDtV5I/s800/gif8.gif">
- <a href="{TagURL}">{Tag}</a><span class="tag-commas">, </span>{/block:Tags}</div>{/block:HasTags}
- {block:ContentSource}<a href="{SourceURL}" class="source_url">(<img src="http://i122.photobucket.com/albums/o260/mhilka/minigifs/stara16.gif">: {block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}"/>{/block:SourceLogo}{block:NoSourceLogo}{SourceTitle}{/block:NoSourceLogo})</a>{/block:ContentSource}
- <div class="clear"></div>
- </div>
- {block:PostNotes}<div class="notecontainer">{PostNotes}</div>{/block:PostNotes}
- </div>
- <div class="bottom"></div>
- {/block:Posts}
- {block:Pagination}
- <div id="navigation" {block:IfEnableJumpPagination}class="jump_pagination"{/block:IfEnableJumpPagination}>
- {block:PreviousPage}<a href="{PreviousPage}">← previous</a>{/block:PreviousPage}
- {block:IfEnableJumpPagination}
- {block:JumpPagination length="5"}
- {block:CurrentPage}
- <span class="current_page">{PageNumber}</span>
- {/block:CurrentPage}
- {block:JumpPage}
- <a class="jump_page" href="{URL}">{PageNumber}</a>
- {/block:JumpPage}
- {/block:JumpPagination}
- {/block:IfEnableJumpPagination}
- {block:NextPage}<a href="{NextPage}">continue →</a>{/block:NextPage}
- </div>
- {/block:Pagination}
- </div>
- </body>
- <div id="nobody">
- <div id="top">
- <div id="avatar"><a href="/"><img src="{PortraitURL-96}" title="{Title}" onmouseover="mouseoversound.playclip()" onclick="clicksound.playclip()"/></a></div>
- <div id="description" div style="margin-bottom: -5px; margin-top: 5px;"><center>{Description}
- <br>
- </center>
- <div id="triforce" onmouseover="mouseoversound.playclip()" onclick="clicksound.playclip()"><a href="{text:link 1 url}" title="{text:link 1 title}"><img src="http://ilovecandace.com/img/HeartContainer_Thumb.png"></a></div>
- <div id="triforce" onmouseover="mouseoversound.playclip()" onclick="clicksound.playclip()"><a href="{text:link 2 url}" title="{text:link 2 title}"><img src="http://ilovecandace.com/img/HeartContainer_Thumb.png"></a></div>
- <div id="triforce" onmouseover="mouseoversound.playclip()" onclick="clicksound.playclip()"><a href="{text:link 3 url}" title="{text:link 3 title}"><img src="http://ilovecandace.com/img/HeartContainer_Thumb.png"></a></div>
- <div id="triforce" onmouseover="mouseoversound.playclip()" onclick="clicksound.playclip()"><a href="{text:link 4 url}" title="{text:link 4 title}"><img src="http://ilovecandace.com/img/HeartContainer_Thumb.png"></a></div>
- <div id="triforce" onmouseover="mouseoversound.playclip()" onclick="clicksound.playclip()"><a href="{text:link 5 url}" title="{text:link 5 title}"><img src="http://ilovecandace.com/img/HeartContainer_Thumb.png"></a></div>
- </div>
- <div class="clear"></div></div><div class="clear"></div></div>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement