freakinaye

Theme 30

Jun 16th, 2012
671
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <head>
  2.  
  3. <!-- DEFAULT VARIABLES -->
  4.  
  5. <meta name="color:Background" content="#FFF"/>
  6. <meta name="color:Quote background" content="#F5F5F5"/>
  7. <meta name="color:Photoset background" content="#EEE"/>
  8. <meta name="color:Question background" content="#EEE"/>
  9. <meta name="color:Box" content="#FFF"/>
  10. <meta name="color:Border" content="#CCC"/>
  11. <meta name="color:Scrollbar" content="#CCC"/>
  12. <meta name="color:Scrollbar background" content="#F5F5F5"/>
  13. <meta name="color:Title" content="#777"/>
  14. <meta name="color:Text" content="#000"/>
  15. <meta name="color:Link" content="#777"/>
  16. <meta name="color:Shadow" content="#DDD"/>
  17. <meta name="image:Background" content=""/>
  18. <meta name="if:Show Title" content="0"/>
  19. <meta name="if:Faded Images" content="0"/>
  20. <meta name="if:Inverted Fade" content="0"/>
  21. <meta name="font:Title" content="Courier New"/>
  22. <meta name="font:Body" content="Trebuchet MS"/>
  23. <meta name="text:Link One Title" content="" />
  24. <meta name="text:Link One" content="" />
  25. <meta name="text:Link Two Title" content="" />
  26. <meta name="text:Link Two" content="" />
  27. <meta name="text:Link Three Title" content="" />
  28. <meta name="text:Link Three" content="" />
  29. <meta name="text:Link Four Title" content="" />
  30. <meta name="text:Link Four" content="" />
  31. <meta name="text:Link Five Title" content="" />
  32. <meta name="text:Link Five" content="" />
  33. <meta name="text:Link Six Title" content="" />
  34. <meta name="text:Link Six" content="" />
  35. <meta name="text:Link Seven Title" content="" />
  36. <meta name="text:Link Seven" content="" />
  37. <meta name="text:Link Eight Title" content="" />
  38. <meta name="text:Link Eight" content="" />
  39. <meta name="text:Link Nine Title" content="" />
  40. <meta name="text:Link Nine" content="" />
  41. <meta name="text:Link Ten Title" content="" />
  42. <meta name="text:Link Ten" content="" />
  43.  
  44. <title>{Title}</title>
  45.  
  46. <link href='http://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
  47.  
  48. <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
  49.  
  50. {block:indexpage}
  51.  
  52. {block:NextPage}<div id="page-nav"><a href="{NextPage}"></a></div>{/block:NextPage}
  53.  
  54. <script src='http://code.jquery.com/jquery-1.4.2.min.js' type='text/javascript'></script>
  55.  
  56. <script src='http://static.tumblr.com/1s4z8hu/UTBlo4136/jquery.masonry.min.js' type='text/javascript'></script>
  57.  
  58. <script type="text/javascript" src="http://static.tumblr.com/jnmer2r/WKhljk73d/jquery.infinitescroll.min.js"></script>
  59.  
  60. <script>
  61.  
  62. jQuery(window).load(function(){
  63.  
  64. var $wall = $('#posts');
  65.  
  66. $wall.imagesLoaded(function(){
  67.  
  68. $wall.masonry({
  69.  
  70. singleMode: true,
  71.  
  72. columnWidth: 265,
  73.  
  74. itemSelector: '#space'
  75.  
  76. });
  77.  
  78. });
  79.  
  80. $wall.infinitescroll({
  81.  
  82. navSelector : '#page-nav',
  83.  
  84. nextSelector : '#page-nav a',
  85.  
  86. itemSelector : '#space',
  87.  
  88. },
  89.  
  90. function( newElements ){
  91.  
  92. $(newElements).hide();
  93.  
  94. setTimeout(function(){
  95.  
  96. $wall.masonry({ appendedContent: $(newElements) });
  97.  
  98. },2000);
  99.  
  100. setTimeout(function(){
  101.  
  102. $(newElements).fadeIn('slow');
  103.  
  104. },2100);
  105.  
  106. },1000);
  107.  
  108. });
  109.  
  110. </script>
  111.  
  112. <script>
  113.  
  114. $.fn.imagesLoaded = function(callback){
  115.  
  116. var elems = this.find('img'),
  117.  
  118. len = elems.length,
  119.  
  120. _this = this;
  121.  
  122. if ( !elems.length ) {
  123.  
  124. callback.call( this );}
  125.  
  126. elems.bind('load',function(){
  127.  
  128. if (--len <= 0){
  129.  
  130. callback.call( _this );}
  131.  
  132. }).each(function(){
  133.  
  134. // cached images don't fire load sometimes, so we reset src.
  135.  
  136. if (this.complete || this.complete === undefined){
  137.  
  138. var src = this.src;
  139.  
  140. // webkit hack from http://groups.google.com/group/jquery-dev/browse_thread/thread/eee6ab7b2da50e1f
  141.  
  142. // data uri bypasses webkit log warning (thx doug jones)
  143.  
  144. this.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
  145.  
  146. this.src = src;}
  147.  
  148. });
  149.  
  150. return this;};
  151.  
  152. </script>
  153.  
  154. {/block:Indexpage}
  155.  
  156. <style type="text/css">
  157.  
  158. body{width:100%; background-color: {color:Background}; background-image:url({image:Background});
  159.  
  160. background-attachment: fixed; background-repeat: repeat; font-family:{font:body}; font-size: 10px; line-height:10px; color:{color:Text};}
  161.  
  162. a:link, a:active, a:visited{color: {color:Link}; text-decoration: none; -webkit-transition: color 0.3s ease-out; -moz-transition: color 0.3s ease-out; transition: color 0.3s ease-out;}
  163.  
  164. a:hover{color:{color:link}; text-decoration: none;}
  165.  
  166. #center{position:relative; width:634px; margin: auto; overflow:auto; overflow-y:hidden; margin-top: 8px;}
  167.  
  168. #posts{
  169.  
  170. {block:IndexPage}width: 530px; background-color: {color:box}; padding: 7px; {/block:IndexPage} {block:PermalinkPage}margin: auto; width:540px; background-color: {color:box};{/block:PermalinkPage} height: auto; margin-top: -5px; margin-bottom: 70px;}
  171.  
  172. #top{width: 530px; background-color:{color:box}; padding: 7px; height: 30px; border-bottom: 1px solid {color:Border};}
  173.  
  174. #bottom{position: fixed; width: auto; bottom: 0px; right: 0px; background-color:transparent; padding: 7px; color:#555; font-family: Arial; font-size: 9px; line-height: 9px; opacity: 0.7; margin: 7px;}
  175.  
  176. #bottom a{color:#555;}
  177.  
  178. #space{
  179.  
  180. {block:IndexPage}float: left; width: 250px; margin:7px;{/block:IndexPage}
  181.  
  182. {block:PermalinkPage}width: 500px; margin: auto; padding: 14px;{/block:PermalinkPage}}
  183.  
  184. #space .perma{position: absolute; width:auto; font-family: Georgia; height: 0px; font-size: 10px; line-height: 10px; text-align: center; overflow:hidden; background-color:#FFF;}
  185.  
  186. #space:hover .perma{overflow:visible; padding: 5px; height: 9px; -webkit-transition: opacity 0.3s linear; opacity: 0.9; -webkit-transition: all 0.3s linear; -moz-transition: all 0.3s linear; transition: all 0.3s linear;}
  187.  
  188. #space img{{block:IndexPage}max-width:250px;{/block:IndexPage}}
  189.  
  190. #pages{font-family: Tahoma; font-size: 9px; line-height: 9px; margin-top: 15px;}
  191.  
  192. #permapage{font-family: Bakersville; font-size: 10px; margin-bottom: 20px;}
  193.  
  194. #linkz{margin: auto; font-family: Verdana; font-size: 10px; line-height: 10px; text-align: center; margin-top: 10px; color: #555;}
  195.  
  196. #linkz a{color: #555;}
  197.  
  198. .permalink{display: block; font: normal 9px Helvetica, Arial, Sans Serif; text-align: right; text-transform: none; padding: 1px;}
  199.  
  200. .permalink a{color:#999;}
  201.  
  202. .links a:hover{text-transform: uppercase;}
  203.  
  204. .title{font-family: {font:Title}; font-size: {text:Title font size}; line-height: {text:Title line height}; color: {color:Title}; font-weight: normal;}
  205.  
  206. .blogtitle{font-family: Times New Roman; font-size: 18px; line-height: 18px; letter-spacing: 1px; font-style: italic; margin-bottom: 12px;}
  207.  
  208. .blogtitle a{color: #555;}
  209.  
  210. .video embed, .post div.video object {width:250px !important; height:180px !important;}
  211.  
  212. blockquote{padding:0px 0px 2px 3px; margin:0px 0px 2px 1px; border-left: 1px dotted {color:Text};}
  213.  
  214. </style>
  215.  
  216. <link rel="shortcut icon" href="{Favicon}">
  217.  
  218. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  219.  
  220. <meta name="viewport" content="width=820" />
  221.  
  222. </head>
  223.  
  224. <body>
  225.  
  226. <div style="display:scroll;position:fixed;bottom:10px;right:10px">hit counter/music player</div>
  227.  
  228. <div id="bottom"></div>
  229.  
  230. <div id="center">
  231.  
  232. <div id="top">
  233.  
  234. <div style="width: 258px;"><center><br>{Description}</center></div>
  235.  
  236. <div style="width: 258px; font-family: 'Amatic SC', cursive; font-size: 25px; line-height: 25px; float: right; margin-top: -15px; margin-right:-70px;">
  237. <form name="jump">
  238.  
  239. <select name="menu" onChange="location=document.jump.menu.options[document.jump.menu.selectedIndex].value;" value="GO">
  240.  
  241. <option value="/">links</option>
  242.  
  243. {block:ifLinkOneTitle}<option value="{text:Link One}">{text:Link One Title}</a></option>{/block:ifLinkOneTitle}
  244.  
  245. {block:ifLinkTwoTitle}<option value="{text:Link Two}">{text:Link Two Title}</a></option>{/block:ifLinkTwoTitle}
  246.  
  247. {block:ifLinkThreeTitle}<option value="{text:Link Three}">{text:Link Three Title}</a></option>{/block:ifLinkThreeTitle}
  248.  
  249. {block:ifLinkFourTitle}<option value="{text:Link Four}">{text:Link Four Title}</a></option>{/block:ifLinkFourTitle}
  250.  
  251. {block:ifLinkFiveTitle}<option value="{text:Link Five}">{text:Link Five Title}</a></option>{/block:ifLinkFiveTitle}
  252.  
  253. {block:ifLinkSixTitle}<option value="{text:Link Six}">{text:Link Six Title}</a></option>{/block:ifLinkSixTitle}
  254.  
  255. {block:ifLinkSevenTitle}<option value="{text:Link Seven}">{text:Link Seven Title}</a></option>{/block:ifLinkSevenTitle}
  256.  
  257. {block:ifLinkEightTitle}<option value="{text:Link Eight}">{text:Link Eight Title}</a></option>{/block:ifLinkEightTitle}
  258.  
  259. {block:ifLinkNineTitle}<option value="{text:Link Nine}">{text:Link Nine Title}</a></option>{/block:ifLinkNineTitle}
  260.  
  261. {block:ifLinkTenTitle}<option value="{text:Link Ten}">{text:Link Ten Title}</a></option>{/block:ifLinkTenTitle}
  262.  
  263. <option value="http://freakinaye.tumblr.com">theme</a></option>
  264.  
  265. </select>
  266.  
  267. </form>
  268.  
  269. </div></div>
  270.  
  271. <div id="posts">
  272.  
  273. {block:Posts}
  274.  
  275. <div id="space">
  276.  
  277. {block:Text}
  278.  
  279. {block:Title}<span class="title">{Title}</span>{/block:Title}
  280.  
  281. <span class="entrytext">{Body}</span>
  282.  
  283. {block:IndexPage}<div style="float: right; width: auto; font-family: Bakersville; font-size: 9px; line-height: 9px;"><a href="{Permalink}">+</a></div>{/block:IndexPage}
  284.  
  285. {/block:Text}
  286.  
  287. {block:Answer}
  288.  
  289. <div style="background-color:{color:QuestionBackground}; padding: 4px; {block:IndexPage}width: 242px;{/block:IndexPage}{block:PermalinkPage}width: 492px;{/block:PermalinkPage}"><b>{Asker}</b>: {Question}</div>
  290.  
  291. <div style="padding-left: 4px;">{Answer}</div>
  292.  
  293. {block:IndexPage}<div style="float: right; width: auto; font-family: Bakersville; font-size: 9px; line-height: 9px;"><a href="{Permalink}">+</a></div>{/block:IndexPage}
  294.  
  295. {/block:Answer}
  296.  
  297. {block:Link}
  298.  
  299. <a href="{URL}" class="title">{Name}</a>
  300.  
  301. {block:Description}{Description}{/block:Description}
  302.  
  303. {block:IndexPage}<div style="float: right; width: auto; font-family: Bakersville; font-size: 9px; line-height: 9px;"><a href="{Permalink}">+</a></div>{/block:IndexPage}
  304.  
  305. {block:Link}
  306.  
  307. {block:Photo}{block:IndexPage}
  308.  
  309. <div class="perma"><a href="{permalink}">{NoteCount}</a></span></div>
  310.  
  311. {/block:IndexPage}{block:IndexPage}<a href="{permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}" width=250px/></a>{/block:IndexPage}{block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"width=500px/>{/block:PermalinkPage}
  312.  
  313. {/block:Photo}
  314.  
  315. {block:Photoset}
  316.  
  317. {block:IndexPage}<center><div style="padding-top: 10px; padding-bottom: 10px; background-color:{color:Photoset background};">{Photoset-250}</div></center>{/block:IndexPage}
  318.  
  319. {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}
  320.  
  321. {block:IndexPage}<div style="float: right; width: auto; font-family: Bakersville; font-size: 9px; line-height: 9px;"><a href="{Permalink}">+</a></div>{/block:IndexPage}
  322.  
  323. {/block:Photoset}
  324.  
  325. {block:Quote}
  326.  
  327. <div style="background-color:{color:Quote background}; padding: 4px;">{Quote}<div style="margin-left: 30px; font-style: italic;">{block:Source}- {Source}{/block:Source}</div></div>
  328.  
  329. {block:IndexPage}<div style="float: right; width: auto; font-family: Bakersville; font-size: 9px; line-height: 9px;"><a href="{Permalink}">+</a></div>{/block:IndexPage}
  330.  
  331. {/block:Quote}
  332.  
  333. {block:Chat}
  334.  
  335. {block:Title}<span class="title">{Title}</span>{/block:Title}
  336.  
  337. <ul class="chat">
  338.  
  339. {block:Lines}
  340.  
  341. <li class="user_{UserNumber}">
  342.  
  343. {block:Label}
  344.  
  345. <span class="label">{Label}</span>
  346.  
  347. {/block:Label}
  348.  
  349. {Line}
  350.  
  351. </li>
  352.  
  353. {/block:Lines}
  354.  
  355. </ul>
  356.  
  357. {block:IndexPage}<div style="float: right; width: auto; font-family: Bakersville; font-size: 9px; line-height: 9px;"><a href="{Permalink}">+</a></div>{/block:IndexPage}
  358.  
  359. {/block:Chat}
  360.  
  361. {block:Audio}
  362.  
  363. {block:IndexPage}<div style="background-color:#000; width: 250px;"><div style="width:250px; height:27px;">{AudioPlayerBlack}</div></div>{/block:IndexPage}
  364.  
  365. {block:PermalinkPage}<div style="background-color:#000; width: 500px;"><div style="width:500px; height:27px;">{AudioPlayerBlack}</div></div>{/block:PermalinkPage}
  366.  
  367. {block:IndexPage}<div style="float: right; width: auto; font-family: Bakersville; font-size: 9px; line-height: 9px;"><a href="{Permalink}">+</a></div>{/block:IndexPage}
  368.  
  369. {/block:Audio}
  370.  
  371. {block:Video}
  372.  
  373. {block:IndexPage}{Video-250}{Caption}{/block:IndexPage}
  374.  
  375. {block:PermalinkPage}{Video-500}{/block:PermalinkPage}
  376.  
  377. {block:IndexPage}<div style="float: right; width: auto; font-family: Bakersville; font-size: 9px; line-height: 9px;"><a href="{Permalink}">+</a></div>{/block:IndexPage}
  378.  
  379. {block:Video}
  380.  
  381. {block:PermalinkPage}
  382.  
  383. {block:Date}
  384.  
  385. <div id="permapage"><div style="float: left; width: auto; font-weight: bold;">Posted on {DayofMonth} {Month}</div>
  386.  
  387. {/block:Date}
  388.  
  389. {block:NoteCount}
  390.  
  391. <div style="float: right; width: auto; font-weight: bold;">{NoteCountWithLabel}</div>
  392.  
  393. {/block:NoteCount}<br>
  394.  
  395. {block:Caption}{Caption}{/block:Caption}</div>
  396.  
  397. {/block:PermalinkPage}
  398.  
  399. {block:PostNotes}{PostNotes}{/block:PostNotes}
  400.  
  401. </div>
  402.  
  403. {/block:Posts}
  404.  
  405. </div>
  406.  
  407. </div>
  408.  
  409. </div>
  410.  
  411. </center>
  412.  
  413. </body>
  414.  
  415. </html>
Add Comment
Please, Sign In to add comment