Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html lang="en">
- <!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">
- <head>
- <script type="text/javascript"
- src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
- <link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
- <!--DEFAULT VARIABLES-->
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
- <meta name="color:background" content="#fcfcfc"/>
- <meta name="color:link" content="#777"/>
- <meta name="color:text" content="#777"/>
- <meta name="color:title" content="#333"/>
- <meta name="color:hover" content="#373638"/>
- <meta name="color:text shadow" content="#aaa"/>
- <meta name="color:scrollbar" content="#777"/>
- <meta name="image:background" content="1"/>
- <meta name="image:cursor" content=""/>
- <meta name="image:corner" content="1"/>
- <meta name="text:Link 1 URL" content=""/>
- <meta name="text:Link 1" content=""/>
- <meta name="text:Link 2" content=""/>
- <meta name="text:Link 2 URL" content=""/>
- <meta name="text:Link 3" content=""/>
- <meta name="text:Link 3 URL" content=""/>
- <style type="text/css">body, a, a:hover {cursor: url({image:cursor}), progress;}</style>
- <script type="text/javascript">
- // <![CDATA[
- var colour="pink"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
- var sparkles=50;
- /****************************
- * Tinkerbell Magic Sparkle *
- *(c)2005-13 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";
- rats.style.zIndex="999";
- 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";
- rats.style.zIndex="999";
- 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 (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
- 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+1)+"px";
- star[c].style.clip="rect(0px, 5px, 5px, 0px)";
- star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
- 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;
- starx[i]+=(i%5-2)/5;
- if (stary[i]<shigh+sdown) {
- star[i].style.top=stary[i]+"px";
- 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";
- tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
- 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;
- tinyx[i]+=(i%5-2)/5;
- if (tinyy[i]<shigh+sdown) {
- tiny[i].style.top=tinyy[i]+"px";
- 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) {
- if (e) {
- y=e.pageY;
- x=e.pageX;
- }
- else {
- set_scroll();
- y=event.y+sdown;
- x=event.x+sleft;
- }
- }
- window.onscroll=set_scroll;
- function set_scroll() {
- if (typeof(self.pageYOffset)=='number') {
- sdown=self.pageYOffset;
- sleft=self.pageXOffset;
- }
- else if (document.body && (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() {
- var sw_min=999999;
- var sh_min=999999;
- if (document.documentElement && document.documentElement.clientWidth) {
- if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
- if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
- }
- if (typeof(self.innerWidth)=='number' && self.innerWidth) {
- if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
- if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
- }
- if (document.body.clientWidth) {
- if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
- if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
- }
- if (sw_min==999999 || sh_min==999999) {
- sw_min=800;
- sh_min=600;
- }
- swide=sw_min;
- shigh=sh_min;
- }
- 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";
- return (div);
- }
- function newColour() {
- var c=new Array();
- c[0]=255;
- c[1]=Math.floor(Math.random()*256);
- c[2]=Math.floor(Math.random()*(256-c[1]/2));
- c.sort(function(){return (0.5 - Math.random());});
- return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
- }
- // ]]>
- </script>
- <style type="text/css">
- #tumblr_controls{
- position:fixed !important;
- -webkit-filter: invert(100%)
- }
- iframe#tumblr_controls {right:3px !important; position: fixed !important;-webkit-transition: opacity 0.7s linear;opacity: 0.2;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out;}
- iframe#tumblr_controls:hover{-webkit-transition: opacity 0.7s linear;opacity: 1;-webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;}
- p {
- margin:0px;
- margin-top:0px;
- }
- body {
- margin: 5px;
- font-family: calibri;
- font-size:12px;
- letter-spacing:1px;
- background-attachment: fixed;
- background-repeat: repeat;
- color:{color:text};
- background-color: {color:Background};
- background-image:url({image:Background});
- }
- a:link, a:active, a:visited{
- text-decoration: none;
- -webkit-transition: all 0.6s ease-out;
- -moz-transition: all 0.6s ease-out;
- -o-transition: all 0.6s ease-out;
- transition: all 0.6s ease-out;
- color:{color:link};
- }
- a:hover {
- text-decoration: none;
- -webkit-transition: all 0.3s ease-out;
- -moz-transition: all 0.3s ease-out;
- -o-transition: all 0.3s ease-out;
- transition: all 0.3s ease-out;
- cursor: url(http://i.imgur.com/2qleX.jpg), auto;
- color: {color:Hover};
- text-shadow:0px 0px 2px {color:text shadow};
- }
- div#center{
- margin:auto;
- position:relative;
- width:1000px;
- background-color:;
- overflow:auto;
- overflow-y:hidden;
- }
- .entry {
- float:left;
- display: block;
- margin:15px;
- overflow:hidden;
- width:250px;
- background:white;
- line-height:22px;
- letter-spacing:1px;
- padding:15px;
- border:1px solid #eee;
- box-shadow: 9px 9px rgba(0,0,0,.07);
- -webkit-transition: all 0.7s ease-out;
- -moz-transition: all 0.7s ease-out;transition: all 0.7s ease-out;
- opacity:.9;
- border-radius:0px;
- outline-offset:-8px;
- outline:1px dashed #ddd;
- box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- {block:PermalinkPage}
- width:500px;
- text-align:left;
- line-height:10px;
- {/block:PermalinkPage}
- }
- .entry .perma{
- width:260px;
- height:auto;
- margin-left:-7px;
- position: absolute;
- line-height: 14px;
- overflow:hidden;
- text-align:center;
- margin-top:-2px;
- padding:3px;
- background:white;
- word-spacing:2px;
- letter-spacing:1px;
- opacity: 0.0;
- -webkit-transition: all .7s ease;
- -moz-transition: all .7s ease;
- -o-transition: all .7s ease;
- transition: all .7s ease;
- }
- .entry:hover .perma{
- overflow:visible;
- opacity:0.95;
- }
- #posts {
- width:960px;
- margin-top:170px;
- margin-left:30px;
- right:auto;
- background:transparent;
- margin-right:auto;
- position:relative;
- overflow: hidden;
- }
- #sidebar{
- text-align: center;
- margin: 20px auto 10px;
- padding:3px;
- background: #ffffff;
- border: 0px solid #000000;
- top: -20px;
- width: 100%;
- height:110px;
- left:0px;
- z-index: 99;
- position: fixed;
- background-hover:filter:alpha(opacity=100);
- }
- #sidebar2{
- position:fixed !important;
- width:170px;
- background:white;
- height:216px;
- top:200px;
- left:100px;
- border-radius:10px;
- border:1px solid #eee;
- box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- outline-offset:-8px;
- outline:1px dashed #ddd;
- box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
- }
- a.kaito {
- border: 1px solid #e6e6e6;
- margin-left: 2px;
- margin-bottom: 4px;
- text-align: center;
- width: 55px;
- background: #fff;
- display: inline-block;
- color:#555;
- font:normal 10px 'calibri light';
- text-transform:uppercase;
- letter-spacing: 1px;
- padding:2px;
- border-radius:4px;
- filter: alpha(opacity = 80);
- opacity:.8;
- -moz-transition-duration: 1s;-
- webkit-transition-duration: 1s;
- }
- #description{
- color:color: {color:description};
- line-height:10px;
- font-weight:normal;
- font-size:9px;
- text-transform:uppercase;
- letter-spacing:1px;
- }
- .bows {
- {block:ifshowbow} display:none; {/block:ifshowbow}top: 160px;left:25px; padding: 10px; z-index: 9999; position:fixed; width: 150px;
- height: 40px; transform: rotate(-45deg); -ms-transform: rotate(-45deg); /* IE 9 */ -webkit-transform: rotate(-45deg); /* Safari and Chrome */ opacity: 1;}
- @font-face { font-family: "foolforlove"; src: url('http://static.tumblr.com/e1djgf7/RM1n9io92/fool_for_love.ttf')}
- h1 {
- font-family: foolforlove;
- font-size: 18px;
- letter-spacing:1px;
- line-height: 12px;
- font-weight: normal;
- text-transform: normalcase;
- text-align:center;
- padding-bottom: 8px;
- }
- @font-face { font-family: "Camilla"; src: url('http://static.tumblr.com/dcylwch/HvDmhxbob/cuttyfruty.ttf'); }
- askk {
- font-family:"Camilla";
- font-size: 15px;
- z-index:1;
- color: {color:Title};
- }
- .title{
- line-height: 16px;
- font-size: 16px;
- font-family: 'Raleway', sans-serif;
- color:{color:Title};
- }
- .permalink{
- text-transform: uppercase;
- font-size:8px;
- display: block;
- text-align: center;
- text-decoration: none;
- margin-top:8px;
- margin-bottom:2px;
- padding:3px;
- border-top:1px solid #eee;
- }
- #audio {
- width:200px;
- height:auto;
- min-height:60px;
- padding-bottom:0px;
- }
- .cover {
- position:absolute;
- z-index:1;
- width:60px;
- height:60px;
- }
- .cover img {
- float:left;
- width:60px;
- height:60px;
- }
- .playbox {
- opacity:0.6;
- width:27px;
- height:30px;
- overflow:hidden;
- position:absolute;
- z-index:1000;
- margin-left:17px;
- margin-top:17px;
- text-align:center;
- }
- .info {
- margin-left:73px;
- margin-top:4px;
- line-height:14px;
- }
- #infscr-loading{
- bottom: -70px;
- position: absolute;
- left: 50%;
- margin-left:-8px;
- width:16px;
- height:11px;
- overflow:hidden;
- margin-bottom: 50px;
- }
- ::-webkit-scrollbar {
- width: 4px;
- height: 4px;
- border-left:0px solid #ccc;
- background-color:{color:background};
- }
- ::-webkit-scrollbar-thumb {
- background: {color:scrollbar};
- }
- ::-webkit-scrollbar {
- width: 5px;
- height: 5px;
- background: #dddddd;
- }
- ::-webkit-scrollbar-thumb {
- background-color:{color:scrollbar};
- }
- #postnotes{
- text-align: justify;}
- #postnotes blockquote{
- border: 0px;}
- blockquote{
- padding:0px 0px 2px 5px;
- margin:0px 0px 2px 10px;
- border-left: 1px dotted #555555;
- }
- 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:text};}
- .notes img{width:15px; position:relative; top:3px;border-radius:60px;}
- <--ses-->
- small{font-size: 90%;}
- #credit{position:fixed; bottom:10px; left:10px; font-size:10px; font-family:calibri;color:{color:text}; text-transform:uppercase;letter-spacing: 0px; font-style:normal; background:white; border:1px solid #aaa; padding:3px;}
- {CustomCSS}
- </style>
- {block:IndexPage}
- <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
- <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
- <script type="text/javascript">
- $(window).load(function(){
- var $wall = $('#posts');
- $wall.imagesLoaded(function(){
- $wall.masonry({
- itemSelector: '.entry, .entry_photo',
- isAnimated : false
- });
- });
- $wall.infinitescroll({
- navSelector : '#pagination',
- nextSelector : '#pagination a',
- itemSelector : '.entry, .entry_photo',
- bufferPx : 2000,
- debug : false,
- errorCallback: function() {
- $('#infscr-loading').fadeOut('normal');
- }},
- function( newElements ) {
- var $newElems = $( newElements );
- $newElems.hide();
- $newElems.imagesLoaded(function(){
- $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
- });
- }); $('#posts').show(500);
- });
- </script>
- {/block:IndexPage}
- <div style=" background-image: url('https://66.media.tumblr.com/477ef616eb26470b0f0d4482985f5bed/tumblr_inline_myucl6CFNA1rttsue.png'); top: 115px; width: 100%; left:0px; height: 29px; z-index: 99; position: fixed; background-hover:filter:alpha(opacity=120);"></div>
- <title>{title}</title>
- <link rel="shortcut icon" href="{Favicon}" />
- <meta name="viewport" content="width=820" />
- </head>
- <body>
- <BODY onselectstart="return false;" ondragstart="return false;">
- <div class="wrapper">
- <div class="header">
- </div>
- <div id="cage">
- <div id="center">
- <!---->
- <img src='{image:corner}' style='position:fixed;bottom:0px;right:0px;z-index:-999'/>
- <div id="sidebar">
- <br>
- <h1><a href="/">{Title}</a></h1>
- <div id="description">{Description}</div>
- <br>
- <center><img src="http://67.media.tumblr.com/38aada10cf3233a0cae950475e8ceccc/tumblr_inline_n2pif1Jp2J1qdlkyg.gif"></center>
- <br>
- </div>
- <div class="bows"><a href="/"><img src="http://media.tumblr.com/ecfeae153317c30de2b4a4ff303e0e8b/tumblr_inline_mhvgf1YE501qz4rgp.gif" width="130px;" ></a></div>
- <div id="sidebar2">
- <br>
- <center>
- <img src="http://fc07.deviantart.net/fs71/i/2009/346/c/9/Hot_Drinks_by_Ice_Pandora.png"><br>
- <br>
- <a class="kaito" href="/">home</a>
- <a class="kaito" href="/ask">ask</a>
- <a class="kaito" href="/archive">archive</a>
- <a class="kaito" href="{text:link 1 url}">{text:link 1}</a>
- <a class="kaito" href="{text:link 2 url}">{text:link 2}</a>
- <a class="kaito" href="{text:link 3 url}">{text:link 3}</a>
- <br><br>
- <img src="http://66.media.tumblr.com/tumblr_lqep18Vd8f1ql1l0v.gif">
- </center>
- </div>
- <div id="credit"><a href="http://codingqt.tumblr.com/" title="theme credit">THEME</a></div>
- <!------------------------------------->
- <div class="left">
- <div id="posts">
- {block:Posts}
- <div class="entry">
- {block:Text}{block:Title}<span class="title">{Title}</span>{/block:Title}<span class="body">{Body}</span>
- <span class="permalink">
- <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a>
- <br>{/block:HasTags}</span>
- {/block:Text}
- {block:Answer}
- <div style="margin-top:2px;;margin-bottom:0px;min-height:30px; padding: 4px; background-color:#f7f7f7;border:1px solid #eee;border-radius:5px;">
- <img src="{AskerPortraitURL-30}" width="30" align="left" style="margin-right:3.5px;"/><askk>{asker}</askk>: {Question}</div>
- <div style="margin-top:2px; line-height:11px;margin-bottom:4px; background: transparent;">{Answer}</div>
- {/block:Answer}
- {block:Link}<a href="{URL}" class="title">{Name}</a>{block:Description}<div class="body">{Description}</div>{/block:Description}
- <span class="permalink">
- <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a> </span>
- {/block:Link}
- {block:Photo}
- {block:IndexPage}
- <center>
- <div class="perma">
- Posted on {dayofweek} · <a href="{ReblogURL}" target="_blank"> Reblog </a> </div>
- <div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
- {/block:IndexPage}
- {block:PermalinkPage}
- {LinkOpenTag}<div class="photo"><a href="{permalink}"><img class="photo" src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a></div>
- {LinkCloseTag}
- {/block:PermalinkPage}
- {/block:Photo}
- {block:Photoset}
- {block:IndexPage}
- <center>
- <div class="perma">
- Posted on {dayofweek} · <a href="{ReblogURL}" target="_blank"> Reblog </a> </div>
- {Photoset-250}</center>
- {/block:IndexPage}
- {block:PermalinkPage}
- <center>
- {Photoset-500}</center>
- {/block:PermalinkPage}
- {/block:Photoset}
- {block:Quote}<span class="title">"{Quote}"</span> — {block:Source}<b>{Source}</b>{/block:Source}<br>
- <span class="permalink">
- <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a>
- </span>{/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}
- <span class="permalink">
- <a href="{Permalink}">{notecountwithlabel}</a> - <a href="{ReblogURL}" target="_blank">Reblog</a> </span>
- {/block:Chat}
- {block:Audio}
- <div id="audio"><div class="cover"><img src="http://static.tumblr.com/k9utpfa/tcom8wpif/default_cover_m.jpg"></div>{block:AlbumArt}<div class="cover"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}<div class="playbox">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer}</div><div class="info"><b>Artist:</b> <span{block:Artist} style="display:none;"{/block:Artist}>Unknown</span>{block:Artist}{Artist}{/block:Artist}<br><b>Title:</b> <span{block:TrackName} style="display:none;"{/block:TrackName}>Unknown</span>{block:TrackName}{TrackName}{/block:TrackName}<br><b>Album:</b> <span{block:Album} style="display:none;"{/block:Album}>Unknown</span>{block:Album}{Album}{/block:Album}{block:PlayCount}<br><b>Plays:</b> {FormattedPlayCount}{/block:PlayCount}</div></div>
- {block:IndexPage}
- {/block:IndexPage}
- {/block:Audio}
- {block:Video}
- {block:IndexPage}
- <center>
- <div class="perma">
- Posted on {dayofweek} · <a href="{ReblogURL}" target="_blank"> Reblog </a> </div>
- {Video-250}</center>
- {/block:IndexPage}
- {block:PermalinkPage}
- <center>
- {Video-400}</center>
- {/block:PermalinkPage}
- {block:Video}
- {block:PostNotes}<div align="middle">{caption}</div>
- <center>
- {block:NoteCount}{NoteCountWithLabel}<br>{/block:NoteCount}
- {block:HasTags}
- tags: {block:Tags}<a href="{TagURL}">{Tag}. </a>{/block:Tags}<br> {/block:HasTags}
- {block:RebloggedFrom}
- reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>
- 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}
- </div></div>
- {block:IndexPage}
- {block:Pagination}
- <div id="pagination">
- {block:NextPage}
- <a id="nextPage" href="{NextPage}"></a>
- {/block:NextPage}
- {block:PreviousPage}
- <a href="{PreviousPage}"></a>
- {/block:PreviousPage}
- </div>
- {/block:Pagination}
- {/block:IndexPage}
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment