Advertisement
Lolovers

Theme Redemption

Oct 25th, 2013
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.84 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4. <head>
  5.  
  6.  
  7. <title>{title}</title>
  8. <link rel="shortcut icon" href="{favicon}">
  9.  
  10.  
  11. <link href='http://fonts.googleapis.com/css?family=Satisfy' rel='stylesheet' type='text/css'>
  12. <link href='http://fonts.googleapis.com/css?family=Marck+Script' rel='stylesheet' type='text/css'>
  13.  
  14. <script type="text/javascript">
  15. function changeNavigation(id) {document.getElementById('post').innerHTML=document.getElementById(id).innerHTML}
  16. </script>
  17.  
  18. <script type="text/javascript"
  19. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  20.  
  21. <script>
  22.  
  23.  
  24.  
  25. $(document).ready(function() {
  26.  
  27. //
  28.  
  29.  
  30.  
  31. //When you click on a link with class of poplight and the href starts with a #
  32.  
  33. $('a.poplight[href^=#]').click(function() {
  34.  
  35. var popID = $(this).attr('rel'); //Get Popup Name
  36.  
  37. var popURL = $(this).attr('href'); //Get Popup href to define size
  38.  
  39.  
  40.  
  41. //Pull Query & Variables from href URL
  42.  
  43. var query= popURL.split('?');
  44.  
  45. var dim= query[1].split('&');
  46.  
  47. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  48.  
  49.  
  50.  
  51. //Fade in the Popup and add close button
  52.  
  53. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://static.tumblr.com/eun3dfg/RERmuxsh7/c4.png" width="66" height="64" z-index="10000000000000000000000000000000000000000000000000000000000000" class="btn_close" title="Close | Fechar" alt="Close"/></a>');
  54.  
  55.  
  56. //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
  57.  
  58. var popMargTop = ($('#' + popID).height() + 80) / 2;
  59.  
  60. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  61.  
  62.  
  63.  
  64. //Apply Margin to Popup
  65.  
  66. $('#' + popID).css({
  67.  
  68. 'margin-top' : -popMargTop,
  69.  
  70. 'margin-left' : -popMargLeft
  71.  
  72. });
  73.  
  74.  
  75.  
  76. //Fade in Background
  77.  
  78. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  79.  
  80. $('#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
  81.  
  82.  
  83.  
  84. return false;
  85.  
  86. });
  87.  
  88.  
  89.  
  90. //Close Popups and Fade Layer
  91.  
  92. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer…
  93.  
  94. $('#fade , .popup_block').fadeOut(function() {
  95.  
  96. $('#fade, a.close').remove(); //fade them both out
  97.  
  98. });
  99.  
  100. return false;
  101.  
  102. });
  103.  
  104.  
  105.  
  106.  
  107.  
  108. });
  109.  
  110. </script>
  111.  
  112.  
  113. <style type="text/css">
  114.  
  115.  
  116.  
  117. body {background: #212121 url(""); }
  118.  
  119.  
  120.  
  121. #pagina {background-image: url('http://static.tumblr.com/eun3dfg/N9bmv88wh/headxx.png');width: 850px; margin-left: auto;margin-right: auto;}
  122.  
  123. #header {background: url('http://static.tumblr.com/eun3dfg/N9bmv88wh/headxx.png') no-repeat top center; width: 850px;height: 23px; margin-top: 0px;z-index:1000; margin-left:0px; margin-right:0px;}
  124.  
  125. #footer {background:url('http://static.tumblr.com/eun3dfg/EW1mv88x0/footrer.png') no-repeat; width: 850px; height: 56px; clear: both; padding-bottom: 0px; z-index:500;margin-left:0px; margin-right:0px;background-repeat: no-repeat;}
  126.  
  127. #sidebar { width: 245px; text-align: justify; padding: 5px; float: left; margin-top: -0px; margin-left: 50px; color: #5C4666; border-right:0px dotted #c4c4c4;z-index:10000000;}
  128.  
  129. #conteudo { width: 505px; font-family: bold;text-align: justify; margin-left:0px; margin-right:30px; float: right; margin-top: -15px;z-index:500;}
  130.  
  131. .borderfofinhaheader {border:9px solid rgba(255,255,255, 0.1);box-shadow: 0px 1px 10px #000;}
  132. .fotinhaheader {margin-top:-37px;}
  133.  
  134.  
  135.  
  136. b, strong { color: #fff; TEXT-DECORATION: none; background:#ff335e;padding-left:3px;padding-right:5px;margin:3px;border-radius:5px;}
  137. u {color: #ff335e; TEXT-DECORATION: none; border-bottom: 1px solid #eee;}
  138. s, strike {color: #f9d3d2;}
  139. i {color: #fff; TEXT-DECORATION: none; border-bottom: 1px dotted #none;}
  140. br{margin:20px;}
  141. p{margin:20px;}
  142.  
  143. a:link, a:active, a:visited {
  144. color: #999;
  145. text-decoration: none;
  146. cursor: auto;
  147. }
  148.  
  149. a:hover { color: #c1cad1;
  150. text-decoration: none;
  151. cursor: auto;}
  152.  
  153.  
  154.  
  155.  
  156. ::-moz-selection {background: #f8c0c2; color: #fff;}
  157. ::selection {background: #f8c0c2; color:#fff;}
  158.  
  159.  
  160.  
  161.  
  162.  
  163. .h1 { font-size: 15pt; text-align: center; color: #fff;border-top: 0px dotted #f5f5f5;font-family: georgia;padding: 3px;letter-spacing: 0px;margin-bottom:10px;margin-top:10px;background:#121212;padding:10px;}
  164.  
  165. .h2 {background: #000; font-family:'bebas';font-size:15px;padding:5px;color:#ff335e;text-shadow: 0 1px 0px #999;margin-top:-20px;margin-left:-20px;}
  166.  
  167. h3 {background: #transparent; font-family:'bebas';font-size:13px;padding:5px;color:#ff335e;text-shadow: 0 1px 0px #000;margin-top:-10px;letter-spacing: 1px;}
  168.  
  169.  
  170. .post{margin-bottom:9px;}
  171.  
  172. .box {overflow:hidden; background: #transparent; letter-spacing: 0px; text-align: justify; font-family:"visitor1.ttf", small fonts; font-size: 14px;color:#fff; padding:4px; margin: 2px 2px 2px 2px;box-shadow: 0 2px 1px -1px rgba(0,0,0,0.5);line-height:20px;border-radius:0px;}
  173.  
  174. .sidebar {overflow:hidden; background: #transparent; letter-spacing: 0px; text-align: justify; font-family:"visitor1.ttf", small fonts; font-size: 12px;color:#c5c5c5; padding:4px; margin: 2px 2px 2px 2px;box-shadow: 0 2px 1px -1px rgba(0,0,0,0.1);line-height:20px;border-radius:0px;border-bottom:1px solid #000;}
  175.  
  176. /*** Notes enfeitados por things-to-help-you ******/
  177. ol.notes { display : block;border-left : 1px solid #fae2e8;bakground-repeat : no-repeat;vertical-align : middle;text-decoration : none;margin-bottom : 1px;background: #f5f5f5; list-style-type: none; font-size: 10px;}
  178. ol.notes li.note {border-top: solid 1px #fff; padding: 4px;}
  179. ol.notes li.note img.avatar {display: none;}
  180. ol.notes li.note span.action {font-weight: none;}
  181. ol.notes li.note .answer_content {font-weight: normal;}
  182. ol.notes li.note blockquote {display: none;}
  183. ol.notes li.note blockquote a {text-decoration: none;}
  184. ful { list-style: none; }
  185. ol { list-style-position: inside; }
  186. * { margin: 0; padding: 0; outline: none; }
  187. .caixa {overflow: hidden;background: #fff; padding: 7px;
  188. font-family: Verdana, Geneva, sans-serif;
  189. color: #ff81b9;text-align: justify;outline: 0px solid #; margin-bottom: 0px;}
  190. .extra {border-left: 4px solid #ff81b9; display : block;border-bottom : 0px solid #fff;background-repeat : no-repeat;text-indent : 5px;vertical-align : middle;text-decoration : none;margin-bottom : 1px;background: #f5f5f5; line-height: 18px;}
  191. .extrass {border-left: 4px solid #ff81b9; display : block;border-bottom : 1px solid #ff81b9;background-repeat : no-repeat;text-indent : 5px;vertical-align : middle;text-decoration : none;margin-bottom : 1px;background: #f5f5f5; line-height: 18px;}
  192. .extra a {padding-right: 6px; color: #80acb9; border-right: dotted 1px #e7daee; text-shadow: 1px 1px 1px #;}
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199. /*** blockquote e tabelinhas ***/
  200.  
  201.  
  202. blockquote {background: #transparent; margin: 0 5px; text-align: justify; line-height:150%; border-left: 5px solid #d7e2e9; padding-left:5px; padding-right:2px; padding-top:0; padding-bottom:0;}
  203.  
  204. .blockquote {background: #transparent; margin: 0 5px; text-align: justify; line-height:150%; border-left: 5px solid #d7e2e9; padding-left:5px; padding-right:2px; padding-top:0; padding-bottom:0;}
  205.  
  206.  
  207. .pergunta {background: #2f2f2f;font-family: 'Play', sans-serif; font-size:12px; color: #fff;padding:10px;text-align: justify;margin-left: auto;margin-right: auto;border-radius:0px;margin-bottom:0px;}
  208.  
  209. .perguntou {background: #121212 url(""); color:#fff;font-family: 'Play', sans-serif; font-size:12px; color: #fff2f8;text-shadow: 0px 1px 1px #fff;padding:5px;text-align: justify;margin-left: auto;margin-right: auto;margin-bottom:1px;float:right;height:15px;border-bottom-right-radius: 5px;border-bottom-left-radius: 5px;}
  210.  
  211. .perguntou a {color: #fff;}
  212.  
  213. .pergunta p {margin:1px 0px;color:#fff;}
  214.  
  215.  
  216. .fotos {float:right; border-radius:0px;margin-top:-5px;margin-right:-5px;margin-left:5px;filter:alpha(opacity=100); -moz-opacity:1.0; opacity:1.0; -webkit-transition-duration: .99s; -moz-transition-duration: .99s;}
  217.  
  218. .fotos:hover {filter: alpha(opacity=100); opacity: 0.65; -moz-opacity:0.45; -webkit-transition-duration: .99s; -moz-transition-duration: .99s;}
  219.  
  220. .ii {width:15; height:14px;float:left;margin-right:5px;}
  221.  
  222. .resposta {background: #transparent;font-family: 'Play', sans-serif; font-size:12px; color: #829dae;text-shadow: 0px 1px 1px #fff;padding:10px;text-align: justify;margin-left: auto;margin-right: auto;border-radius:5px;}
  223.  
  224.  
  225.  
  226. /* Chat por Anna (livelikeasuicide) *********/
  227. .chat {background: #transparent; margin: 0; font-size:
  228. 10px; font-family: Fonte;}
  229. .chat .chat1 {margin-left: 0px;}
  230. .chat .chat1 .chat2 {background: #121212; color: #999;
  231. margin-bottom: 1px; padding: 2px 2px 2px 2px;} /* Primeira linha */
  232. .chat .chat1 .chat2.even {background: #1f1f1f;
  233. color: #fff;} /* Segunda linha */
  234. .chat .chat1 .chat2 span{font-weight: bold;}
  235.  
  236. .quote {background: #121212; overflow: hidden; padding:10px; border-radius:0px;font-family: 'Galdeano', sans-serif; color: #999; font-size: 16px; text-align:justy;margin-left:0px;margin-right:0px;text-align:left;margin-bottom:2px;}
  237. .sou a {color: #fff;}
  238. .sou a:hover {color: #fff;}
  239. .sou {background:#373737; border-radius:0px;padding:2px;font-family: 'Galdeano', sans-serif; color: #fff; font-size: 13px;text-shadow: 1px 1px 1px #999;box-shadow: 0px 0px 0px #f5f5f5;margin-left:10px;border-top-left-radius: 5px;border-bottom-left-radius: 5px;}
  240. .fica {margin-left:0px;}
  241.  
  242.  
  243.  
  244.  
  245. #fade {display: none; background: #000;position: fixed; left: 0; top: 0;width: 100000%; height: 100000%;opacity: .50; z-index: 9999999;}
  246.  
  247. .popup_block{display: none;background: #202020;color: #fff;padding: 20px;border: 0px solid #dccedc;float: left;font-size: 11px;font-family: verdana;position: fixed; top: 50%; left: 50%;z-index: 100000000000000000000000000000000000000;border-radius:10px;}
  248. img.btn_close {float: right;margin: -40px -40px 0 0;}
  249. *html #fade { position: absolute;}
  250. *html .popup_block {position: absolute;}
  251.  
  252.  
  253.  
  254.  
  255. /*** Block de audio - TTHY **/
  256. .trackid {font-family: 'Pontano Sans', sans-serif; font-size: 9pt; margin-left: 98px;padding: 6px; margin-top: 1px; margin-bottom: 2px; background:#121212;margin-right: 0px; text-shadow: 0px 1px 1px #;}
  257.  
  258. .trackid c {color: #999;text-transform:uppercase; font-size: 8pt;}
  259.  
  260. .trackid2 {margin-top: 1px; background:#121212; display: block; height:27px;overflow:hidden; padding:1px;}
  261.  
  262. .album {opacity: 0.7;margin-top: 0px; float: left; display: inline-block;}
  263.  
  264. .boxmusica {background:#121212;}
  265. .clear {margin-top:1px;}
  266.  
  267.  
  268.  
  269. .tag {background: #121212;color: #fff;font-family: arial;font-size: 10px;text-align: center;padding:5px;width:400px;line-height : 15px;text-indent : 120px;margin-bottom:0px;border-radius:5px;margin-left:-140px;}
  270.  
  271.  
  272.  
  273.  
  274. .menuzinho {margin-top:-25px;margin-left:293px;position:absolute;width:10px;}
  275.  
  276. .menu {font-family:'Unica One'; color:#000; font-size:8px; text-transform: uppercase;-webkit-transition: all 1.5s ease-out;text-decoration:none; cursor:pointer;background: rgba(255,255,255, 0.1);display:block; text-align:center; padding-top:2px;padding-left:10px;padding-right:10px;padding-bottom:3px;box-shadow: 0 2px 1px -1px rgba(0,0,0,0.1);margin:2px;margin-top:10px;margin-bottom:10px;float:right;width:47px;}
  277.  
  278. .menu:hover {font-family:'Unica One'; color:#000; font-size:8px; text-transform: uppercase;-webkit-transition: all 1.5s ease-out;text-decoration:none; cursor:pointer;background: rgba(255,255,255, 0.5);display:block; text-align:center; padding-top:2px;padding-left:10px;padding-right:10px;padding-bottom:3px;box-shadow: 0 2px 1px -1px rgba(0,0,0,0.1);margin:2px;margin-top:10px;margin-bottom:10px;float:right;width:47px;}
  279.  
  280.  
  281.  
  282.  
  283.  
  284.  
  285.  
  286. cred {display: block; vertical-align: middle; line-height: 13px; margin-bottom: 0px; text-decoration: none; padding: 5px; font-style: normal;font-size: 10px; background: #121212; border-radius: 5px;margin-bottom:4px;color:#fff;}
  287.  
  288. cred a {background: #121212; padding: 5px; color: #fff; border-radius: 5px;-webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; transition: all 1s ease;margin-left:-3px;margin-top:1px;}
  289.  
  290. cred:hover a {background: #121212; padding: 5px; color: #fff; border-radius: 5px;}
  291.  
  292.  
  293. /*** Paginação Lovers-of-designs***/
  294.  
  295. #paginacao {font-size: 11px; font-family:arial; line-height: 21px; color: #777;margin-left:10px;}
  296.  
  297. #paginacao a {background: #121212; margin: 0 1px 0 0; padding: 6px 6px; color: #777; text-decoration: none;border-radius:0px;margin-left:2px;border-radius:10px;}
  298.  
  299. #paginacao a:hover {background: #121212; border: none;border-radius:0px;border-radius:10px;}
  300.  
  301. #paginacao span.pagina_atual {background: #121212; margin: 0 1px 0 0; padding: 6px 6px; color: #777; text-decoration: none;border-radius:0px;border-radius:10px;}
  302.  
  303. #paginacao span.info {background: #121212; margin: 0 1px 0 0; padding: 6px 6px; color: #777; text-decoration: none;border-radius:0px;margin-right:5px;border-radius:10px;}
  304.  
  305.  
  306. </style>
  307.  
  308.  
  309.  
  310. <body>
  311.  
  312. <div id="pagina">
  313. <div id="header">
  314. </div>
  315.  
  316. <div class="menuzinho">
  317.  
  318. <a href="/" class="menu"><div style="color:#000"> Home </div></a>
  319. <a href="/ask" class="menu"><div style="color:#000"> Ask </div></a>
  320. <a href="LINK" class="menu"> <div style="color:#000"> Twitter </div></a>
  321. <a href="LINK" class="menu"> <div style="color:#000"> Facebook </div></a>
  322. <a href="#?w=500" rel="creditos" class="poplight"><div class="menu"><div style="color:#000"> Creds ♥ </div></a></div>
  323.  
  324.  
  325. </div>
  326.  
  327.  
  328.  
  329.  
  330. <div id="sidebar">
  331. <div class="fotinhaheader"><img src="http://media.tumblr.com/c0656052e5e14def2623d05f5c5a518a/tumblr_inline_muzff3JT6Z1rwneo8.png" class="borderfofinhaheader"></div><br>
  332. <h3>{title}</h3>
  333. </div>
  334.  
  335.  
  336.  
  337.  
  338. <div id="conteudo">
  339.  
  340. <div id="post">
  341.  
  342. <div class="sidebar"<img src="http://4.bp.blogspot.com/_TxtrmxcBj1E/TDzcCGH1qxI/AAAAAAAAC8Q/ASWddCofveA/s1600/mini219.gif" width="45" align="left" class="border">
  343.  
  344. {block:Description}{Description}{/block:Description}
  345. <br><br><br>
  346.  
  347.  
  348. </div><br>
  349.  
  350. {block:Posts}
  351.  
  352. {block:Regular}<div class="post"><div class="box">
  353.  
  354.  
  355. {block:Title}<div class="h1"><p>{Title}</div>{/block:Title}
  356. <div class="entry">{Body}</div>
  357.  
  358. <div class="divdate"></div>
  359.  
  360.  
  361.  
  362. <br><div style="float: center"><div class="tag">Postado em: <a href="{Permalink}">{DayOfMonth}.{MonthNumberWithZero}.{Year} </a> | {block:NoteCount}<a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} </a>{/block:NoteCount} | <a href="{ReblogURL}" target="_blank" class="details"> Reblogue This! </a> </div>
  363.  
  364. </div></div> </div>
  365.  
  366.  
  367. {/block:Regular}
  368.  
  369.  
  370.  
  371.  
  372.  
  373. {block:Photo}
  374. <div class="post"><div class="box">
  375.  
  376.  
  377.  
  378. <center>{LinkOpenTag}<div class="opacidade"><img src="{PhotoURL-500}" class="" alt="{PhotoAlt}" width=493px/></div>{LinkCloseTag}</center>
  379. {block:Caption}
  380. <br>
  381. <div class="caption">{Caption}</div>
  382. {/block:Caption}
  383.  
  384.  
  385. <br><div style="float: center"><div class="tag">Postado em: <a href="{Permalink}">{DayOfMonth}.{MonthNumberWithZero}.{Year} </a> | {block:NoteCount}<a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} </a>{/block:NoteCount} | <a href="{ReblogURL}" target="_blank" class="details"> Reblogue This! </a> </div>
  386.  
  387.  
  388. </div></div></div>
  389. {/block:Photo}
  390.  
  391. {block:Photoset}
  392. <div class="post"><div class="box">
  393.  
  394. <div class="photoset">{Photoset-500}</div>
  395. {block:Caption}
  396. <div class="caption">{Caption}</div>
  397. {/block:Caption}
  398.  
  399. <br><div style="float: center"><div class="tag">Postado em: <a href="{Permalink}">{DayOfMonth}.{MonthNumberWithZero}.{Year} </a> | {block:NoteCount}<a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} </a>{/block:NoteCount} | <a href="{ReblogURL}" target="_blank" class="details"> Reblogue This! </a> </div>
  400. </div></div></div>
  401. {/block:Photoset}
  402.  
  403.  
  404.  
  405. {block:Answer}
  406. <div class="post"><div class="box">
  407. <div class="pergunta">{Question}</div>
  408. <div class="perguntou"><img src="{AskerPortraitURL-24}" class="fotos"><div class="ii"><img src="http://media.tumblr.com/b30014df2e69e34f1d3fdfac6ca79bdc/tumblr_inline_mjxmf32kDt1qz4rgp.png"></div>Pergunta por: {Asker}</div>
  409. <br><br>
  410. <div class="resposta">{Answer}</div>
  411. <br><div style="float: center"><div class="tag">Respondida em: <a href="{Permalink}">{DayOfMonth}.{MonthNumberWithZero}.{Year} </a> | {block:NoteCount}<a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} </a>{/block:NoteCount} | <a href="{ReblogURL}" target="_blank" class="details"> Reblogue This! </a> </div>
  412.  
  413.  
  414. </div></div></div>
  415. {/block:Answer}
  416.  
  417.  
  418.  
  419.  
  420. {block:Quote}
  421. <div class="post"><div class="box">
  422. <div class="quote">" {Quote} "</div>
  423. <div class="fica">
  424. <div class="sou">{block:Source}
  425. <div class="sou">{Source}</div>
  426. {/block:Source}</div></div>
  427.  
  428.  
  429.  
  430.  
  431. <div class="divdate"></div>
  432.  
  433.  
  434. <br><div style="float: center"><div class="tag">Postado em: <a href="{Permalink}">{DayOfMonth}.{MonthNumberWithZero}.{Year} </a> | {block:NoteCount}<a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} </a>{/block:NoteCount} | <a href="{ReblogURL}" target="_blank" class="details"> Reblogue This! </a> </div>
  435.  
  436.  
  437. </div> </div> </div>
  438. {/block:Quote}
  439.  
  440.  
  441.  
  442. {block:Link}
  443. <div class="post"><div class="box">
  444.  
  445.  
  446. <a href="{URL}" class="link" {Target}><div class="h1">{Name}</div></a>
  447. {block:Description}
  448. <div class="description">{Description}</div>
  449. {/block:Description}
  450.  
  451.  
  452. <div class="divdate"></div>
  453.  
  454.  
  455.  
  456. <br><div style="float: center"><div class="tag">Postado em: <a href="{Permalink}">{DayOfMonth}.{MonthNumberWithZero}.{Year} </a> | {block:NoteCount}<a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} </a>{/block:NoteCount} | <a href="{ReblogURL}" target="_blank" class="details"> Reblogue This! </a> </div>
  457.  
  458.  
  459. </div></div> </div>
  460.  
  461. {/block:Link}
  462.  
  463.  
  464.  
  465.  
  466. {block:Chat}
  467. <div class="post"><div class="box">
  468.  
  469.  
  470.  
  471. <div class="chat">
  472. <div class="chat1">
  473. {block:Lines}
  474. <div class="chat2 {Alt}">
  475. {block:Label}
  476. <span>{Label}</span>
  477. {/block:Label}
  478. {Line}</div>
  479. {/block:Lines}
  480. </div>
  481. </div>
  482. <div class="divdate"></div>
  483.  
  484.  
  485.  
  486.  
  487. <!---------------- DATA DOS POSTS ------------->
  488.  
  489. <br><div style="float: center"><div class="tag">Postado em: <a href="{Permalink}">{DayOfMonth}.{MonthNumberWithZero}.{Year} </a> | {block:NoteCount}<a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} </a>{/block:NoteCount} | <a href="{ReblogURL}" target="_blank" class="details"> Reblogue This! </a> </div>
  490.  
  491.  
  492. </div></div> </div>
  493. {/block:Chat}
  494.  
  495.  
  496.  
  497. {block:Audio}
  498. <div class="post"><div class="box">
  499.  
  500.  
  501.  
  502. <div class="trackid2">{AudioPlayerGrey}</div>
  503. <div class="boxmusica">
  504. <div class="album">{block:AlbumArt}
  505. <img src="{AlbumArtURL}" class="album"width="95" >
  506. {/block:AlbumArt}</div>
  507. {block:TrackName}<div class="trackid">
  508. <c>Faixa:</c> {TrackName}</div>{/block:TrackName}
  509. {block:Artist} <div class="trackid"><c>Artista:</c> {Artist}</div>{/block:Artist}
  510. <div class="trackid"><c>Executado:</c> ({PlayCount}) Vezes</div>
  511. <div class="clear"></div>
  512. </div>
  513.  
  514.  
  515. <div class="divdate"></div>
  516.  
  517.  
  518.  
  519.  
  520. <br><div style="float: center"><div class="tag">postado em: <a href="{Permalink}">{DayOfMonth}.{MonthNumberWithZero}.{Year} </a> | {block:NoteCount}<a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} </a>{/block:NoteCount} | <a href="{ReblogURL}" target="_blank" class="details"> Reblogue This! </a> </div>
  521.  
  522.  
  523. </div></div> </div>
  524. {/block:Audio}
  525.  
  526.  
  527.  
  528. {block:Video}
  529. <div class="post">
  530. <div class="box">
  531.  
  532.  
  533.  
  534. <center>{Video-500}
  535. {block:Caption}
  536. <div class="caption">{Caption}</div>
  537. {/block:Caption}</center>
  538.  
  539.  
  540. <div class="divdate"></div>
  541.  
  542.  
  543.  
  544.  
  545. <br><div style="float: center"><div class="tag">Postado em: <a href="{Permalink}">{DayOfMonth}.{MonthNumberWithZero}.{Year} </a> | {block:NoteCount}<a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount} </a>{/block:NoteCount} | <a href="{ReblogURL}" target="_blank" class="details"> Reblogue This! </a> </div>
  546.  
  547. <div class="sombra"></div>
  548. </div></div> </div>
  549.  
  550. {/block:Video}
  551.  
  552.  
  553. {block:PostNotes}
  554. <div class="caixa">
  555. <div class="extra"><img src="http://static.tumblr.com/wa79tuo/3OKm1iuvh/clock.png" class="user"> {block:RebloggedFrom} <a href="{ReblogParentURL}"> Via,</a> <a href="{ReblogRootURL}"> From,</a> {/block:RebloggedFrom} {block:ContentSource}<a href="{SourceURL}" target=blank> Source </a>. {/block:ContentSource} </div>
  556. <div class="extra">
  557. <img src="http://static.tumblr.com/wa79tuo/3OKm1iuvh/clock.png" class="user"> {DayOfMonth},<b> {Month}</b> de {Year}<br>
  558. </div>
  559. <div class="extra">
  560. <img src="http://static.tumblr.com/wa79tuo/YzBm1iuyx/tag.png" class="user"> {block:HasTags}{/block:HasTags}
  561. <span style="width:auto;">
  562. {block:HasTags}
  563. {block:Tags}
  564. <a class="tag" href="{TagURL}">{Tag}</a>
  565. {/block:Tags}
  566. {/block:HasTags}</span>
  567. <br>
  568. </div>
  569. <div class="extra">
  570. <img src="http://static.tumblr.com/wa79tuo/MiZm1iv2y/heart.png" class="user">{NoteCount}
  571. </div>
  572. </div><br>
  573. <div class="caixa">
  574. {PostNotes}
  575. </div>
  576. {/block:PostNotes}
  577.  
  578. <!---------------- FIM DAS NOTAS DOS POSTS ------------->
  579. {/block:Posts}
  580.  
  581.  
  582.  
  583. <div id="paginacao"><span class="info">Página {CurrentPage} de {TotalPages} </span>{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">&laquo;</a>{/block:PreviousPage}{/block:Pagination}
  584. {block:JumpPagination length="15"}
  585. {block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage}
  586. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}
  587. {/block:JumpPagination}
  588. {block:Pagination}{block:NextPage}<a href="{NextPage}">&raquo;</a>{/block:NextPage}{/block:Pagination}</div>
  589.  
  590. </div>
  591.  
  592.  
  593. <div id="creditos" class="popup_block">
  594.  
  595.  
  596. <div class="h2">Creditos</div><br>
  597.  
  598. Theme desenvolvido por Jéssica V. (Jessierobsten). Não copie e não se inspire sem a minha autorização, todos os direitos do theme são reservados. Lembre-se que plágio é crime. <p>
  599. Obrigada a todas as pessoas que me ajudaram a fazer esse theme, abaixo darei uma lista das pessoas que me ajudaram e que sempre terei que agradecer:<br><br><br>
  600.  
  601. <cred><a href="http://jessierobsten.tumblr.com/"><cred1>Jéssyca Victoria</cred1></a> <img src=""> Desenvolvimento do theme e design </cred>
  602.  
  603. <cred><a href="http://things-to-help-you.tumblr.com/"><cred1>TTHY</cred1></a> <img src=""> Muitos códigos, materiais e tutoriais</cred>
  604.  
  605. <cred><a href="http://tumblr.com/"> <cred1>Tumblr USF </cred1></a> <img src=""> Hospedagem</cred>
  606.  
  607. <cred><a href="OLINK"><cred1> Cores, imagens e etc...</cred1></a> <img src=""> Photoshop SC5</cred>
  608.  
  609. <cred><a href="OLINK"> <cred1>Dafontes e Google</a> </cred1><img src=""> Fontes</cred>
  610.  
  611.  
  612. </div>
  613.  
  614.  
  615. </div>
  616.  
  617. <div id="footer"></div>
  618.  
  619.  
  620.  
  621. </body>
  622. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement