Advertisement
ele-disse-adeus

14

Jan 15th, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.03 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" xml:lang="en" lang="en">
  3.  
  4. <head><script type='text/javascript'>
  5. //<![CDATA[
  6. var rate = 50;
  7. if (document.getElementById)
  8. window.onerror=new Function("return true")
  9.  
  10. var objActive; // The object which event occured in
  11. var act = 0; // Flag during the action
  12. var elmH = 0; // Hue
  13. var elmS = 128; // Saturation
  14. var elmV = 255; // Value
  15. var clrOrg; // A color before the change
  16. var TimerID; // Timer ID
  17. if (document.all) {
  18. document.onmouseover = doRainbowAnchor;
  19. document.onmouseout = stopRainbowAnchor;
  20. }
  21. else if (document.getElementById) {
  22. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  23. document.onmouseover = Mozilla_doRainbowAnchor;
  24. document.onmouseout = Mozilla_stopRainbowAnchor;
  25. }
  26. function doRainbow(obj)
  27. {
  28. if (act == 0) {
  29. act = 1;
  30. if (obj)
  31. objActive = obj;
  32. else
  33. objActive = event.srcElement;
  34. clrOrg = objActive.style.color;
  35. TimerID = setInterval("ChangeColor()",100);
  36. }
  37. }
  38. function stopRainbow()
  39. {
  40. if (act) {
  41. objActive.style.color = clrOrg;
  42. clearInterval(TimerID);
  43. act = 0;
  44. }
  45. }
  46. function doRainbowAnchor()
  47. {
  48. if (act == 0) {
  49. var obj = event.srcElement;
  50. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  51. obj = obj.parentElement;
  52. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  53. break;
  54. }
  55. if (obj.tagName == 'A' && obj.href != '') {
  56. objActive = obj;
  57. act = 1;
  58. clrOrg = objActive.style.color;
  59. TimerID = setInterval("ChangeColor()",100);
  60. }
  61. }
  62. }
  63. function stopRainbowAnchor()
  64. {
  65. if (act) {
  66. if (objActive.tagName == 'A') {
  67. objActive.style.color = clrOrg;
  68. clearInterval(TimerID);
  69. act = 0;
  70. }
  71. }
  72. }
  73. function Mozilla_doRainbowAnchor(e)
  74. {
  75. if (act == 0) {
  76. obj = e.target;
  77. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  78. obj = obj.parentNode;
  79. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  80. break;
  81. }
  82. if (obj.nodeName == 'A' && obj.href != '') {
  83. objActive = obj;
  84. act = 1;
  85. clrOrg = obj.style.color;
  86. TimerID = setInterval("ChangeColor()",100);
  87. }
  88. }
  89. }
  90. function Mozilla_stopRainbowAnchor(e)
  91. {
  92. if (act) {
  93. if (objActive.nodeName == 'A') {
  94. objActive.style.color = clrOrg;
  95. clearInterval(TimerID);
  96. act = 0;
  97. }
  98. }
  99. }
  100. function ChangeColor()
  101. {
  102. objActive.style.color = makeColor();
  103. }
  104. function makeColor()
  105. {
  106. // Don't you think Color Gamut to look like Rainbow?
  107. // HSVtoRGB
  108. if (elmS == 0) {
  109. elmR = elmV; elmG = elmV; elmB = elmV;
  110. }
  111. else {
  112. t1 = elmV;
  113. t2 = (255 - elmS) * elmV / 255;
  114. t3 = elmH % 60;
  115. t3 = (t1 - t2) * t3 / 60;
  116. if (elmH < 60) {
  117. elmR = t1; elmB = t2; elmG = t2 + t3;
  118. }
  119. else if (elmH < 120) {
  120. elmG = t1; elmB = t2; elmR = t1 - t3;
  121. }
  122. else if (elmH < 180) {
  123. elmG = t1; elmR = t2; elmB = t2 + t3;
  124. }
  125. else if (elmH < 240) {
  126. elmB = t1; elmR = t2; elmG = t1 - t3;
  127. }
  128. else if (elmH < 300) {
  129. elmB = t1; elmG = t2; elmR = t2 + t3;
  130. }
  131. else if (elmH < 360) {
  132. elmR = t1; elmG = t2; elmB = t1 - t3;
  133. }
  134. else {
  135. elmR = 0; elmG = 0; elmB = 0;
  136. }
  137. }
  138. elmR = Math.floor(elmR).toString(16);
  139. elmG = Math.floor(elmG).toString(16);
  140. elmB = Math.floor(elmB).toString(16);
  141. if (elmR.length == 1) elmR = "0" + elmR;
  142. if (elmG.length == 1) elmG = "0" + elmG;
  143. if (elmB.length == 1) elmB = "0" + elmB
  144. elmH = elmH + rate;
  145. if (elmH >= 360)
  146. elmH = 0;
  147. return '#' + elmR + elmG + elmB;
  148. }
  149. //]]>
  150. </script>
  151. <link href='http://fonts.googleapis.com/css?family=PT+Mono' rel='stylesheet' type='text/css'>
  152. <link href='http://fonts.googleapis.com/css?family=Play' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Stalemate' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Merienda' rel='stylesheet' type='text/css'>
  153.  
  154. <title>{Title}</title>
  155. <link rel="shortcut icon" href="{Favicon}">
  156. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  157. <link rel="shortcut icon" href="{Favicon}">
  158. <title>Untitled Document</title>
  159. <link rel="shortcut icon" href="{Favicon}">
  160. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  161. <link href='http://fonts.googleapis.com/css?family=Cabin+Sketch:bold' rel='stylesheet' type='text/css'>
  162. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/aK8m1cpdr/like2.js"></script>
  163. <iframe id="likeiframe" style="width: 1px; height: 1px;"></iframe>
  164. {block:Description}
  165. <meta name="description" content="{MetaDescription}" />
  166. {/block:Description}
  167. <meta name="color:background" content="#000000">
  168. <meta name="image:background" content="http://static.tumblr.com/7e289f7d89e7ec597a55329b1e4c84f8/jis8eac/thGmglfo8/tumblr_static_city-wallpaper-18.jpg">
  169. <meta name="image:sidebar" content="http://static.tumblr.com/b3c77d2854944f0325267f91e7dd2e65/jis8eac/Vqwmgn6kq/tumblr_static_tumblr_megyxrpdj21r51psro1_500.jpg">
  170. <meta name="color:post" content="#222222">
  171. <meta name="color:text" content="#666666">
  172. <meta name="font:titulo" content="georgia">
  173. <meta name="color:link" content="#666666">
  174. <meta name="color:link hover" content="#666666">
  175. <meta name="text:menu1" content="URL">
  176. <meta name="text:menu1 nome" content="link">
  177. <meta name="text:menu2" content="URL">
  178. <meta name="text:menu2 nome" content="link 2">
  179. <meta name="text:menu3" content="URL">
  180. <meta name="text:menu3 nome" content="link 3">
  181. <meta name="text:menu4" content="URL">
  182. <meta name="text:menu4 nome" content="link 4">
  183. <meta name="text:menu5" content="URL">
  184. <meta name="text:menu5 nome" content="link 5">
  185. <meta name="text:menu6" content="URL">
  186. <meta name="text:menu6 nome" content="link 6">
  187. <meta name="text:frase" content="Miss your heater kiss.">
  188. <meta name="color:ol notes" content="#333333">
  189. <meta name="color:chat line 1" content="#333333">
  190. <meta name="color:chat line 2" content="#222222">
  191. <meta name="color:music" content="#333333">
  192. <meta name="color:h1" content="#aaaaaa">
  193. <meta name="color:extra" content="#333333">
  194. <meta name="color:ask" content="#333333">
  195. </head>
  196. <style type="text/css">
  197. #tumblr_controls{position:fixed !important; }
  198. /*** Corpo **********/
  199. body {text-align:justify;color: {color:text}; font-size: 11px; font-family: calibri, sans-serif; background: {color:background} url('{image:background}') fixed;background-position:center;}
  200.  
  201.  
  202. /*** Link estilo ***/
  203. a {color: {color:link};text-decoration: none;}
  204. a:hover {color:{color:link hover}}
  205.  
  206. /*** Quote formato **/
  207. blockquote { margin-bottom: 5px; padding: 3px; background:{color:mais claro que o dtls pf aqui}; margin-top: 5px; margin-left: 2px; margin-right: 2px; text-shadow: 0px 0px 3px {color:bgcaixa};
  208. font-size: 8pt; color: #; border-left: 6px solid {color:dtls}; color:{color:dtls}}
  209.  
  210. ful { list-style: none; }
  211. ol { list-style-position: inside; }
  212. * { margin: 0; padding: 0; outline: none; }
  213.  
  214.  
  215. #content { width: 615px; background: #; background-repeat: repeat-y; margin-left: auto; margin-right: auto;}
  216.  
  217. #posts{margin-top: -16px; background-color: #; width:416px; float: left; position: relative; margin-left: 0px; padding-left: 2px;margin-left:74px;}
  218. #content .yp {background-color:{color:post}; overflow: hidden; width: 180px; margin: 4px; border: solid 10px {color:post}; float:left; {block:PermalinkPage}width:500px;{/block:PermalinkPage};}
  219. m {color: #;}
  220. .clear {clear:both; }
  221. em {color:#;}
  222. dat {color: #; border-bottom: 1px solid #; }
  223. p { padding-bottom: 8px; }
  224. table, td, tr {font-size: 11px; font-family : 'Trebuchet MS', Tahoma, Arial, Helvetica, sans-serif; color: {color:text};}
  225. .la {float: right;}
  226.  
  227.  
  228. /*** Notes *********/
  229. ol.notes {display : block;margin-bottom : 1px; list-style-type: none; text-align: left;}
  230. ol.notes li.note {border-top: solid 1px #fff;background: {color:ol notes}; padding: 2px;}
  231. ol.notes li.note img.avatar {display: inline; width: 10px}
  232. ol.notes li.note span.action {font-weight: none;}
  233. ol.notes li.note .answer_content {font-weight: normal;}
  234. ol.notes li.note blockquote {display: none;}
  235. ol.notes li.note blockquote a {text-decoration: none;}
  236. /*** Chat, Musica e outros **/
  237. .post-chat {width: 500px; margin-top:-5px; background: #;}
  238. .chat {list-style-type: none; }
  239. .odd {font-size: 10px;padding: 6px; background: {color:chat line 1}; color: #; margin-top: 1px;}
  240. .even {font-size:10px; padding: 6px; background: {color:chat line 2}; margin-top: 1px; text-shadow: 0px 1px 1px {color:post};}
  241. .trackid {font-family: 'Pontano Sans', sans-serif; font-size: 9pt; margin-left: 0px;padding: 7px; margin-top: 1px; margin-bottom: 2px; background:{color:music};margin-right: 0px; text-shadow: 0px 1px 1px #;}
  242. .trackid c {color: {color:link};text-transform:uppercase; font-size: 8pt;}
  243. .trackid2 {margin-top: 1px; background:{color:music}; display: block; height:27px;overflow:hidden; padding-left: 54px;}
  244. .albumim {margin-top: -27px; background: url('http://static.tumblr.com/tx5g7yp/smgm74843/capa.png') no-repeat; width: 56px; height: 56px; position: absolute; float: left; display: inline-block;-webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomright: 5px; -moz-border-radius-bottomleft: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px;}
  245. .albumim img {-webkit-border-bottom-right-radius: 5px; -webkit-border-bottom-left-radius: 5px; -moz-border-radius-bottomright: 5px; -moz-border-radius-bottomleft: 5px; border-bottom-right-radius: 5px; border-bottom-left-radius: 5px;}
  246. .boxmusica {background:{color:post};}
  247. .clear {margin-top:1px;}
  248. .rs {margin-left: 55px;}
  249. .caixa {padding: 3px;}
  250. /*** Comandos **/
  251. @font-face {font-family: "04b03";
  252. src: url('http://static.tumblr.com/icz5xqv/ZUmlobzpk/bonjourlindas.blgspt_upload_pxl.ttf'); format("truetype"); }
  253. .quote {text-align:center; font-family: georgia, sans-serif; font-size: 7pt; padding: 1px; color: {color:h1}; }
  254. .h1 a {text-align:justify; font-family: georgia, sans-serif; font-size: 13pt; padding: 1px; color: {color:h1}; }
  255. .h1 {text-align:justify; font-family: georgia, sans-serif; font-size: 13pt; padding: 1px; color: {color:h1}; }
  256. .h1 small {text-align:justify; font-family: georgia, sans-serif; font-size: 10pt; padding: 1px; color: {color:h1}; }
  257. .h2 a {text-align:justify; font-family: georgia, sans-serif; font-size: 13pt; padding: 1px; color: {color:h1}; }
  258. /** estilo de ask by htmland **/
  259. .msanswer {background: {color:ask};float: left; color: {color:text};width: 95%; margin-bottom: 25px; padding-top: 13px; padding-left: 13px; padding-bottom: 13px; padding-right: 13px; text-align: justy; display: block; overflow: hidden; border-bottom: 2px solid {color:ask};}
  260. .msanswerimg {border: 1px solid {color:ask}; float: left; margin-top: -27px; margin-bottom: 5px; opacity: 0.8}
  261. .msanswerimg:hover {opacity: 1.0}
  262. .msanswerinfo {background: {color:ask}; padding: 6px; float: left; display: inline-block; width: auto; color: {color:text}; font: normal 8px '04b03'; text-transform: uppercase; margin-bottom: 5px; margin-top: -27px; margin-left: 20px}
  263. .msanswerinfo a {color: {color:post};}
  264.  
  265. .caixa .perma {border-top:1px solid {color:background};text-align:right;font-family: georgia, sans-serif; font-size: 7pt; padding-top:1px; color: {color:h1};background:{color:post};}
  266.  
  267.  
  268. .caix .perma {position:absolute;font:13px 'georgia';text-align:center;width:180px;color:{color:post};opacity:0;padding:3px;color:#fff;z-index:999;}
  269. .caix .perma a {color:#fff;}
  270. .caix .perma .reb {border-bottom:1px solid {color:post};padding-bottom:3px;margin-bottom:3px;float:left;}
  271.  
  272. .caix:hover .perma {opacity:1;z-index:999;}
  273. .quotes {position:absolute; opacity: 0.1; top:0px; margin-left: 0px; font-size: 80px;}
  274. .cmen {background:{color:post};height:100%;padding:10px;padding-top:250px;text-align:center;border:1px solid #000;overflow:hidden;}
  275. #men {font:italic 11px 'georgia';color:#000;text-align:center;width:50px;text-shadow:1px 1px 1px #333;}
  276. .divi {background-image:url('http://static.tumblr.com/jis8eac/34Nmgn4k7/69.png');margin-top:3px;margin-bottom:3px;width:50px;height:2px;}
  277. .eun {border:1px solid #333;margin-top:-18px;position:fixed;height:100%;}
  278. .eun2 {border:1px solid #333;margin-top:-18px;position:fixed;height:100%;margin-left:495px;}
  279. .ladodireito {background:{color:post};height:100%;padding:10px;padding-top:305px;text-align:center;border:1px solid #000;overflow:hidden;width:100px;}
  280.  
  281. .caixafora {position:fixed;border:10px solid {color:background};margin-left:507px;margin-top:150px;}
  282. .fotoprin {background:#fff;background-image: url('{image:sidebar}');-moz-transition-duration: .99s; -webkit-transition-duration: .99s;}
  283. .fotoprin:hover {-webkit-transform: scale(1.5);opacity:0;}
  284. .fotoprin2 {background:#fff;background-image: url('{image:sidebar}');-moz-transition-duration: .99s; -webkit-transition-duration: .99s;}
  285. .fotoprin2:hover {-webkit-transform: scale(1.5);opacity:0;}
  286. </style>
  287.  
  288. <body>
  289.  
  290. <div id="content">
  291. <div class="eun"><div class="cmen"><a href="{text:menu1}" id="men">{text:menu1 nome}</a><div class="divi"></div>
  292. <a href="{text:menu2}" id="men">{text:menu2 nome}</a><div class="divi"></div>
  293. <a href="{text:menu3}" id="men">{text:menu3 nome}</a> <div class="divi"></div>
  294. <a href="{text:menu4}" id="men">{text:menu4 nome}</a> <div class="divi"></div>
  295. <a href="{text:menu5}" id="men">{text:menu5 nome}</a><div class="divi"></div>
  296. <a href="{text:menu6}" id="men">{text:menu6 nome}</a></div></div>
  297. <div class="eun2"><div class="ladodireito">
  298. <div id="men" style="width:100px;margin-top:10px;">{description}</div>
  299. </div></div>
  300. <div class="caixafora"><img src="{image:sidebar}"width="80px" class="fotoprin"></div>
  301. <div class="caixafora"><img src="{image:sidebar}"width="80px" class="fotoprin2"></div>
  302.  
  303. <div id="posts">
  304.  
  305. {block:Posts}
  306.  
  307. <div class="yp">
  308.  
  309.  
  310. {block:Text}
  311. <div class="caixa">
  312.  
  313. <div class="hm">
  314. <div class="quote">{block:Title}{Title}{/block:Title}
  315. {Body}</div>{block:IndexPage}<div class="perma"><a href="{ReblogURL}">reblog</a> + <a href="{Permalink}">{NoteCount} notes</a> + <a href="{ReblogParentURL}">source</a></div>{/block:IndexPage}
  316. </div>
  317. </div>
  318. {/block:Text}
  319.  
  320.  
  321.  
  322. {block:Photo}
  323. <div class="caix">
  324. {block:IndexPage}<div class="perma"><a href="{ReblogURL}"><u><b>reblog</b></u></a> <br> {block:NoteCount}{NoteCount} notes{/block:NoteCount}</div>
  325. {/block:IndexPage}
  326.  
  327. {block:IndexPage}<img style="margin-bottom: -3px;" src="{PhotoURL-500}" width="180px">{/block:IndexPage}
  328. {block:PermalinkPage}<img src="{PhotoURL-500}" width="500">{/block:PermalinkPage}
  329.  
  330. </div>
  331. {/block:Photo}
  332.  
  333.  
  334. {block:Photoset}
  335. <div class="caix">
  336. {block:IndexPage}<div class="perma"><a href="{ReblogURL}"><u><b>reblog</b></u></a> <br> {block:NoteCount}{NoteCount} notes{/block:NoteCount}</div>
  337. {/block:IndexPage}
  338. <div style="margin-bottom: -3px;">
  339. {block:IndexPage}{Photoset-250}{/block:IndexPage}
  340. </div>
  341. {block:PermalinkPage}{Photoset-250}{/block:PermalinkPage}
  342. </div>
  343. {/block:Photoset}
  344.  
  345.  
  346. {block:Quote}
  347. <div class="caixa">
  348. <span class="quotes">❝</span>
  349. <div class="quote">{Quote} {block:Source}- <b>{Source}</b>{/block:Source}</div>
  350. {block:IndexPage}<div class="perma"><a href="{ReblogURL}">reblog</a> + <a href="{Permalink}">{NoteCount} notes</a> + <a href="{ReblogParentURL}">source</a></div>{/block:IndexPage}
  351. </div>
  352. {/block:Quote}
  353.  
  354.  
  355.  
  356. {block:Chat}
  357. <div class="caix">
  358. {block:IndexPage}<div class="perma"><a href="{ReblogURL}"><u><b>reblog</b></u></a> <br> {block:NoteCount}{NoteCount} notes{/block:NoteCount}</div>
  359. {/block:IndexPage}
  360. {block:Title}<div class="h1">
  361. <a href="{Permalink}">{Title}</a></div>{/block:Title}
  362. {block:Lines}<div class="{Alt} user_{UserNumber}">
  363. {block:Label}<span class="label">{Label}</span>{/block:Label}
  364. {Line}</div>
  365. {/block:Lines}
  366. </div>
  367. {/block:Chat}
  368.  
  369.  
  370.  
  371. {block:Link}
  372. <div class="caixa">
  373.  
  374. <span class="h1"><a href="{URL}"><span class="links">{Name}</span></span></a>{block:Description}{Description}{/block:Description}{block:IndexPage}<div class="perma"><a href="{ReblogURL}">reblog</a> + <a href="{Permalink}">{NoteCount} notes</a> + <a href="{ReblogParentURL}">source</a></div>{/block:IndexPage}
  375. </div>
  376. {/block:Link}
  377.  
  378.  
  379. {block:Audio}
  380. <div class="caix">
  381. {block:IndexPage}<div class="perma"><a href="{ReblogURL}"><u><b>reblog</b></u></a> <br> {block:NoteCount}{NoteCount} notes{/block:NoteCount}</div>
  382. {/block:IndexPage}
  383. <div class="trackid2">{AudioPlayerGrey}</div>
  384. <div class="boxmusica">
  385. <div class="albumim">{block:AlbumArt}<img src="{AlbumArtURL}" class="album"width="56" >{/block:AlbumArt}</div>
  386. <div class="trackid">
  387. <span class="rs"><c>Faixa:</c> {block:TrackName}{TrackName}{/block:TrackName}</span></div>
  388. <div class="trackid"><c>Artista:</c> {block:Artist}{Artist}{/block:Artist}</div>
  389. <div class="trackid"><c>Executado:</c> ({PlayCount}) Vezes</div>
  390. <div class="clear"></div>
  391. </div>
  392. </div>
  393. {/block:Audio}
  394.  
  395.  
  396.  
  397. {block:Video}
  398. <div class="caix">
  399. {block:IndexPage}<div class="perma"><a href="{ReblogURL}"><u><b>reblog</b></u></a> <br> {block:NoteCount}{NoteCount} notes{/block:NoteCount}</div>
  400. {/block:IndexPage}
  401. {block:IndexPage}<div class="video">{Video-250}</div>{/block:IndexPage}
  402. {block:PermalinkPage}{Video-250}{/block:PermalinkPage}
  403. </div></div>
  404. {/block:Video}
  405.  
  406.  
  407.  
  408. {block:Answer}
  409. <div class="caix">
  410. {block:IndexPage}<div class="perma"><a href="{ReblogURL}"><u><b>reblog</b></u></a> <br> {block:NoteCount}{NoteCount} notes{/block:NoteCount}</div>
  411. {/block:IndexPage}
  412. <div class="msanswer">
  413. {Question}
  414. </div>
  415. <img src="{AskerPortraitURL-24}" width="18px" class="msanswerimg">
  416. <div class="msanswerinfo">Ask por {Asker}</div>
  417. {Answer}
  418. </div>
  419. {/block:Answer}
  420.  
  421.  
  422. {block:PostNotes}
  423. <br>
  424. <div class="caixa">
  425. {block:Photoset}
  426. {block:Caption}<em>{Caption}</em>{/block:Caption}
  427. {/block:Photoset}
  428.  
  429. {block:Video}
  430. {block:Caption}{Caption}{/block:Caption}
  431. {/block:Video}
  432.  
  433. {block:Link}
  434. {block:Description}<em>{Description}</em>{/block:Description}
  435. {/block:Link}
  436.  
  437.  
  438. {PostNotes}
  439. </div>
  440.  
  441.  
  442.  
  443.  
  444.  
  445. {/block:PostNotes}
  446.  
  447. </div> <!-- fim -->
  448.  
  449. {/block:Posts}
  450. </div></div>
  451.  
  452. </div>
  453.  
  454.  
  455. <script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script>
  456. <script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>
  457. <script src="http://static.tumblr.com/thpaaos/lLwkowcqm/jquery.masonry.js"></script>
  458. <script type="text/javascript">
  459. $(window).load(function () {
  460. $('#posts').masonry(),
  461. $('.masonryWrap').infinitescroll({
  462. navSelector : "div#navigation",
  463. nextSelector : "div#navigation a#nextPage",
  464. itemSelector : ".yp",
  465. bufferPx : 10000,
  466. extraScrollPx: 11000,
  467. loadingImg : "http://static.tumblr.com/8yo5xxv/3Dem80mch/loading.gif",
  468. loadingText : "carregando",
  469. },
  470. // call masonry as a callback.
  471. function() { $('#posts').masonry({ appendedContent: $(this) }); }
  472. );
  473. });
  474. </script>
  475. {block:IndexPage}
  476. <div class="column navigation" id="navigation">
  477. {block:Pagination}
  478. {block:PreviousPage}<a href="{PreviousPage}" class="navigate">{/block:PreviousPage}{block:PreviousPage}</a>{/block:PreviousPage}
  479. {block:NextPage}<a href="{NextPage}" class="navigate" id="nextPage">{/block:NextPage}{block:NextPage}</a>{/block:NextPage}{/block:Pagination}
  480. </div>
  481. {/block:IndexPage}
  482.  
  483. <div style="position:fixed;bottom:20px;left:20px;"><a href="http://themesda-ca.tumblr.com/"><b>cacapsita ♔ </b></a></div>
  484.  
  485. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement