mikit20

Simple skin

May 21st, 2014
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 26.28 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <!-----------------------------------------------------------------
  4. _____ _ _
  5. |_ _| _ _ __ ___ | |__ | |_ __
  6. | || | | | '_ ` _ \| '_ \| | '__|
  7. | || |_| | | | | | | |_) | | |
  8. |_| \__,_|_| |_| |_|_.__/|_|_|
  9. ____ _
  10. / ___| ___ _ __ ___ _ __ __ _| |_ ___ _ __
  11. | | _ / _ \ '_ \ / _ \ '__/ _` | __/ _ \| '__|
  12. | |_| | __/ | | | __/ | | (_| | || (_) | |
  13. \____|\___|_| |_|\___|_| \__,_|\__\___/|_|
  14.  
  15. ___ ___ _ __ ___
  16. / __/ _ \| '_ ` _ \
  17. | (_| (_) | | | | | |
  18. (_)___\___/|_| |_| |_|
  19.  
  20. // Generate your own theme at
  21. http://tumblrgenerator.com
  22.  
  23. // A "tit" theme project
  24. http://tit.tumblr.com
  25.  
  26. // Comments & Suggestions are apprecaited
  27.  
  28. ------------------------------------------------------------------>
  29. <html xmlns="http://www.w3.org/1999/xhtml">
  30. <head>
  31.  
  32. <style type="text/css">body, a, a:hover {cursor: url(http://media.tumblr.com/1f40badff67b539f91dcf106caecd24b/tumblr_inline_mo87wyItqZ1qz4rgp.gif), progress;}</style>
  33.  
  34.  
  35. <script type="text/javascript">
  36. // <![CDATA[
  37. var colour="pink"; // in addition to "random" can be set to any valid colour eg "#f0f" or "red"
  38. var sparkles=50;
  39.  
  40. /****************************
  41. * Tinkerbell Magic Sparkle *
  42. *(c)2005-13 mf2fm web-design*
  43. * http://www.mf2fm.com/rv *
  44. * DON'T EDIT BELOW THIS BOX *
  45. ****************************/
  46. var x=ox=400;
  47. var y=oy=300;
  48. var swide=800;
  49. var shigh=600;
  50. var sleft=sdown=0;
  51. var tiny=new Array();
  52. var star=new Array();
  53. var starv=new Array();
  54. var starx=new Array();
  55. var stary=new Array();
  56. var tinyx=new Array();
  57. var tinyy=new Array();
  58. var tinyv=new Array();
  59.  
  60. window.onload=function() { if (document.getElementById) {
  61. var i, rats, rlef, rdow;
  62. for (var i=0; i<sparkles; i++) {
  63. var rats=createDiv(3, 3);
  64. rats.style.visibility="hidden";
  65. rats.style.zIndex="999";
  66. document.body.appendChild(tiny[i]=rats);
  67. starv[i]=0;
  68. tinyv[i]=0;
  69. var rats=createDiv(5, 5);
  70. rats.style.backgroundColor="transparent";
  71. rats.style.visibility="hidden";
  72. rats.style.zIndex="999";
  73. var rlef=createDiv(1, 5);
  74. var rdow=createDiv(5, 1);
  75. rats.appendChild(rlef);
  76. rats.appendChild(rdow);
  77. rlef.style.top="2px";
  78. rlef.style.left="0px";
  79. rdow.style.top="0px";
  80. rdow.style.left="2px";
  81. document.body.appendChild(star[i]=rats);
  82. }
  83. set_width();
  84. sparkle();
  85. }}
  86.  
  87. function sparkle() {
  88. var c;
  89. if (Math.abs(x-ox)>1 || Math.abs(y-oy)>1) {
  90. ox=x;
  91. oy=y;
  92. for (c=0; c<sparkles; c++) if (!starv[c]) {
  93. star[c].style.left=(starx[c]=x)+"px";
  94. star[c].style.top=(stary[c]=y+1)+"px";
  95. star[c].style.clip="rect(0px, 5px, 5px, 0px)";
  96. star[c].childNodes[0].style.backgroundColor=star[c].childNodes[1].style.backgroundColor=(colour=="random")?newColour():colour;
  97. star[c].style.visibility="visible";
  98. starv[c]=50;
  99. break;
  100. }
  101. }
  102. for (c=0; c<sparkles; c++) {
  103. if (starv[c]) update_star(c);
  104. if (tinyv[c]) update_tiny(c);
  105. }
  106. setTimeout("sparkle()", 40);
  107. }
  108.  
  109. function update_star(i) {
  110. if (--starv[i]==25) star[i].style.clip="rect(1px, 4px, 4px, 1px)";
  111. if (starv[i]) {
  112. stary[i]+=1+Math.random()*3;
  113. starx[i]+=(i%5-2)/5;
  114. if (stary[i]<shigh+sdown) {
  115. star[i].style.top=stary[i]+"px";
  116. star[i].style.left=starx[i]+"px";
  117. }
  118. else {
  119. star[i].style.visibility="hidden";
  120. starv[i]=0;
  121. return;
  122. }
  123. }
  124. else {
  125. tinyv[i]=50;
  126. tiny[i].style.top=(tinyy[i]=stary[i])+"px";
  127. tiny[i].style.left=(tinyx[i]=starx[i])+"px";
  128. tiny[i].style.width="2px";
  129. tiny[i].style.height="2px";
  130. tiny[i].style.backgroundColor=star[i].childNodes[0].style.backgroundColor;
  131. star[i].style.visibility="hidden";
  132. tiny[i].style.visibility="visible"
  133. }
  134. }
  135.  
  136. function update_tiny(i) {
  137. if (--tinyv[i]==25) {
  138. tiny[i].style.width="1px";
  139. tiny[i].style.height="1px";
  140. }
  141. if (tinyv[i]) {
  142. tinyy[i]+=1+Math.random()*3;
  143. tinyx[i]+=(i%5-2)/5;
  144. if (tinyy[i]<shigh+sdown) {
  145. tiny[i].style.top=tinyy[i]+"px";
  146. tiny[i].style.left=tinyx[i]+"px";
  147. }
  148. else {
  149. tiny[i].style.visibility="hidden";
  150. tinyv[i]=0;
  151. return;
  152. }
  153. }
  154. else tiny[i].style.visibility="hidden";
  155. }
  156.  
  157. document.onmousemove=mouse;
  158. function mouse(e) {
  159. if (e) {
  160. y=e.pageY;
  161. x=e.pageX;
  162. }
  163. else {
  164. set_scroll();
  165. y=event.y+sdown;
  166. x=event.x+sleft;
  167. }
  168. }
  169.  
  170. window.onscroll=set_scroll;
  171. function set_scroll() {
  172. if (typeof(self.pageYOffset)=='number') {
  173. sdown=self.pageYOffset;
  174. sleft=self.pageXOffset;
  175. }
  176. else if (document.body && (document.body.scrollTop || document.body.scrollLeft)) {
  177. sdown=document.body.scrollTop;
  178. sleft=document.body.scrollLeft;
  179. }
  180. else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {
  181. sleft=document.documentElement.scrollLeft;
  182. sdown=document.documentElement.scrollTop;
  183. }
  184. else {
  185. sdown=0;
  186. sleft=0;
  187. }
  188. }
  189.  
  190. window.onresize=set_width;
  191. function set_width() {
  192. var sw_min=999999;
  193. var sh_min=999999;
  194. if (document.documentElement && document.documentElement.clientWidth) {
  195. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  196. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  197. }
  198. if (typeof(self.innerWidth)=='number' && self.innerWidth) {
  199. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  200. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  201. }
  202. if (document.body.clientWidth) {
  203. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  204. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  205. }
  206. if (sw_min==999999 || sh_min==999999) {
  207. sw_min=800;
  208. sh_min=600;
  209. }
  210. swide=sw_min;
  211. shigh=sh_min;
  212. }
  213.  
  214. function createDiv(height, width) {
  215. var div=document.createElement("div");
  216. div.style.position="absolute";
  217. div.style.height=height+"px";
  218. div.style.width=width+"px";
  219. div.style.overflow="hidden";
  220. return (div);
  221. }
  222.  
  223. function newColour() {
  224. var c=new Array();
  225. c[0]=255;
  226. c[1]=Math.floor(Math.random()*256);
  227. c[2]=Math.floor(Math.random()*(256-c[1]/2));
  228. c.sort(function(){return (0.5 - Math.random());});
  229. return ("rgb("+c[0]+", "+c[1]+", "+c[2]+")");
  230. }
  231. // ]]>
  232. </script>
  233.  
  234.  
  235. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  236. <title>{Title}{block:PostTitle} - {PostTitle}{/block:PostTitle}</title>
  237. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  238. <link rel="shortcut icon" href="{Favicon}">
  239. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  240. <meta name="text:Link 1" content=""/>
  241. <meta name="text:Link 1 URL" content=""/>
  242. <meta name="text:Link 2" content=""/>
  243. <meta name="text:Link 2 URL" content=""/>
  244. <meta name="text:Link 3" content=""/>
  245. <meta name="text:Link 3 URL" content=""/>
  246. <meta name="text:Link 4" content=""/>
  247. <meta name="text:Link 4 URL" content=""/>
  248. <meta name="text:Link 5" content=""/>
  249. <meta name="text:Link 5 URL" content=""/>
  250. <meta name="text:Link 6" content=""/>
  251. <meta name="text:Link 6 URL" content=""/>
  252. <meta name="text:Link 7" content=""/>
  253. <meta name="text:Link 7 URL" content=""/>
  254. <meta name="text:Link 8" content=""/>
  255. <meta name="text:Link 8 URL" content=""/>
  256. <meta name="text:Home Label" content="Home"/>
  257. <meta name="text:Ask Label" content="Ask"/>
  258. <meta name="text:Submit Label" content="Submit"/>
  259. <meta name="text:Archive Label" content="Archive"/>
  260. <meta name="if:Show Archive Link" content="1"/>
  261. <meta name="if:Show Submit Link" content="1"/>
  262. <meta name="if:Show Title" content="1"/>
  263. <meta name="if:Show Tags" content="0"/>
  264. <meta name="if:Animation" content="1"/>
  265. <meta name="if:To Top Button" content="1"/>
  266. <meta name="if:Infinite Scroll" content="1"/>
  267. <meta name="if:Show Captions" content="0"/>
  268. <meta name="if:Show Tags" content="0"/>
  269. <meta name="image:Background" content=""/>
  270. <meta name="image:Sidebar" content=""/>
  271. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/jkEm9tb4p/jquery-1.8.1.min.js"></script>
  272. <link rel="stylesheet" type="text/css" href="http://static.tumblr.com/cpaytv3/2V1m9r58l/reset.css">
  273. <script type="text/javascript" src="http://static.tumblr.com/tpqedpr/vnzmibpqr/minified.js"></script>
  274. <style type="text/css">
  275. body {
  276. color: #7d7d7d;background: #ffffff url({image:Background});
  277. font-family: calibri light;
  278. font-size: 11px;
  279. line-height: 18px;
  280. letter-spacing: 1px;
  281. }
  282. p {margin:0 0 .75em 0} p:last-child {margin:0}
  283. a {
  284. color: #fccfcf;
  285. text-decoration:none;
  286. {block:IfAnimation}-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;-o-transition:all .2s ease;{/block:IfAnimation}}
  287. a:hover {color: #dbeefc; }
  288. blockquote {quotes: "" "" "'" "'"; margin: 0.75em 0 .75em .75em;padding-left: 1.5em;
  289. line-height: 100%;border-left: solid 4px #EDEDED;
  290. }
  291. h1 {
  292. font-family: Courier New;
  293. font-size: 24px;
  294. line-height: 1.5em;font-weight: normal;
  295. }
  296. ul {
  297. margin: 0px 1.5em .75em;}
  298. li {
  299. margin: .75em 0;
  300. list-style-type: square;
  301. }
  302. .box img {
  303. display: block;
  304. max-width: 100%;}.m-i {
  305. display: block;
  306. line-height: 1px!important;
  307. }
  308. .menu-picture {
  309. line-height: 100%;
  310. display: inline-block;
  311. line-height: 0px!important;
  312. }
  313. .post-link{
  314. font-family: Lucida Sans;
  315. font-size: 8px;
  316. line-height: 8px;
  317. }p.source{text-align: center;}
  318. .menu-picture {
  319. line-height: 100%;display: inline-block;
  320. }p.source{text-align: center;}
  321. h3 {
  322. font-size: 14px; font-weight: normal;
  323. }.tagged { text-align: center; line-height: 8px;font-size: 8px;}
  324. .text { padding: 5px;}
  325.  
  326.  
  327. @font-face {
  328. font-family: "smile";
  329. src: url('http://static.tumblr.com/e1djgf7/QIdn3i0r8/end_of_the_dream.ttf');
  330. }
  331.  
  332. .text2 {
  333. font-size:30px;
  334. font-family: smile;
  335. }
  336.  
  337. p.question {
  338. margin-bottom: .375em;
  339. }
  340. p.words {
  341. padding: 6px;
  342. line-height: 1.5em;
  343. color: #858585;
  344. background: #fffcfc;
  345. }
  346. .response {
  347. background: #FFD4D4;
  348. color: #fff;
  349. padding: 5px;
  350. margin-bottom: .75em;
  351. }
  352. .answer {
  353. text-align: left;
  354. }
  355. .post {
  356. position: relative;
  357. {block:IndexPage}
  358. width:250px;
  359. {/block:IndexPage}
  360. {block:PermalinkPage}
  361. width:500px;
  362. {/block:PermalinkPage}
  363. float:right;
  364. background: #ffffff;
  365. padding:10px;
  366. margin:20px;
  367. border: 1px solid #DDDDDD;
  368. border-radius: 0px;
  369. }
  370.  
  371. .post img {max-width:500px; border-radius: 7px; {block:ifDuascolunas}{block:IndexPage}max-width:250px; border-radius: 7px;{/block:IndexPage}{/block:ifDuascolunas};}
  372.  
  373.  
  374. .box {position: relative;}
  375.  
  376. #side {
  377. text-align: left;
  378. margin-top: 60px;
  379. width:236px;
  380. padding:3px;position: fixed;
  381. margin-left:694px;
  382. background: #ffffff;
  383. border: 1px solid #eee;
  384. box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
  385. -moz-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
  386. -webkit-box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.09);
  387. }#side img {
  388. max-width: 100%;
  389. }ul {margin-bottom: .75em;}
  390. #contain {
  391. width:918px;
  392. margin: 20px auto 0;
  393. }
  394. #content {
  395. width:624px;
  396. float: left;
  397. margin-left: 200px;
  398.  
  399. }
  400. #infscr-loading{position:absolute!important;width:16px!important;height:11px!important;margin-bottom:-16px!important;top:auto!important;bottom:0;left:50%!important}.post .perma{position:absolute;left:0;top:0;opacity:0;filter:alpha(opacity=0);z-index:10000}.post:hover .perma{opacity:1;filter:alpha(opacity=100)}.p1{float:left;display:block;margin-right:4px;height:14px;font-size:8px;padding:0 4px;line-height:14px;text-transform:uppercase;background:rgba(255,255,255,.75); {block:IfAnimation}-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;-o-transition:all .2s ease;{/block:IfAnimation}}.p1:hover{background:rgba(255,255,255,100)}.p1 a{color:#000}.post-right { float: left; text-transform: uppercase; } .post-left { float: right; text-transform: uppercase;}select{font-family:{font:Body};font-size:10px;width:50%;letter-spacing:3px;padding:0;text-align:center}iframe#tumblr_controls,.btn.icon.theme{filter:invert(100%);-webkit-filter:invert(100%);-moz-filter:invert(100%);-o-filter:invert(100%);-ms-filter:invert(100%); opacity:.4;position:fixed!important}.box iframe {
  401. max-width: 100%;
  402. }.text img {max-width: 100%;}img {display: block;}.box img {display: block;}
  403. .post-info-data{text-align:center}.notes img{display:block;float:left;margin-right:.75em}ol.notes li{margin:.375em 0;list-style-type:none;line-height:16px}
  404.  
  405. #toTop{display:none;text-decoration:none;position:fixed;bottom:10px;right:10px;overflow:hidden;width:21px;height:21px;border:0;text-indent:100%;background:url(http://static.tumblr.com/uiqhh9x/372m6hyqw/up.png) no-repeat left top;opacity:.5;filter:alpha(opacity = 50);{block:IfAnimation}-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;-o-transition:all .2s ease;{/block:IfAnimation}}#toTopHover{width:21px;height:21px;display:block;overflow:hidden;float:left;opacity:0;-moz-opacity:0;filter:alpha(opacity=0);{block:IfAnimation}-webkit-transition:all .2s ease;-moz-transition:all .2s ease;transition:all .2s ease;-o-transition:all .2s ease;{/block:IfAnimation}}#toTop:hover{opacity:1;filter:alpha(opacity = 100)}#toTop:active,#toTop:focus{outline:0}
  406.  
  407. a.btn{position:absolute;z-index:999999;top:26px;right:3px;white-space:nowrap;outline:0;text-decoration:none;cursor:pointer;overflow:hidden;text-overflow:ellipsis;font:600 12px/18px "Helvetica Neue","HelveticaNeue",Helvetica,Arial,sans-serif;height:20px;padding:0 5px;-webkit-font-smoothing:antialiased;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-o-box-sizing:border-box;box-sizing:border-box;-webkit-transition-property:padding;-moz-transition-property:padding;-ms-transition-property:padding;-o-transition-property:padding;transition-property:padding;-webkit-transition-duration:.1s;-moz-transition-duration:.1s;-ms-transition-duration:.1s;-o-transition-duration:.1s;transition-duration:.1s;-webkit-transition-timing-function:ease;-moz-transition-timing-function:ease;-ms-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease}.btn{color:#fff;border:1px solid rgba(0,0,0,0.18);background:rgba(0,0,0,0.38);text-shadow:1px 1px 0 rgba(0,0,0,0.08)}a.btn,a.btn:hover{color:white!important}.btn{margin-bottom:5px;color:#fff;border:1px solid rgba(0,0,0,0.18);background:rgba(0,0,0,0.38);text-shadow:1px 1px 0 rgba(0,0,0,0.08);-webkit-border-radius:2px;-moz-border-radius:2px;border-radius:2px}.btn:hover::after,.btn:focus::after{background:rgba(255,255,255,0.09);color:white}.btn:active::after{background:rgba(255,255,255,0.18) color:white}.btn_label.show{display:block}.btn::after{position:absolute;top:0;right:0;bottom:0;left:0;content:'';-webkit-border-radius:inherit;-moz-border-radius:inherit;border-radius:inherit}.btn.icon::before{display:block;content:'';position:absolute;top:0;left:0;bottom:0;width:20px;border-radius:inherit;background:url('http://static.tumblr.com/tpqedpr/cQ1mbwb60/de.png') 0 0 no-repeat}.btn.theme::before{background-position:0 -0px}.btn img{width:15px}.btn.icon{padding-left:20px}.btn:active::after {background:rgba(255,255,255,0.18)}.clear {clear: both;} #pagination {display: none;} .clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.clearfix{display:inline-block}html[xmlns] .clearfix{display:block}* html .clearfix{height:1%}
  408. </style></head>
  409. <body>
  410.  
  411. <div id="contain" class="clearfix">
  412. <div id="side">
  413.  
  414. <div class="text">
  415. {block:IfShowTitle}<h1><div class="text2"><a href="/">{Title}</a></div></h1>{/block:IfShowTitle}</div>
  416.  
  417. <center><a href="/" class="m-i"><img style="border-radius: 70px; background-color: #fff; border: 1px solid #C4C4C4; padding: 5px;
  418. height="120" height="120" class="menu-picture" src="{image:sidebar}"/></a></center>
  419. <br>
  420. <div id="description" >{Description}</div><div >
  421. <br>
  422. <center>
  423. <form name="jump"><select onChange="location.href=this.options[this.selectedIndex].value;"><option value="/">{text:home label}</option><option value="/ask">{text:ask label}</option>{block:HasPages}{block:Pages}<option value="{URL}">{Label}</option>{/block:Pages}{/block:HasPages}{block:iflink1}<option value="{text:link 1 url}">{text:link 1}</option>{/block:iflink1}{block:iflink2}<option value="{text:link 2 url}">{text:link 2}</option>{/block:iflink2}{block:iflink3}<option value="{text:link 3 url}">{text:link 3}</option>{/block:iflink3}{block:iflink4}<option value="{text:link 4 url}">{text:link 4}</option>{/block:iflink4}{block:iflink5}<option value="{text:link 5 url}">{text:link 5}</option>{/block:iflink5}{block:iflink6}<option value="{text:link 6 url}">{text:link 6}</option>{/block:iflink6}{block:iflink7}<option value="{text:link 7 url}">{text:link 7}</option>{/block:iflink7}{block:iflink8}<option value="{text:link 8 url}">{text:link 8}</option>{/block:iflink8}{block:SubmissionsEnabled}{block:IfShowSubmitLink}<option value="/submit">{text:Submit label}</option>{/block:IfShowSubmitLink}{/block:SubmissionsEnabled}{Block:IfShowArchiveLink}<option value="/archive">{text:Archive Label}</option>{/Block:IfShowArchiveLink}</select></form></div></center>
  424. {block:IfNotInfiniteScroll}{block:Pagination}<p class="previous-next text">{block:PreviousPage}<a href="{PreviousPage}" class="next"><</a>{/block:PreviousPage}<span id="pages"> {CurrentPage} of {TotalPages} </span>{block:NextPage}<a href="{NextPage}" class="previous">></a>{/block:NextPage}</p>{/block:Pagination}{/block:IfNotInfiniteScroll}
  425. </div>
  426. </div>
  427. <div id="content">
  428. {block:Posts}
  429. <div class="post">
  430.  
  431. {block:Text}
  432. <div class="text">
  433. {block:Title}<h3>{Title}</h3>{/block:Title}
  434. {Body}
  435. <!-- permalink --> {block:IndexPage}
  436. <span class="post-link post-right"><a href="{ReblogURL}" target="_blank" >Reblog</a></span><span class="post-link post-left">{timeago} with <a href="{Permalink}">{NoteCountWithLabel}</a></span><div class="clear"></div>
  437. <!-- /permalink --> {/block:IndexPage}
  438. </div>
  439. {/block:Text}
  440.  
  441. {block:Quote}
  442. <div class="text quote">
  443. <p class="words">&#8220;{Quote}&#8221;</p>
  444. {block:Source}<p class="source">{Source}</p>{/block:Source}
  445. <!-- permalink --> {block:IndexPage}
  446. <span class="post-link post-right"><a href="{ReblogURL}" target="_blank" >Reblog</a></span><span class="post-link post-left">{timeago} with <a href="{Permalink}">{NoteCountWithLabel}</a></span><div class="clear"></div>
  447. <!-- /permalink --> {/block:IndexPage}
  448. </div>
  449. {/block:Quote}
  450.  
  451. {block:Link}
  452. <div class="text link">
  453. <h3><a href="{URL}" {Target}>{Name}</a></h3>
  454. {block:Description}{Description}{/block:Description}
  455. <!-- permalink --> {block:IndexPage}
  456. <span class="post-link post-right"><a href="{ReblogURL}" target="_blank" >Reblog</a></span><span class="post-link post-left">{timeago} with <a href="{Permalink}">{NoteCountWithLabel}</a></span><div class="clear"></div>
  457. <!-- /permalink --> {/block:IndexPage}
  458. </div>
  459. {/block:Link}
  460.  
  461. {block:Chat}
  462. <div class="text chat">
  463. <ul class="conversation">
  464. {block:Lines}
  465. <li class="line {Alt}">
  466. {block:Label}<span class="person">{Label}</span>{/block:Label}
  467. <span class="person-said">{Line}</span>
  468. </li>
  469. {/block:Lines}
  470. </ul>
  471. <!-- permalink --> {block:IndexPage}
  472. <span class="post-link post-right"><a href="{ReblogURL}" target="_blank" >Reblog</a></span><span class="post-link post-left">{timeago} with <a href="{Permalink}">{NoteCountWithLabel}</a></span><div class="clear"></div>
  473. <!-- /permalink --> {/block:IndexPage}
  474. </div>
  475. {/block:Chat}
  476.  
  477. {block:Audio}
  478. <div class="text audio">
  479. <p>{AudioPlayerBlack}</p>
  480. {block:IndexPage}{block:IfShowCaptions}
  481. {block:Caption}{Caption}{/block:Caption}
  482. {/block:IfShowCaptions}{/block:IndexPage}
  483. <!-- permalink --> {block:IndexPage}
  484. <span class="post-link post-right"><a href="{ReblogURL}" target="_blank" >Reblog</a></span><span class="post-link post-left">{timeago} with <a href="{Permalink}">{NoteCountWithLabel}</a></span><div class="clear"></div>
  485. <!-- /permalink --> {/block:IndexPage}
  486. </div>
  487. {/block:Audio}
  488.  
  489. {block:Answer}
  490. <div class="text answer">
  491. <div class="response">
  492. <p>{Asker} said: </p><p class="question">{Question}</p>
  493. </div>
  494. {Answer}
  495. <!-- permalink --> {block:IndexPage}
  496. <span class="post-link post-right"><a href="{ReblogURL}" target="_blank" >Reblog</a></span><span class="post-link post-left">{timeago} with <a href="{Permalink}">{NoteCountWithLabel}</a></span><div class="clear"></div>
  497. <!-- /permalink --> {/block:IndexPage}
  498. </div>
  499. {/block:Answer}
  500.  
  501. {block:Photoset}
  502. <div class="photoset">
  503. <div class="box">
  504. <!-- permalink --> {block:IndexPage}
  505. <div class="perma"><div class="p1"><a href="{reblogurl}" target="_blank">reblog</a>/ <a href="{Permalink}">{notecount}</a></div></div>
  506. <!-- /permalink --> {/block:IndexPage}
  507. {block:IndexPage}<center>{Photoset-250}</center>{/block:IndexPage}
  508. {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}
  509. </div>
  510. {block:IndexPage}{block:IfShowCaptions}
  511. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  512. {/block:IfShowCaptions}{/block:IndexPage}
  513. </div>
  514. {/block:Photoset}
  515.  
  516. {block:Video}
  517. <div class="video">
  518. <div class="box">
  519. <!-- permalink --> {block:IndexPage}
  520. <div class="perma"><div class="p1"><a href="{reblogurl}" target="_blank">reblog</a>/ <a href="{Permalink}">{notecount}</a></div></div>
  521. <!-- /permalink --> {/block:IndexPage}
  522. {block:IndexPage}<center>{Video-250}</center>{/block:IndexPage}
  523. {block:PermalinkPage}{Video-500}{/block:PermalinkPage}
  524. </div>
  525. {block:IndexPage}{block:IfShowCaptions}
  526. {block:Caption}<div class="caption text">{Caption}</div>{/block:Caption}
  527. {/block:IfShowCaptions}{/block:IndexPage}
  528. </div>
  529. {/block:Video}
  530.  
  531. {block:Photo}
  532. <div class="photo">
  533. <div class="box">
  534. <!-- permalink --> {block:IndexPage}
  535. <div class="perma"><div class="p1"><a href="{reblogurl}" target="_blank">reblog</a>/ <a href="{Permalink}">{notecount}</a></div></div>
  536. <!-- /permalink --> {/block:IndexPage}
  537. {block:IndexPage}
  538. <a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" width="100%"/></a>
  539. {/block:IndexPage}
  540. {block:PermalinkPage}
  541. {LinkOpenTag}<img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="500"/>{LinkCloseTag}
  542. {/block:PermalinkPage}
  543. </div>
  544. {block:IndexPage}{block:IfShowCaptions}
  545. {block:Caption}<div class="caption text">{Caption}</div>{/block:Caption}
  546. {/block:IfShowCaptions}{/block:IndexPage}
  547. </div>
  548. {/block:Photo}
  549.  
  550. {block:IfShowTags}{block:IndexPage}{block:HasTags}
  551. <div class="tagged"><p>{lang:Tagged}: {block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}</p></div>
  552. {/block:HasTags}{/block:IndexPage}{/block:IfShowTags}
  553.  
  554. {block:PermalinkPage}
  555. <div id="post-info" class="text">
  556. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  557. {block:HasTags}
  558. <p class="tagged">{lang:Tagged}: {block:Tags}<a href="{TagURL}">#{Tag}</a> {/block:Tags}</p>
  559. {/block:HasTags}
  560. <p class="post-info-data">
  561. {block:Date}{12Hour}:{Minutes}:{Seconds} @ {MonthNumber}/{DayOfMonth}/{Year}<br/>{/block:Date}
  562. {block:NoteCount}{NoteCountWithLabel}<br />{/block:NoteCount}{block:RebloggedFrom}
  563. Reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br/>Posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>{block:RebloggedFrom}</p>
  564. {block:PostNotes}
  565. {PostNotes}
  566. {/block:PostNotes}
  567. </div>
  568. {/block:PermalinkPage}
  569.  
  570. </div> <!-- end single post -->
  571. {block:ContentSource}
  572. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" /> {/block:SourceLogo} {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  573. {/block:ContentSource}
  574. <!--{block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} -->
  575. {/block:Posts}
  576. </div> <!-- end content -->
  577. <div class="loading"></div>
  578. </div> <!-- end containing div -->
  579. {block:IfInfiniteScroll}
  580. {block:Pagination}<ul id="pagination">
  581. {block:PreviousPage}
  582. <li><a href="{PreviousPage}"></a></li>
  583. {/block:PreviousPage}
  584. {block:JumpPagination length="5"}
  585. {block:CurrentPage}
  586. <li><span class="current_page numbersNav"><strong>{PageNumber}</strong></span></li>
  587. {/block:CurrentPage}
  588. {block:JumpPage}
  589. <li><a class="jump_page numbersNav" href="{URL}">{PageNumber}</a></li>
  590. {/block:JumpPage}
  591. {/block:JumpPagination}
  592. {block:NextPage}
  593. <li><a id="nextPage" href="{NextPage}"></a></li>
  594. {/block:NextPage}
  595. </ul>{/block:Pagination}
  596. {/block:IfInfiniteScroll}
  597. {block:IndexPage}
  598. <script type="text/javascript">
  599. $(window).load(function () {
  600. $('#content').masonry(),
  601. $('.masonryWrap').infinitescroll({
  602. navSelector : '#pagination',
  603. nextSelector : '#pagination a#nextPage',
  604. itemSelector : ".post, .loading",
  605. bufferPx : 40,
  606. loadingImg : "http://static.tumblr.com/uiqhh9x/38Em68qk4/loading.gif",
  607. loadingText : "<em></em>",
  608. },
  609. function() { $('#content').masonry({ appendedContent: $(this) }); }
  610. );
  611. });
  612. </script>
  613. {/block:IndexPage}
  614. {block:IfToTopButton}
  615. <script type="text/javascript">
  616. $(document).ready(function() {
  617. /*
  618. var defaults = {
  619. containerID: 'toTop', // fading element id
  620. containerHoverID: 'toTopHover', // fading element hover id
  621. scrollSpeed: 1200,
  622. easingType: 'linear'
  623. };
  624. */
  625.  
  626. $().UItoTop({ easingType: 'easeOutQuart' });
  627.  
  628. });
  629. </script>
  630. <a href="#" id="toTop" style="display: none; "><span id="toTopHover"></span>To Top</a>
  631. {/block:IfToTopButton}
  632.  
  633.  
  634. <BODY onselectstart="return false;" ondragstart="return false;">
  635. <div style=" font-size:8px; position:fixed; bottom:5px; left:0px; text-align:center; font-family:arial">
  636. theme by<center></center><a href="http://tumblrgenerator.com/">tumblrgenerator</a><br></a>
  637. but credit by <a href="cutesythuglife.tumblr.com">Miki</a></div>
  638.  
  639.  
  640. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment