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">
- <! Theme #27 ANTIGO-BRASILEIRO + BASE DE LATE-TO-WRITE, NÃO RETIRE OS CRÉDITOS, NÃO COPIE!!!!>
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head> <!-- DEFAULT VARIABLES -->
- <meta name="font:text" content="verdana" />
- <meta name="font:title" content="georgia" />
- <meta name="color:background" content="#f1f1f1" />
- <meta name="color:text" content="#000" />
- <meta name="color:entry" content="#fff" />
- <meta name="color:desc" content="#fff" />
- <meta name="color:links" content="#000" />
- <meta name="color:links1" content="#000" />
- <meta name="color:linktex" content="#fff" />
- <meta name="color:pag" content="#fff" />
- <meta name="image:background" content=""/>
- <meta name="image:sidebar1" content=""/>
- <meta name="image:sidebar1" content=""/>
- <meta name="text:palavra" content="umapalavra"/>
- <meta name="text:frase" content="bote a frase aqui"/>
- <meta name="text:Link1" content="/" />
- <meta name="text:Link1 Title" content="link1" />
- <meta name="text:Link2" content="/" />
- <meta name="text:Link2 Title" content="link2" />
- <meta name="text:Link3" content="/" />
- <meta name="text:Link3 Title" content="link3" />
- <meta name="text:Link4" content="/" />
- <meta name="text:Link4 Title" content="link4" />
- <meta name="text:Link5" content="/" />
- <meta name="text:Link5 Title" content="link5" />
- <meta name="text:Link6" content="/" />
- <meta name="text:Link6 Title" content="link6" />
- <meta name="text:Link7" content="/" />
- <meta name="text:Link7 Title" content="link7" />
- <meta name="text:Link8" content="/" />
- <meta name="text:Link8 Title" content="link8" />
- <meta name="text:Link9" content="/" />
- <meta name="text:Link9 Title" content="link9" />
- <meta name="text:Link10" content="/" />
- <meta name="text:Link10 Title" content="link10" />
- <script type="text/javascript">
- // <![CDATA[
- // all colours must be in format '#NNNNNN', not 'red' or 'rgb(7,8,9)'
- var fgcolour="#656565"; // foreground colour
- var hlcolour="#b5b5b5"; // highlight colour
- var bgcolour="#FFFFFF"; // background colour
- var glcolour="#f8f8f8"; // colour of glow around letters
- var speed=66; // speed colours change, 1 second = 1000
- var delay=50; // how long to wait between wipes
- var alink="/"; // page to link text to (set to ="" for no link)
- /****************************
- *Multi-Wipe Neon Text Effect*
- *(c)2003-12 mf2fm web-design*
- * http://www.mf2fm.com/rv *
- * DON'T EDIT BELOW THIS BOX *
- ****************************/
- var w_txt, w_txl;
- var w_flp=bgcolour;
- var w_sty=Math.floor(Math.random()*8);
- var w_cnt=-1;
- var wipes=new Array();
- var wrand=new Array();
- window.onload=function() { if (document.getElementById) {
- var i, wiper, wipei;
- wiper=document.getElementById("wipe");
- w_txt=wiper.firstChild.nodeValue;
- w_txl=w_txt.length;
- while (wiper.childNodes.length) wiper.removeChild(wiper.childNodes[0]);
- for (i=0; i<w_txl; i++) {
- wipei=document.createElement("span");
- wipei.appendChild(document.createTextNode(w_txt.charAt(i)));
- wipes[i]=wipei.style;
- wipes[i].textShadow=glcolour+" 0px 0px 5px";
- wipes[i].color=fgcolour;
- wiper.appendChild(wipei);
- }
- if (alink) {
- wiper.style.cursor="pointer";
- wiper.onclick=function() { top.location.href=alink; }
- }
- for (i=0; i<w_txl; i++) wrand[i]=i;
- wiper=setInterval("randwipe()", speed);
- }}
- function c(i, shade) {
- if (shade==bgcolour) wipes[i].textShadow="none";
- else wipes[i].textShadow=glcolour+" 0px 0px 5px";
- wipes[i].color=shade;
- }
- function randwipe() {
- var w_old;
- if (w_cnt++<w_txl+2+delay*(w_flp==fgcolour)) eval("wipe"+w_sty+"();");
- else {
- w_cnt=-1;
- w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
- w_old=w_sty;
- while (w_old==w_sty) w_sty=Math.floor(Math.random()*8);
- }
- }
- function dechex(dec) { return ((dec<16)?"0":"")+dec.toString(16); }
- function wipe0() { // curtains
- if (w_cnt<Math.floor(w_txl/2)) {
- c(w_cnt, hlcolour);
- c(w_txl-w_cnt-1, hlcolour);
- }
- else if (w_cnt<w_txl) {
- c(w_cnt, w_flp);
- c(w_txl-w_cnt-1, w_flp);
- }
- }
- function wipe1() { // random
- var i, rand, temp;
- if (w_cnt==0) {
- for (i=0; i<w_txl; i++) {
- rand=Math.floor(Math.random()*w_txl);
- temp=wrand[i];
- wrand[i]=wrand[rand];
- wrand[rand]=temp;
- }
- }
- if (w_cnt<w_txl) c(wrand[w_cnt], hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(wrand[w_cnt-1], w_flp);
- }
- function wipe2() { // forwards
- if (w_cnt<w_txl) c(w_cnt, hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
- }
- function wipe3() { // backwards
- if (w_cnt<w_txl) c(w_txl-(w_cnt+1), hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_txl-w_cnt, w_flp);
- }
- function wipe4() { // searchlight
- if (w_cnt<w_txl) c(w_cnt, hlcolour);
- if (w_cnt>0 && w_cnt<w_txl+1) c(w_cnt-1, w_flp);
- if (w_cnt>1 && w_cnt<w_txl+2) c(w_cnt-2, hlcolour);
- if (w_cnt>2 && w_cnt<w_txl+3) c(w_cnt-3, (w_flp==fgcolour)?bgcolour:fgcolour);
- if (w_cnt==w_txl+2) w_flp=(w_flp==fgcolour)?bgcolour:fgcolour;
- }
- function wipe5() { // fade
- var i;
- if (w_cnt<w_txl+3) {
- var start=(w_flp==fgcolour)?bgcolour:fgcolour;
- var temp="#";
- for (i=1; i<6; i+=2) {
- var hex1=parseInt(start.substring(i,i+2),16);
- var hex2=parseInt(w_flp.substring(i,i+2),16);
- temp+=dechex(Math.floor(hex1+(hex2-hex1)*(w_cnt/(w_txl+2))));
- }
- for (i=0; i<w_txl; i++) c(i, temp);
- }
- }
- function wipe6() { // flash
- var i;
- if (w_cnt<6*Math.floor(w_txl/6)+3) {
- if (w_cnt%6==0 || w_cnt%6==3) for (i=0; i<w_txl; i++) c(i, hlcolour);
- else if (w_cnt%6==1) for (i=0; i<w_txl; i++) c(i, w_flp);
- else if (w_cnt%6==4) for (i=0; i<w_txl; i++) c(i, (w_flp==fgcolour)?bgcolour:fgcolour);
- }
- }
- function wipe7() { // checkerboard
- var qtr=Math.floor(w_txl/4);
- if (w_cnt<qtr) {
- c(w_cnt, hlcolour);
- c(w_cnt+2*qtr, hlcolour);
- }
- else if (w_cnt<2*qtr) {
- c(w_cnt-qtr, w_flp);
- c(w_cnt+qtr, w_flp);
- }
- else if (w_cnt<3*qtr) {
- c(w_cnt-qtr, hlcolour);
- c(w_cnt+qtr, hlcolour);
- }
- else if (w_cnt<w_txl) {
- c(w_cnt-2*qtr, w_flp);
- c(w_cnt, w_flp);
- }
- }
- // ]]>
- </script>
- <title>{Title}</title>
- <link rel="shortcut icon" href="{Favicon}">
- <link rel="alternate" type="application/rss+xml" href="{RSS}">
- {block:Description}
- <meta name="description" content="{MetaDescription}" />
- {/block:Description}
- <link href='http://fonts.googleapis.com/css?family=Zeyada' rel='stylesheet' type='text/css'>
- <link href='http://fonts.googleapis.com/css?family=Homenaje' rel='stylesheet' type='text/css'>
- <style type="text/css">
- body {
- color:{color:text};
- background-color: {color:background};
- background-image:url('http://media.tumblr.com/tumblr_m4sp9vKy8j1qj5ffr.png');
- color:{color:text};
- font-family: verdana;
- font-size: 11px;
- text-align: center;
- background-attachment:fixed;
- background-repeat:
- line-height:110%;
- text-align:justify
- }
- a:link, a:active, a:visited {
- color: {color:links};
- text-decoration:none;
- }
- a:hover {
- color: {color:links};
- -webkit-transition-duration: 0.8s;
- -moz-transition-duration: 0.8s;
- }
- .bubble {align:right;background: {color:background}; margin:7px 0px 2px 66px;padding:11px;position: relative;-moz-border-radius:5px;-webkit-border-radius:5px;border-radius:5px;}
- .bubble p {margin:1px 0px;}
- .bubble span {display:block;position:absolute;width:1px;height:1px;font-size: 0;line-height: 1px; left:-13px;top:2px;border-top:7px solid transparent;border-bottom:7px solid transparent; border-right:10px solid {color:entry};}
- .askborder{-webkit-border-radius: 3px 3px 3px 3px; -webkit-transition-duration: 0.6s; }.askborder:hover{ -webkit-border-radius: 180px}
- #bolinha {margin-top:2px;calibri;font-size:8px;text-align:right;
- text-transform:uppercase;width:80px;padding-right:6px;background-color:#eee; letter-spacing: 1px; color: #000;-webkit-transition: all 0.75s ease-out;-moz-transition: all 0.75s ease-out;-o-transition: all 0.75s ease-out;}
- #bolinha:hover { background-color:#ffffff;}
- #sidebar {outline: dashed 1px #000;width:90px;font-family:'calibri'; font-size:10px; color:#777;margin-top:290px;margin-left: 65px;float: center;text-align: justify; position: fixed ;padding: 3px;background: #ffffff; }
- #hak {width: 300px;
- height: 22px;
- position: fixed;
- background-color: transparent;
- margin-left: -198px;
- z-index: 0;
- margin-top: -115px;
- text-align: right;
- -webkit-transform: rotate(-28deg);}
- .optitle{font-family: Homenaje; font-size: 15px; line-height: 14px; margin-top: 117px; margin-left: -2px; text-align: center; width: 116px; color: #848686; height: 18px; word-spacing: 1px; background-color: #FFFFFF}
- #foto{
- width: 190px;
- height: auto;
- top: 212px;
- left:170px;
- position:fixed;
- padding: 5px ;
- background-color:#fff;
- color:#fff;
- text-align:center;
- float:right;
- }
- .falamuito {font-size: 15px; font-family: calibri;color: {color:#000}; position:fixed; padding: 4px; margin-left: 1px; margin-top: -4px;height: autopx; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; padding-right: 3px;}
- #pag {width: 291px;
- padding: 4px;
- float: right;
- height: 13px;
- position: fixed;
- margin-left: -106px;
- margin-top: 7px;}
- #sbar5 {width: 11px;
- height: 58px;
- margin-left: 85px;
- margin-top: -262px;
- position: fixed;
- overflow: hidden;
- background-color: transparent;
- border-left: 0px solid;
- border-right: 0px solid;
- padding: 3px; }
- #credit{position:fixed;bottom:5px;right:15px;}
- #credit a{color: #000;font-size:10px;font-family:consolas;text-decoration:none;}
- #icon {
- text-align: center;
- width: 100px;
- display: block;
- padding: 8px;
- }
- #container {
- background-color:transparent;
- width: 465px;
- position: absolute;
- top:13px;
- left: 371px;
- padding-bottom: 5px;
- }
- #entries {margin: -10px 0 0px 0}
- #entry {
- width: 500px;
- border-bottom: 2px solid {color:background};
- background-color:{color:entry};
- text-align: justify;
- padding: 20px;
- margin-bottom:0px;}
- .image{text-align: center; margin: 0 0 5px 0}
- .image img{border: 0px; margin: 0; padding: 0;}
- #ask_form{width: 500px; }
- .search_result{font-size: 12px; text-align: center}
- .source{display:none}
- h1{
- font-family: georgia;
- font-size:20px;
- letter-spacing: -1px;
- line-height: 20px;
- text-transform: none;
- font-weight: normal;
- margin: 0 0 5px 0;
- text-align: center;
- }
- h1 a{font-size:20px; letter-spacing: -1px; line-height: 20px; text-transform: none; font-weight: normal; margin: 0 0 5px 0; text-decoration: none; text-align: center; }
- .fj {margin-top: -45px;font-size: 40px; font-family: Elephant; line-height: 120px; color:{color:text};}
- .qquote {font-family: calibri; text-align: left; font-size: 14px; line-height: 16px; padding: 0px;}
- .qsource {font-size: 8px; font-family: PF Ronda Seven;text-align: right;margin-bottom: 5px;}
- .chat{
- line-height: 12px;
- list-style: none
- }
- .chat ul {
- line-height: 15px;
- list-style: none;
- padding: 0px;
- line-height: 20px;
- background: {color:entry};
- }
- .person1 {
- background-color: {color:entry};
- color: {color:text}
- }
- .person1 .label {
- font-weight: bold;
- padding: 0px;
- margin-left: 5px;
- color: {color: text}
- }
- .person2 {
- background-color: {color:entry};
- color: {color: text}
- }
- .person2 .label {
- font-weight: bold;
- padding: 0px;
- margin-left: 5px;
- color: {color: text}
- }
- .audioimage{
- float:left;
- text-align: center;
- margin: 0 10px 5px 0;
- width: 205px;
- border: 15px solid {color:background};
- }
- .audioimage img{
- max-width: 205px;
- height: auto;
- margin: 0 0 2px 0
- }
- .playcount {font-style: italic}
- .asker {
- width: 480px;
- background-color: {color:background};
- color:{color:text};
- padding: 10px; }
- .asker img{
- float: left;
- margin: 0px 4px 2px 0
- }
- .asker a{
- font-size: 20px;
- color:{color:links};
- text-transform: lowercase;
- line-height: 27px;
- padding: 0; margin: 0;
- font-family: georgia;
- }
- .asker a:hover{
- font-size: 20px;
- color:{color:links};
- text-transform: lowercase;
- line-height:27px;
- padding: 0;
- margin: 0;
- font-family: georgia;
- }
- .answer {padding: 5px 0 0 0; }
- #cap {
- padding: 2px 0 0 0;
- width: 500px;
- margin: 0 0 0 5px
- }
- .info {
- margin-top: 10px;
- border-left: 0px solid {color:entry};
- padding: 5px;
- background-color: {color:entry};
- text-align: left;
- font-size: 8px;
- font-family: tinytots;
- text-transform: uppercase;
- }
- .info a {font-size: 8px;text-transform:uppercase;}
- .info2 {
- padding: 2px;
- border-bottom: 1px dotted {color:entry};
- text-align: right;
- }
- .tags {
- color: {color:text};
- font-size: 9px;
- font-family: verdana;
- display: inline;
- list-style: none;
- text-transform: none;
- }
- .tags a {
- font-size: 9px;
- color: {color:text};
- display: inline;
- list-style: none;
- text-transform: none;
- }
- #nts {
- width: 500px;
- margin-left: 95px;
- padding: 10px;
- margin-top: 5px;
- font-size: 10px;
- text-align: left
- }
- #nts img{display: none; border:0px}
- #clear{
- clear: both;
- width: 50px;
- height: 0px;
- background-color: transparent
- }
- #prevnextlinks{
- text-align: center;
- width: 500px;
- background-color:{color:entry};
- padding: 7px 20px 7px 20px;
- margin: 0 0 2px 0;
- font-size: 10px
- }
- #notes {
- width: 500px;
- margin: 0px;
- margin-left: 0px;
- padding: 5px;
- text-align: left
- }
- ol.notes {list-style: none; margin: 0 20px 0 10px; padding: 0px}
- ol.notes li {margin: 0px; padding: 2px;}
- #notes img{border:0px}
- #notes a{font-size: 10px}
- #tumblr_controls{position: fixed!important}
- ::-webkit-scrollbar{width:5px;height:5px;}
- ::-webkit-scrollbar-button:start:decrement
- ::-webkit-scrollbar-button:end:increment{display:block;height:0;background-color:transparent;}
- ::-webkit-scrollbar-track-piece{background-color:#fff;-webkit-border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-bottom-left-radius:3px;}
- ::-webkit-scrollbar-thumb:vertical{height:50px; background-color:#000;-webkit-border-radius:px;}
- ::-webkit-scrollbar-thumb:horizontal{width:50px; background-color:#000;-webkit-border-radius:px;}
- {CustomCSS}
- @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
- #desc {z-index: 1;background-color:#fff;position:fixed;width:183px; line-height: 10px; font-size:12px; font-family:calibri; text-align:center; color:{color:desc}; padding: 5px; margin-top:375px; margin-left:8px; overflow:hidden;border-bottom: 2px solid {color:links};}
- #paginacaoml {font-family: arial sans; font-size:8px; font-weight: none; line-height: 15px; text-shadow: 0 0px 0px #000;}
- #paginacaoml a {background: {color:pag}; margin: 0 1px 0 0; padding: 2px 4px; color: {color:links}; text-decoration: none;}
- #paginacaoml a:hover {background: {color:pag};}
- #paginacaoml span.pagina_atual {background: #; margin: 0 1px 0 0; padding: 1px 3px; color:{color:links}; text-decoration: none;}
- #paginacaoml span.info {background: {color:pag}; margin: 0 0px 0 0; padding: 2px 4px; color: {color:links}; text-decoration: none;}
- .rs {right:1px;margin-left: autopx; margin-top: -450px;font-size: 10px; background-color: #000000; font-family: Homenaje; line-height:16px; color:#fff; position: fixed; -webkit-border-radius: 0px 0px 0px 0px; overflow: hidden; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; z-index: 1; text-align: center; font-style: bold; padding-bottom: 9px}
- </style>
- </head>
- <body>
- <div id="container">
- <div id="entries">
- {block:IfEnableEndlessScrolling}<div class="autopagerize_page_element">
- <script type="text/javascript"
- src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:IfEnableEndlessScrolling}
- {block:SearchPage}<div class="search_result">{SearchResultCount} results</div>{/block:SearchPage}
- {block:Posts}
- <div id="entry">
- {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body}{/block:Text}
- {block:Photo}{LinkOpenTag}<div class="image"><img src="{PhotoURL-500}"></div>{LinkCloseTag}
- <div id="cap">{block:Caption}{Caption}{/block:Caption}</div>{/block:Photo}
- {block:Photoset}{Photoset-500}
- <div id="cap">{block:Caption}{Caption}{/block:Caption}</div>
- {/block:Photoset}
- {block:Quote}
- <div class="qquote"><div class="fj">“</div><div style="margin-top: -80px;margin-left:25px;background-color: #c5c4c4;padding: 15px;-moz-border-radius: 5px; -webkit-border-radius: 5px; border-radius: 5px;">{Quote}</div></div>
- {block:Source}<div class="qsource"><br> — {Source}</div>
- {/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><a href="{Permalink}">{Title}</a></h1>{/block:Title}
- <div class="chat"><ul>{block:Lines}
- <li class="person{UserNumber}">{block:Label}
- <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
- {/block:Chat}
- {block:Audio}
- <div class="audioimage">{block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>
- {AudioPlayerWhite}
- <div class="playcount">{PlayCountWithLabel}</div>
- <div class="cap">{block:Caption}{Caption}{/block:Caption}</div>
- {/block:Audio}
- {block:Video}{Video-500}
- <div id="cap">{block:Caption}{Caption}{/block:Caption}</div>{/block:Video}
- {block:Answer}
- <img src="{AskerPortraitURL-48}" align="left" class="askborder" class="dreamgirl"><div class="bubble"><span></span><b>{Asker}</b>
- {Question} </div><br>{Answer} {/block:Answer}
- <div class="source">{block:ContentSource}<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}</div>
- <div id="clear"></div>
- {block:Date} <div class="info"> <a href="{Permalink}">{TimeAgo}</a> {/block:Date} {block:NoteCount} . <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}{Block:IndexPage} <a href="{ReblogUrl}" target="_blank"> . <img src="http://media.tumblr.com/tumblr_m0nj1ziGbG1qe5v0r.png" class="" title=""> <b>r</b>eblog </a> {/Block:IndexPage} {block:RebloggedFrom} . via <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}
- <br>
- {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}
- </div></div>
- {/block:Posts}
- {block:PostNotes}
- <div id="nts"><div id="ntstext"> . {PostNotes}</div></div>
- {/block:PostNotes}
- </div>
- </div>
- </div></div>
- </div></div></div></div>
- <div id="sidebar">
- <div id="hak">
- <center><div class="optitle">{text:palavra}</div></div>
- <div id="bolinha"><a href="/" style="color:#000" >refresh</a></div>
- <div id="bolinha"><a href="/ask" style="color:#000" >ask me</a></div>
- <div id="bolinha"><a href="{text:Link1}" style="color:#000" >{text:Link1 Title}</a></div>
- <div id="bolinha"><a href="{text:Link2}" style="color:#000" >{text:Link2 Title}</a></div>
- <div id="bolinha"><a href="{text:Link3}" style="color:#000" >{text:Link3 Title}</a></div>
- <div id="bolinha"><a href="{text:Link4}" style="color:#000" >{text:Link4 Title}</a></div>
- <div id="bolinha"><a href="{text:Link5}" style="color:#000" >{text:Link5 Title}</a></div>
- <div id="bolinha"><a href="{text:Link6}" style="color:#000" >{text:Link6 Title}</a></div>
- <b>{description}<font color='#FF6660'>...</font> </b>
- </div>
- <div id="foto">
- <img src="{image:sidebar1}" width= "190px;" height= "260px;"/></a> <br><div id="pag"><div class="falamuito"><span id="wipe">{text:frase}</span>
- </div>
- <div id="sbar5"> <center><div id="paginacaoml"><span style="font-weight: normal;">
- {block:Pagination}
- {block:JumpPagination length="4"}
- {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
- {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
- {/block:JumpPagination}
- {/block:Pagination}
- </center>
- </div></div>
- </div>
- </div></div>
- </body>
- <div id="credit">
- <a title="Theme feito por ANTIGO-BRASILEIRO, + base de late-to-write" href="http://antigo-brasileiro.tumblr.com">© Theme</a>
- </div>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment