Advertisement
Annie_Schmitz

Neighbourhood Theme

Feb 21st, 2014
2,078
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 13.39 KB | None | 0 0
  1. <!--Neighbourhood Theme by resiliens
  2. http://fluorescent-themes.tumblr.com/
  3. Please do not remove the credit---->
  4.  
  5. <html lang="en">
  6.  
  7. <head>
  8. <title>{Title}</title>
  9. <link rel="shortcut icon" href="{Favicon}"/>
  10. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  11. {block:Description}<meta name="description" content="{MetaDescription}"/>{/block:Description}
  12. <meta name="color:background" content="#ffffff" />
  13. <meta name="color:text" content="#000000" />
  14. <meta name="color:title" content="#000000" />
  15. <meta name="color:title hover" content="#000000" />
  16. <meta name="color:link" content="#000000" />
  17. <meta name="color:link hover" content="#000000" />
  18. <meta name="color:scrollbar" content="#000000" />
  19. <meta name="color:highlight text" content="#ffffff" />
  20. <meta name="color:highlight background" content="#cccccc" />
  21.  
  22. <meta name="text:home title" content="home" />
  23. <meta name="text:ask title" content="ask" />
  24. <meta name="text:link 1 title" content="" />
  25. <meta name="text:link 1" content="" />
  26. <meta name="text:link 2 title" content="" />
  27. <meta name="text:link 2" content="" />
  28. <meta name="text:link 3 title" content="" />
  29. <meta name="text:link 3" content="" />
  30. <meta name="text:link 4 title" content="" />
  31. <meta name="text:link 4" content="" />
  32. <meta name="text:link 5 title" content="" />
  33. <meta name="text:link 5" content="" />
  34. <meta name="text:link 6 title" content="" />
  35. <meta name="text:link 6" content="" />
  36.  
  37. <meta name="image:Left Background" content""/>
  38. <meta name="image:Right Background" content""/>
  39. <meta name="image:Cover Background" content""/>
  40. <meta name="image:Sidebar Background" content""/>
  41. <meta name="image:Sidebar" content""/>
  42.  
  43. <meta name="if:Two Columns" content""/>
  44.  
  45. <meta name="if:Link One" content""/>
  46. <meta name="if:Link Two" content""/>
  47. <meta name="if:Link Three" content""/>
  48. <meta name="if:Link Four" content""/>
  49. <meta name="if:Link Five" content""/>
  50. <meta name="if:Link Six" content""/>
  51.  
  52.  
  53.  
  54. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  55.  
  56. <script src="http://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  57. <script>
  58. (function($){
  59. $(document).ready(function(){
  60. $("[title]").style_my_tooltips({
  61. tip_follows_cursor:true,
  62. tip_delay_time:200,
  63. tip_fade_speed:300
  64. }
  65. );
  66. });
  67. })(jQuery);
  68. </script>
  69.  
  70. {block:IndexPage}
  71.  
  72. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/iBElrgjim/jquerymasonry.js"></script>
  73. <script type="text/javascript" src="http://static.tumblr.com/dbek3sy/Qyblrgjfn/jqueryinfintescroll.js"></script>
  74.  
  75. <script type="text/javascript">
  76. $(window).load(function(){
  77. var $wall = $('#entries');
  78. $wall.imagesLoaded(function(){
  79. $wall.masonry({
  80. itemSelector: '#post, #post_photo',
  81. isAnimated : false
  82. });
  83. });
  84.  
  85. $wall.infinitescroll({
  86. navSelector : '#pagination',
  87. nextSelector : '#pagination a',
  88. itemSelector : '#post, #post_photo',
  89. bufferPx : 2000,
  90. debug : false,
  91. errorCallback: function() {
  92. $('#scroll').fadeOut('normal');
  93. }},
  94. function( newElements ) {
  95. var $newElems = $( newElements );
  96. $newElems.hide();
  97. $newElems.imagesLoaded(function(){
  98. $wall.masonry( 'appended', $newElems,{isAnimated: false}, function(){$newElems.fadeIn('slow');} );
  99. });
  100. }); $('#entries').show(500);
  101. });
  102. </script>
  103. {/block:IndexPage}
  104. <style type="text/css">
  105.  
  106. #s-m-t-tooltip{
  107. max-width:300px;
  108. margin:15px;
  109. padding:2px 8px;
  110. border:1px solid #ccc;
  111. border-radius:4px;
  112. background:#FFF;
  113. z-index:999999;
  114. letter-spacing:1px;
  115. font-size:9px;
  116. text-transform:uppercase;
  117. box-shadow:1px 1px 3px rgba(0,0,0,.1);}
  118.  
  119. body{
  120. background-color:{color:background};
  121. background-image: url({image:Left Background}), url({image:Right Background}), url({image:Cover Background});
  122. background-attachment: fixed;
  123. background-position: bottom 0px left 0px, bottom 0px right 0px;
  124. background-repeat: no-repeat, no-repeat, no-repeat;
  125. -webkit-background-size: auto, auto, auto;
  126. -moz-background-size: auto, auto, auto;
  127. -o-background-size: auto, auto, auto;
  128. background-size: auto, auto, cover;
  129. color:{color:text};
  130. font-family:consolas;
  131. font-size:10px;
  132. }
  133.  
  134. ::selection {
  135. background:{color:highlight background};
  136. color:{color:highlight text};
  137. }
  138. ::-moz-selection {
  139. background:{color:highlight background};
  140. color:{color:highlight text};
  141. }
  142.  
  143. ::-webkit-scrollbar{
  144. width:8px;
  145. height:8px;
  146. background:{color:background};}
  147.  
  148. ::-webkit-scrollbar-thumb{
  149. background:{color:scrollbar};
  150. height:5px;
  151. border:{color:background} solid 3px;}
  152.  
  153. a:link, a:active, a:visited{
  154. -webkit-transition: 0.3s ease;
  155. transition: 0.3s ease;
  156. -o-transition: 0.3s ease;
  157. -moz-transition: 0.3s ease;
  158. color:{color:link};
  159. text-decoration:none;
  160. }
  161.  
  162. a:hover{
  163. -webkit-transition: 0.3s ease;
  164. transition: 0.3s ease;
  165. -o-transition: 0.3s ease;
  166. -moz-transition: 0.3s ease;
  167. color:{color:link hover};
  168. }
  169.  
  170. #n{
  171.  
  172. }
  173.  
  174. #entries{{block:IndexPage}
  175. width:250px;
  176. {block:IfTwoColumns}
  177. width:750px;
  178. {/block:IfTwoColumns}
  179. margin-top:0px;
  180. margin-left:600px;
  181. position:absolute;
  182. {/block:IndexPage}{block:PermalinkPage}
  183. width:500px;
  184. margin-top:10px;
  185. margin-left:600px;
  186. position:absolute;
  187. {/block:PermalinkPage}
  188. }
  189.  
  190. #post{
  191. {block:IndexPage}
  192. margin-top:10px;
  193. margin-left:5px;
  194. padding:10px 10px 8px 10px;
  195. width:250px;
  196. {/block:IndexPage}
  197. {block:PermalinkPage}
  198. width:500px;
  199. {/block:PermalinkPage}
  200. }
  201.  
  202. #post .perma{
  203. {block:IndexPage}
  204. -webkit-transition: 0.3s ease;
  205. transition: 0.3s ease;
  206. -o-transition: 0.3s ease;
  207. -moz-transition: 0.3s ease;
  208. margin-top:5px;
  209. text-align:center;
  210. width:250px;
  211. opacity:0;
  212. font-size:9px;
  213. text-transform:uppercase;
  214. {/block:IndexPage}{block:PermalinkPage}
  215. display:none;
  216. {/block:PermalinkPage}
  217. }
  218.  
  219.  
  220.  
  221. #post:hover .perma{
  222. -webkit-transition: 0.3s ease;
  223. transition: 0.3s ease;
  224. -o-transition: 0.3s ease;
  225. -moz-transition: 0.3s ease;
  226. opacity:1;
  227. }
  228.  
  229. #sidebar{
  230. margin-top:100px;
  231. text-align:center;
  232. background:transparent;
  233. border-right:1px solid #ccc;
  234. border-left:1px solid #ccc;
  235. width:180px;
  236. padding:25px;
  237. margin-left:350px;
  238. position:fixed;
  239. background-attachment: fixed;
  240. background-image:url({image:Sidebar Background});
  241. }
  242.  
  243. #sidebar img{
  244. max-width:150px;
  245. }
  246.  
  247. #desc{
  248. padding:3px;
  249. }
  250.  
  251. .title{
  252. padding:3px;
  253. font-family:consolas;
  254. font-size:16px;}
  255.  
  256. .title a{
  257. -webkit-transition: 0.3s ease;
  258. transition: 0.3s ease;
  259. -o-transition: 0.3s ease;
  260. -moz-transition: 0.3s ease;
  261. color:{color:title};
  262. }
  263.  
  264. .title a:hover{
  265. -webkit-transition: 0.3s ease;
  266. transition: 0.3s ease;
  267. -o-transition: 0.3s ease;
  268. -moz-transition: 0.3s ease;
  269. color:{color:title hover};
  270. }
  271.  
  272. .links{
  273. font-style:italic;
  274. padding:3px;
  275. text-transform:lowercase;
  276. font-family:consolas;
  277. font-size:10px;
  278. letter-spacing:1px;}
  279.  
  280. .links a{
  281. }
  282.  
  283. i, em{
  284. color:{color:link};}
  285. b, strong{
  286. font-weight:normal;
  287. text-transform:uppercase;
  288. color:{color:link};}
  289. ul,ol{
  290. margin:0px;
  291. margin-left:-5px;}
  292. p{
  293. padding:0px;
  294. margin:2px;}
  295.  
  296.  
  297.  
  298. #credit {
  299. position:fixed;
  300. font-family:consolas;
  301. font-size:10px;
  302. bottom:10px;
  303. z-index:999999999999;
  304. right:10px;
  305. text-transform:uppercase;
  306. }
  307.  
  308.  
  309. blockquote{
  310. padding:3px;
  311. border-left:1px solid #e1e1e1;
  312. margin-left:10px;
  313. line-height:10px;
  314. }
  315.  
  316. {block:IndexPage}
  317. blockquote img{
  318. width:100px;
  319. overflow:hidden;
  320. }
  321. {/block:IndexPage}
  322. {block:PermalinkPage}
  323. blockquote img{
  324. width:200px;
  325. overflow:hidden;
  326. }
  327. {/block:PermalinkPage}
  328.  
  329. .text{
  330. text-decoration:bold;
  331. font-size:12px;
  332. text-transform:uppercase;
  333. }
  334.  
  335. #questions img{
  336. float:left;
  337. padding:2px;
  338. }
  339.  
  340. #questions a{
  341. font-size:9px;
  342. letter-spacing:1px;
  343. text-transform:uppercase;
  344. }
  345.  
  346. #questions {
  347. padding:4px;
  348. border-radius:6px;
  349. background:#eee;
  350. min-height:28px;
  351. border-bottom:1px solid #ccc;
  352. font-weight: bold;
  353. }
  354.  
  355. #questions img{
  356. border-radius:6px;
  357. }
  358.  
  359. .player{
  360. margin-left:110px;
  361. margin-top:25px;
  362. position:absolute;
  363. padding:2px;
  364. max-width:135px;
  365. padding:2px;
  366. font-size:9px;
  367. text-transform:uppercase;
  368. z-index:999999;
  369. {block:PermalinkPage}
  370. margin-top:0px;
  371. {/block:PermalinkPage}
  372. }
  373.  
  374. .audioplayer{
  375. margin-top:20px;
  376. margin-left:20px;
  377. opacity:.7;
  378. width:27px;
  379. height:27px;
  380. border-radius:30px;
  381. overflow:hidden;
  382. background:#fff;
  383. padding:15px;
  384. }
  385.  
  386. #cover{
  387. width:100px;
  388. background:#eee;
  389. position:absolute;
  390. height:100px;
  391. display:inline-block;
  392. float:left;
  393. {block:PermalinkPage}
  394. margin-top:-20px;
  395. {/block:PermalinkPage}
  396. }
  397.  
  398. #cover img{
  399. width:100px;
  400. height:100px;
  401. {block:PermalinkPage}
  402. margin-top:0px;
  403. {/block:PermalinkPage}
  404. }
  405.  
  406. .playbutton {
  407. width:30px;
  408. height:30px;
  409. overflow:hidden;
  410. position:relative;
  411. z-index:1000;
  412. margin:0px;}
  413.  
  414. </style>
  415.  
  416. </head>
  417. <body>
  418.  
  419. <div id="sidebar">
  420. <img src="{image:Sidebar}">
  421. <div class="title"><a href="/">{Title}</a></div>
  422. <div id="desc">{Description}</div>
  423. <div class="links">
  424. <a href="/">{text:home title}</a>
  425. <a href="/ask">{text:ask title}</a>
  426. {block:IfLinkOne}
  427. <a href="{text:link 1}">{text:link 1 title}</a>
  428. {/block:IfLinkOne}
  429. {block:IfLinkTwo}
  430. <a href="{text:link 2}">{text:link 2 title}</a>
  431. {/block:IfLinkTwo}
  432. {block:IfLinkThree}
  433. <a href="{text:link 3}">{text:link 3 title}</a>
  434. {/block:IfLinkThree}
  435. {block:IfLinkFour}
  436. <a href="{text:link 4}">{text:link 4 title}</a>
  437. {/block:IfLinkFour}
  438. {block:IfLinkFive}
  439. <a href="{text:link 5}">{text:link 5 title}</a>
  440. {/block:IfLinkFive}
  441. {block:IfLinkSix}
  442. <a href="{text:link 6}">{text:link 6 title}</a>
  443. {/block:IfLinkSix}
  444. <!---PLEASE DO NOT REMOVE/CHANGE THIS AT ALL--->
  445. <a href="http://resiliens.tumblr.com/">theme</a>
  446. <!---PLEASE DO NOT REMOVE/CHANGE THIS AT ALL--->
  447. </div>
  448. </div>
  449.  
  450. <div id="entries">
  451.  
  452.  
  453. {block:Posts}
  454.  
  455.  
  456. {block:ContentSource}
  457. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  458. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  459. {/block:SourceLogo}
  460. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  461. {/block:ContentSource}
  462.  
  463. <div id="post">
  464.  
  465.  
  466. {block:Photo}
  467. {block:IndexPage}
  468. <a href="{permalink}"><img src="{PhotoURL-250}"/></a>
  469. <div class="perma">
  470. <a href="{Permalink}">{NoteCountWithLabel}</a> |
  471. <a href="{ReblogURL}">reblog</a></div>
  472. {/block:IndexPage}
  473. {block:PermalinkPage}
  474. <a href="{permalink}"><img src="{PhotoURL-500}"/></a>
  475. {/block:PermalinkPage}
  476. {/block:Photo}
  477.  
  478.  
  479.  
  480. {block:Photoset}
  481. {block:IndexPage}
  482. {Photoset-250}
  483. <div class="perma">
  484. <a href="{Permalink}">{NoteCountWithLabel}</a> |
  485. <a href="{ReblogURL}">reblog</a>
  486. </div>
  487. {/block:IndexPage}
  488. {block:PermalinkPage}
  489. {Photoset-500}
  490. {/block:PermalinkPage}
  491. {/block:Photoset}
  492.  
  493. {block:Video}
  494. {block:IndexPage}
  495. {Video-250}
  496. <div class="perma">
  497. <a href="{Permalink}">{NoteCountWithLabel}</a> |
  498. <a href="{ReblogURL}">reblog</a>
  499. </div>
  500. {/block:IndexPage}
  501. {block:PermalinkPage}
  502. {Video-500}
  503. {/block:PermalinkPage}
  504. {/block:Video}
  505.  
  506.  
  507. {block:Text}
  508. <div class="text">{Title}</div>{Body}
  509. <div class="perma">
  510. <a href="{Permalink}">{NoteCountWithLabel}</a> |
  511. <a href="{ReblogURL}">reblog</a>
  512. </div>
  513. {/block:Text}
  514.  
  515.  
  516. {block:Link}
  517. <div class="text" style="background:#eee; padding:2px; letter-spacing:1px; text-decoration:underline;"><a href="{URL}">{Name} →</a></div>
  518. {block:Description}{Description}{/block:Description}
  519. <div class="perma">
  520. <a href="{Permalink}">{NoteCountWithLabel}</a> |
  521. <a href="{ReblogURL}">reblog</a>
  522. </div>
  523. {/block:Link}
  524.  
  525.  
  526. {block:Quote}
  527. <div class="text">"{Quote}"</div>
  528. {block:Source}-{Source}{/block:Source}
  529. <div class="perma">
  530. <a href="{Permalink}">{NoteCountWithLabel}</a> |
  531. <a href="{ReblogURL}">reblog</a>
  532. </div>
  533. {/block:Quote}
  534.  
  535.  
  536. {block:Chat}
  537. {block:Lines}
  538. {block:Label}<br>
  539. <div class="text" div style="font-size:9px; padding:2px; background:#eee;">{Label}
  540. {/block:Label}
  541. &nbsp;{Line}</div>
  542. {/block:Lines}
  543. <div class="perma">
  544. <a href="{Permalink}">{NoteCountWithLabel}</a> |
  545. <a href="{ReblogURL}">reblog</a>
  546. </div>
  547. {/block:Chat}
  548.  
  549.  
  550. {block:Audio}
  551. <div class="player">{block:TrackName}{TrackName}{/block:TrackName}<br>
  552. {block:Artist}by {Artist}{/block:Artist}<br>
  553. {block:PlayCount}{PlayCount} plays{/block:PlayCount}
  554. </div>
  555. <div id="cover">
  556. {block:AlbumArt}
  557. <img src="{AlbumArtURL}">
  558. {/block:AlbumArt}</div>
  559. <div class="audioplayer"><div class="playbutton">
  560. {AudioPlayerWhite}</div></div><br><br>
  561. <div class="perma">
  562. <a href="{Permalink}">{NoteCountWithLabel}</a> |
  563. <a href="{ReblogURL}">reblog</a>
  564. </div>
  565. {/block:Audio}
  566.  
  567.  
  568.  
  569. {block:Answer}<div id="questions">
  570. <img src="{AskerPortraitURL-24}">{Asker}: {Question}</div>
  571. {Answer}
  572. <div class="perma">
  573. <a href="{Permalink}">{NoteCountWithLabel}</a> |
  574. <a href="{ReblogURL}">reblog</a>
  575. </div>
  576. {/block:Answer}
  577.  
  578. {block:PermalinkPage}<div id="n">
  579. <br>
  580. {block:Tags}<a href="/tagged/{Tag}"> #{Tag} </a>{/block:Tags}
  581. <br>
  582. {block:Date}{TimeAgo}{/block:Date}
  583. {block:NoteCount}
  584. {NoteCountWithLabel}
  585. {/block:NoteCount}
  586. <br>
  587. {block:Caption}
  588. {Caption}
  589. {/block:Caption}
  590. <br>
  591. {block:PostNotes}{PostNotes}{/block:PostNotes}
  592. </div>
  593. {/block:PermalinkPage}
  594. </div>
  595. {/block:Posts}
  596. </div>
  597.  
  598.  
  599.  
  600.  
  601. {block:IndexPage}
  602. {block:Pagination}
  603. <div id="pagination">
  604. {block:NextPage}
  605. <a id="nextPage" href="{NextPage}"></a>
  606. {/block:NextPage}
  607. {block:PreviousPage}
  608. <a href="{PreviousPage}"></a>
  609. {/block:PreviousPage}
  610. </div>
  611. {/block:Pagination}
  612. {/block:IndexPage}
  613.  
  614. </div>
  615. <!---PLEASE DO NOT REMOVE/CHANGE THIS AT ALL--->
  616. <div id="credit"><a href="http://resiliens.tumblr.com">credit</a></div>
  617. <!---PLEASE DO NOT REMOVE/CHANGE THIS AT ALL--->
  618. </div>
  619. </body>
  620. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement