namunamoo

Muji

Mar 29th, 2013
3,348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.14 KB | None | 0 0
  1. <!--
  2. THEME MADE BY NAMUNAMOO/HIKOUSHI (http://hikoushi.tumblr.com)
  3. PLEASE DON'T REMOVE THE CREDITS. THANK YOU.
  4. -->
  5.  
  6.  
  7. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  8.  
  9. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  10. <html>
  11. <head>
  12.  
  13. <title>{title}</title>
  14. <link rel="shortcut icon" href="{Favicon}">
  15. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  16. {block:Description}
  17. <meta name="description" content="{MetaDescription}" />
  18. {/block:Description}
  19.  
  20. <!--LOOK AT ALL THESE FREAKIN' OPTIONS. ^^"-->
  21.  
  22. <meta name="color:Background" content="#FFFFFF"/>
  23. <meta name="color:Body Font" content="#363636"/>
  24. <meta name="color:Posts" content="#FFFFFF"/>
  25. <meta name="color:Border" content="#cccccc"/>
  26. <meta name="color:Links" content="#507dc4"/>
  27. <meta name="color:Links hover" content="#FFFFFF"/>
  28. <meta name="color:Accent Color" content="#8bce67"/>
  29. <meta name="color:Description" content="#898989"/>
  30.  
  31. <meta name="color:Entry Bold" content="#4db35a">
  32. <meta name="color:Entry Italic" content="#53a7f8">
  33.  
  34. <meta name="color:Notes" content="#cccccc"/>
  35. <meta name="color:Post Title" content="#8f65f5"/>
  36. <meta name="color:Quote" content="#363636"/>
  37. <meta name="color:Question Background" content="#EEEEEE"/>
  38.  
  39. <meta name="color:ScrollBar" content="#484848"/>
  40. <meta name="color:ScrollBar Background" content="#e8e8e8"/>
  41.  
  42. <meta name="image:Sidebar" content="http://25.media.tumblr.com/tumblr_lmyldp9Pt21qcv9d7o1_500.png"/>
  43. <meta name="image:Background" content=""/>
  44.  
  45.  
  46. <meta name="if:Infinite Scrolling" content="1"/>
  47. <meta name="if:500px posts" content="1"/>
  48. <meta name="if:400px posts" content="0"/>
  49. <meta name="if:250px posts" content="0"/>
  50. <meta name="if:Faded Images" content="1">
  51.  
  52. <meta name="text:title font size" content="26px">
  53. <meta name="text:link 1" content="/"/>
  54. <meta name="text:link 1 name" content="Link 1"/>
  55. <meta name="text:link 2" content="/"/>
  56. <meta name="text:link 2 name" content="Link 2"/>
  57. <meta name="text:link 3" content="/"/>
  58. <meta name="text:link 3 name" content="Link 3"/>
  59. <meta name="text:link 4" content=""/>
  60. <meta name="text:link 4 name" content=""/>
  61. <meta name="text:link 5" content=""/>
  62. <meta name="text:link 5 name" content=""/>
  63. <meta name="text:link 6" content=""/>
  64. <meta name="text:link 6 name" content=""/>
  65. <script type="text/javascript"
  66. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  67.  
  68. <script>
  69.  
  70.  
  71.  
  72. $(document).ready(function() {
  73.  
  74. //
  75.  
  76.  
  77.  
  78. //When you click on a link with class of poplight and the href starts with a #
  79.  
  80. $('a.poplight[href^=#]').click(function() {
  81.  
  82. var popID = $(this).attr('rel'); //Get Popup Name
  83.  
  84. var popURL = $(this).attr('href'); //Get Popup href to define size
  85.  
  86.  
  87.  
  88. //Pull Query & Variables from href URL
  89.  
  90. var query= popURL.split('?');
  91.  
  92. var dim= query[1].split('&');
  93.  
  94. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  95.  
  96.  
  97.  
  98. //Fade in the Popup and add close button
  99.  
  100. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://tiny.cc/closeimg" class="btn_close" title="Close Window" alt="Close" /></a>');
  101.  
  102.  
  103. //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
  104.  
  105. var popMargTop = ($('#' + popID).height() + 80) / 2;
  106.  
  107. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  108.  
  109.  
  110.  
  111. //Apply Margin to Popup
  112.  
  113. $('#' + popID).css({
  114.  
  115. 'margin-top' : -popMargTop,
  116.  
  117. 'margin-left' : -popMargLeft
  118.  
  119. });
  120.  
  121.  
  122.  
  123. //Fade in Background
  124.  
  125. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  126.  
  127. $('#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
  128.  
  129.  
  130.  
  131. return false;
  132.  
  133. });
  134.  
  135.  
  136.  
  137. //Close Popups and Fade Layer
  138.  
  139. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  140.  
  141. $('#fade , .popup_block').fadeOut(function() {
  142.  
  143. $('#fade, a.close').remove(); //fade them both out
  144.  
  145. });
  146.  
  147. return false;
  148.  
  149. });
  150.  
  151.  
  152.  
  153.  
  154.  
  155. });
  156.  
  157. </script>
  158.  
  159. <style type="text/css">
  160.  
  161. body {
  162. background-color: {color:Background};
  163. font-family: calibri;
  164. font-size: 10px;
  165. color: {color:Body Font};
  166. text-align: justify;
  167. background-image: url('{image:Background}');
  168. background-attachment: fixed;
  169. }
  170.  
  171. @font-face {
  172. font-family: "Meow";
  173. src: url(http://static.tumblr.com/kauezwz/YlIlz8nop/theonlyexception.ttf) format("truetype");
  174. }
  175.  
  176. @font-face {font-family: "dk";src: url('http://static.tumblr.com/iuggpng/XaZm5hhme/dk_pimpernel.ttf');}
  177.  
  178.  
  179. #posts {
  180. position: absolute;
  181. left: 25px;
  182. top: 25px;
  183. }
  184.  
  185. #lineup {
  186. background-image: url('{image:Post Box Background}');
  187. position: relative;
  188. margin-left: 480px;
  189. top:25px;
  190. {block:if500pxposts}width: 500px;{/block:if500pxposts}
  191. {block:if400pxposts}width: 400px;{/block:if400pxposts}
  192. {block:if250pxposts}width: 250px;{/block:if250pxposts}
  193. background-color:{color:Posts};
  194. margin-bottom: 5px;
  195. padding: 7px;
  196. z-index:500;
  197. }
  198.  
  199. #permalink {
  200. font-family: calibri;
  201. font-size: 8px;
  202. text-transform:uppercase;
  203. letter-spacing:1px;
  204. opacity: 0;
  205. {block:if500pxposts}margin-left:480px;{/block:if500pxposts}
  206. {block:if400pxposts}margin-left:380px;{/block:if400pxposts}
  207. {block:if250pxposts}margin-left:230px;{/block:if250pxposts}
  208. filter: alpha (opacity=0);
  209. position: absolute;
  210. top: 3px;
  211. text-align: left;
  212. padding-right: 9px;
  213. padding-top:5px;
  214. width: 80px;
  215. background-image: url('{image:Post Box Background}');
  216. background-color: #transp;
  217. color: #387dcc;
  218. -webkit-transition: all 1.0s ease;
  219. -moz-transition: all 1.0s ease;
  220. -o-transition: all 1.0s ease;
  221. padding-left:15px;
  222. }
  223.  
  224. #lineup:hover #permalink {
  225. {block:if500pxposts}margin-left:505px;{/block:if500pxposts}
  226. {block:if400pxposts}margin-left:405px;{/block:if400pxposts}
  227. {block:if250pxposts}margin-left:250px;{/block:if250pxposts}
  228. opacity:1;
  229. background-color: #transp;
  230. color:{color:description};
  231. filter: alpha (opacity=8);
  232. width: 80px;
  233. padding-top:5px;
  234. -webkit-transition: all 1.0s ease;
  235. -moz-transition: all 1.0s ease;
  236. -o-transition: all 1.0s ease;
  237. }
  238.  
  239. #permalink a {
  240. color:{color:Notes};
  241. padding-left:10px;
  242. margin-left:-10px;
  243. -webkit-transition: all 0.5s ease;
  244. -moz-transition: all 0.5s ease;
  245. -o-transition: all 0.5s ease;
  246. }
  247.  
  248. .question{
  249. background-color:{color:Question Background};
  250. padding: 5px 5px 5px 5px;
  251. {block:if500pxposts}width:435px;{/block:if500pxposts}
  252. {block:if400pxposts}width:335px;{/block:if400pxposts}
  253. {block:if250pxposts}width:185px;{/block:if250pxposts}
  254. margin-left:55px;
  255. margin-top:-51px;
  256. min-height:40px;
  257. }
  258.  
  259. .answer {
  260. background-color:{color:posts};
  261. padding-top: 1px;
  262. padding-bottom: 1px;
  263. padding-left: 10px;
  264.  
  265. }
  266.  
  267. #header {
  268. text-align: center;
  269. font-family: "loremipsum", serif;
  270. font-size: 30px;
  271. letter-spacing: {text:Title letter spacing};
  272. background-color: {color:Title Background};
  273. color: {color:Title};
  274. text-shadow: 1px 1px 1px #C4C4C4;
  275. font-weight: lighter;
  276.  
  277. }
  278.  
  279.  
  280. a.perma {
  281. color: {color:links};
  282.  
  283. }
  284.  
  285. a.perma:hover {
  286. color: {color:Links hover};
  287. }
  288.  
  289. .story {
  290. font-family:dk;
  291. font-size: 30px;
  292. color: {color:Post Title};
  293. text-align: left;
  294. margin:3px 0px 3px 0px;
  295. {block:if500pxposts}width: 470px;{/block:if500pxposts}
  296. {block:if400pxposts}width: 370px;{/block:if400pxposts}
  297. {block:if250pxposts}width: 200px;{/block:if250pxposts}
  298.  
  299. padding-left:10px;
  300. }
  301.  
  302.  
  303. #lineup img {max-width: 100%;}
  304.  
  305. .quote {
  306. font-family: Meow;
  307. font-size: 12px;
  308. font-style: italic;
  309. color: {color:Quote}
  310. }
  311.  
  312. blockquote {
  313. padding: 2px 2px 2px 2px;
  314. padding-left:5px;
  315. border-left:3px solid #898989;
  316. }
  317.  
  318. .tags {
  319. padding: 3px;
  320. }
  321.  
  322. a {
  323. color:{color:Links};
  324. -webkit-transition: all 0.5s ease;
  325. -moz-transition: all 0.5s ease;
  326. -o-transition: all 0.5s ease;
  327. text-decoration: none;
  328. }
  329.  
  330. a:hover {
  331. color:{color:Links hover};
  332. -webkit-transition: all 0.5s ease;
  333. -moz-transition: all 0.5s ease;
  334. -o-transition: all 0.5s ease;
  335. text-decoration: none;
  336. }
  337.  
  338. .entry b, strong {
  339. color: {color:Entry Bold};
  340. }
  341.  
  342. .entry i, em {
  343. color: {color:Entry Italic};
  344. }
  345.  
  346.  
  347.  
  348. ::-webkit-scrollbar-thumb:vertical {
  349. background-color:{color:ScrollBar};
  350. border-top:2px solid {color:ScrollBar};
  351. border-bottom:2px solid {color:ScrollBar};
  352. height:auto;
  353. }
  354.  
  355. ::-webkit-scrollbar-thumb:vertical:hover{
  356. background-color:{color:ScrollBar};
  357. }
  358.  
  359.  
  360.  
  361. ::-webkit-scrollbar-thumb:horizontal{
  362. background-color:{color:ScrollBar};
  363. height:auto;
  364. }
  365.  
  366. ::-webkit-scrollbar-thumb:horizontal:hover{
  367. background-color:{color:ScrollBar};
  368. }
  369.  
  370.  
  371.  
  372. ::-webkit-scrollbar{
  373. height:6px;
  374. width:6px;
  375. background-color: {color:ScrollBar Background};
  376. }
  377.  
  378. .topp {
  379. font-family: consolas;
  380. font-size: 20px;
  381. }
  382.  
  383. #scrollToTop:link,
  384. #scrollToTop:visited {
  385. color: {color:main links hover};
  386. background-color: transparent;
  387. display: none;
  388. position: fixed;
  389. bottom: 0px;
  390. margin-left: 410px;
  391. }
  392.  
  393. .bar{
  394. position:fixed;
  395. margin-top:50px;
  396. margin-left:450px;
  397. width:1px;
  398. height:470px;
  399. background-color:{color:Border};
  400. }
  401.  
  402.  
  403.  
  404. .b1a4{
  405. margin-top:-10px;
  406. margin-left:-195px;
  407. width:180px;
  408. font-family:dk;
  409. position: fixed;
  410. font-size: {text:title font size};
  411. letter-spacing: 3px;
  412. color: {color:Accent Color};
  413. text-align: right;
  414. text-transform:uppercase;
  415. z-index:-999;
  416. }
  417.  
  418.  
  419. #whee{
  420. opacity:1;
  421. z-index:999;
  422. margin-top:20px;
  423. margin-left:-180px;
  424. border: 2px solid {color:Border};}
  425.  
  426. .linkers{
  427. margin-left:-100px;
  428. margin-top:10px;
  429. position: fixed;
  430. text-align:left;
  431. width:70px;
  432. }
  433.  
  434. .linkz a{
  435. float: left;
  436. width: 60px;
  437. height: 10px;
  438. color: {color:description};
  439. background-color: #transp;
  440. margin-left: -40px;
  441. letter-spacing: 1px;
  442. padding-bottom: 3px;
  443. border-bottom: 1px solid {color:Border};
  444. padding-left:45px;
  445. padding-right:20px;
  446. text-align: right;
  447. font-size: 8px;
  448. -webkit-transition: all 0.9s ease;
  449. -moz-transition: all 0.9s ease;
  450. -o-transition: all 0.9s ease;
  451. text-transform:uppercase;
  452. letter-spacing: 2px;
  453. opacity:1;
  454. padding-top: 10px; z-index:1;}
  455. .linkz a:hover{
  456. float: left;
  457. right:20px;
  458. margin-left: 6px;
  459. letter-spacing: 3px;
  460. color: #898989;
  461. text-transform:uppercase;
  462. border-bottom: 1px solid {color:Accent Color};
  463. padding-left:25px;
  464. padding-right:5px;
  465. text-align: right;
  466. opacity:0.6;
  467. -webkit-transition: all 0.9s ease;
  468. -moz-transition: all 0.9s ease;
  469. -o-transition: all 0.9s ease;
  470. z-index:1;
  471. }
  472.  
  473.  
  474. .words{
  475. margin-top:140px;
  476. margin-left:-190px;
  477. margin-bottom:2px;
  478. text-align: left;
  479. border-left:2px solid {color:Accent Color};
  480. padding-left:10px;
  481. padding-top:15px;
  482. padding-bottom:30px;
  483. font-family:calibri;
  484. text-transform:uppercase;
  485. letter-spacing:1px;
  486. font-size:8px;
  487. width:160px;
  488. color: {color:description};
  489. }
  490.  
  491. .words b, strong {
  492. color: {color:Entry Bold};
  493. }
  494.  
  495. .words i, em {
  496. color: {color:Entry Italic};
  497. }
  498.  
  499. {block:ifFadedImages}
  500. img {
  501. padding: 0px;
  502. filter: alpha (opacity=100);
  503. opacity: 0.8;
  504. -webkit-transition: all 0.3s ease-out;
  505. -moz-transition: all 0.3s ease-out;
  506. transition: all 0.3s ease-out;cursor: }
  507.  
  508. img:hover {
  509. filter: alpha (opacity=80);
  510. opacity: 1;
  511. -webkit-transition: all 0.5s ease-out;
  512. -moz-transition: all 0.5s ease-out; transition: all 0.5s ease-out;cursor: }
  513. {/block:ifFadedImages}
  514.  
  515. #fade {
  516. display: none;
  517. background: #000;
  518. position: fixed;
  519. left: 0;
  520. top: 0;
  521. width: 100%;
  522. height: 100%;
  523. opacity: .80;
  524. z-index: 9999;
  525. }
  526.  
  527. .popup_block{
  528. display: none;
  529. background: #FFFFFF;
  530. padding: 20px;
  531. float: left;
  532. position: fixed;
  533. top: 50%;
  534. left: 50%;
  535. z-index: 99999;
  536. }
  537.  
  538. img.btn_close {
  539. float: right;
  540. margin: -55px -55px 0 0;
  541. }
  542.  
  543. *html #fade {
  544. position: absolute;
  545. }
  546.  
  547. *html .popup_block {
  548. position: absolute;
  549. }
  550.  
  551. .linkzz a{
  552. float: left;
  553. width: 100px;
  554. height: 20px;
  555. color: #fff;
  556. background-color: {color:Accent Color};
  557. margin-left: 10px;
  558. margin-top: 10px;
  559. letter-spacing: 1px;
  560. padding-bottom: 3px;
  561. padding-left:25px;
  562. padding-right:25px;
  563. text-align: center;
  564. font-size: 8px;
  565. -webkit-transition: all 0.9s ease;
  566. -moz-transition: all 0.9s ease;
  567. -o-transition: all 0.9s ease;
  568. text-transform:uppercase;
  569. letter-spacing: 2px;
  570. padding-top: 10px; z-index:1;}
  571. .linkzz a:hover{
  572. float: left;
  573. right:20px;
  574. background-color: #fff;
  575. letter-spacing: 2px;
  576. color: {color:Accent Color};
  577. text-transform:uppercase;
  578. -webkit-transition: all 0.9s ease;
  579. -moz-transition: all 0.9s ease;
  580. -o-transition: all 0.9s ease;
  581. z-index:1;
  582. }
  583.  
  584. .previous{
  585. position: fixed;
  586. margin-top: 340px;
  587. margin-left: 230px;
  588. font-size: 20px;
  589. font-family:consolas;
  590. text-transform:uppercase;
  591. z-index:999999999999999;
  592. -webkit-transition: all 0.6s ease;
  593. -moz-transition: all 0.6s ease;
  594. -o-transition: all 0.6s ease;
  595. color:{color:Main Links Hover};
  596. }
  597.  
  598. .previous:hover{
  599. position: fixed;
  600. margin-left: 225px;
  601. font-family:consolas;
  602. text-transform:uppercase;
  603. z-index:999999999999999;
  604. -webkit-transition: all 0.6s ease;
  605. -moz-transition: all 0.6s ease;
  606. -o-transition: all 0.6s ease;
  607. color:{color:Main Links Hover};
  608. }
  609.  
  610. .next{
  611. position: fixed;
  612. margin-top: 370px;
  613. margin-left: 230px;
  614. font-size: 20px;
  615. font-family:consolas;
  616. text-transform:uppercase;
  617. z-index:999999999999999;
  618. -webkit-transition: all 0.6s ease;
  619. -moz-transition: all 0.6s ease;
  620. -o-transition: all 0.6s ease;
  621. color:{color:Main Links Hover};
  622. }
  623.  
  624. .next:hover{
  625. position: fixed;
  626. margin-left: 235px;
  627. font-family:consolas;
  628. text-transform:uppercase;
  629. z-index:999999999999999;
  630. -webkit-transition: all 0.6s ease;
  631. -moz-transition: all 0.6s ease;
  632. -o-transition: all 0.6s ease;
  633. color:{color:Main Links Hover};
  634. }
  635.  
  636. iframe#tumblr_controls {
  637. top: 0% !important;
  638. right:0% !important;
  639. position: fixed !important;}
  640.  
  641.  
  642. {CustomCSS}
  643.  
  644. </style>
  645.  
  646. {Block:IfInfiniteScrolling}
  647. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  648. {/Block:IfInfiniteScrolling}
  649.  
  650. </head>
  651.  
  652. <body>
  653. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  654. <script src="http://static.tumblr.com/ikeq9mi/DfYl6o46t/scrolltotop.min.js"></script>
  655.  
  656. <div class="topp">
  657. <a href="javascript:;" id="scrollToTop"><font size="6">▲</font></a>
  658. </div>
  659.  
  660.  
  661.  
  662. <div class="bar">
  663.  
  664. <div class="b1a4">{title}</div>
  665.  
  666. <img src="{image:sidebar}" width="160" id="whee">
  667.  
  668. <div class="linkers">
  669. <div class="linkz"><a href="/">Home</a></div>
  670. <div class="linkz"><a href="/ask">Ask</a></div>
  671. <div class="linkz"><a href="/archive">History</a></div>
  672. <div class="linkz"><a href="#?w=500" rel="popup_name" class="poplight">Links</a></div>
  673. <div class="linkz"><a href="http://hikoushi.tumblr.com/">Theme</a></div>
  674. </div>
  675.  
  676. <div class="words">{description}</div>
  677.  
  678. </div>
  679.  
  680.  
  681.  
  682. <div id="popup_name" class="popup_block">
  683.  
  684. {block:IfLink1}<div class="linkzz"><a href="{text:link 1}"> {text:link 1 name}</a></div>{/block:IfLink1}
  685. {block:IfLink2}<div class="linkzz"><a href="{text:link 2}"> {text:link 2 name}</a></div>{/block:IfLink2}
  686. {block:IfLink3}<div class="linkzz"><a href="{text:link 3}"> {text:link 3 name}</a></div>{/block:IfLink3}
  687. {block:IfLink4}<div class="linkzz"><a href="{text:link 4}"> {text:link 4 name}</a></div>{/block:IfLink4}
  688. {block:IfLink5}<div class="linkzz"><a href="{text:link 5}"> {text:link 5 name}</a></div>{/block:IfLink5}
  689. {block:IfLink6}<div class="linkzz"><a href="{text:link 6}"> {text:link 6 name}</a></div>{/block:IfLink6}
  690. </div>
  691.  
  692.  
  693. {Block:IfNotInfiniteScrolling}
  694. <div class="previous">
  695. <center>
  696. {block:PreviousPage}
  697. <a href="{PreviousPage}" title="previous">◀</a>
  698. {/block:PreviousPage}
  699. </center>
  700. </div>
  701.  
  702. <div class="next">
  703. <center>
  704. {block:NextPage}
  705. <a href="{NextPage}" title="next">▶</a>
  706. {/block:NextPage}
  707. </center>
  708. </div>
  709. {/Block:IfNotInfiniteScrolling}
  710.  
  711.  
  712.  
  713. {Block:IfInfiniteScrolling}
  714. <div class = "autopagerize_page_element" >
  715. {/Block:IfInfiniteScrolling}
  716.  
  717. {block:Posts}
  718.  
  719. <div id="lineup">
  720.  
  721.  
  722.  
  723. {block:Text}
  724.  
  725. {block:Title}
  726. <div class="story">
  727. {Title}
  728. </div>
  729. {/block:Title}
  730.  
  731. {Body}
  732.  
  733. {Block:PermalinkPage}
  734.  
  735. <br><br><br>
  736.  
  737. {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
  738. {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
  739. {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
  740.  
  741. {block:HasTags}
  742. <div class="tags">
  743. Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
  744. </div>
  745. {/block:HasTags}
  746. <br>
  747. <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation — &#160<a href="http://{name}.tumblr.com">Home</a> &#160<a href="/ask">Message</a> &#160<a href="/archive">Archive</a> &#160<a href="/random">Random</a></div><br>
  748.  
  749. {block:PostNotes}
  750.  
  751. {PostNotes}
  752. {/block:PostNotes}
  753.  
  754. {/Block:PermalinkPage}
  755.  
  756. {/block:Text}
  757.  
  758.  
  759.  
  760. {block:Photo}
  761.  
  762. {LinkOpenTag}
  763. {block:if500pxposts}
  764. <img src="{PhotoURL-HighRes}" width="500px" alt="{PhotoAlt}">{/block:if500pxposts}
  765. {block:if400pxposts}
  766. <img src="{PhotoURL-HighRes}" width="400px" alt="{PhotoAlt}">{/block:if400pxposts}
  767. {block:if250pxposts}
  768. <img src="{PhotoURL-HighRes}" width="250px" alt="{PhotoAlt}">{/block:if250pxposts}
  769.  
  770. {LinkCloseTag}
  771.  
  772. {Block:PermalinkPage}
  773. {block:Caption}
  774. {Caption}
  775. {/block:Caption}
  776. <br><br><br>
  777.  
  778. {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
  779. {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
  780. {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
  781.  
  782. {block:HasTags}
  783. <div class="tags">
  784. Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
  785. </div>
  786. {/block:HasTags}
  787. <br>
  788. <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation — &#160<a href="http://{name}.tumblr.com">Home</a> &#160<a href="/ask">Message</a> &#160<a href="/archive">Archive</a> &#160<a href="/random">Random</a></div><br>
  789.  
  790. {block:PostNotes}
  791.  
  792. {PostNotes}
  793. {/block:PostNotes}
  794.  
  795.  
  796. {/Block:PermalinkPage}
  797.  
  798. {/block:Photo}
  799.  
  800.  
  801.  
  802. {block:Photoset}
  803. {block:if500pxposts}{Photoset-500}{/block:if500pxposts}
  804. {block:if400pxposts}{Photoset-400}{/block:if400pxposts}
  805. {block:if250pxposts}{Photoset-250}{/block:if250pxposts}
  806.  
  807.  
  808. {Block:PermalinkPage}
  809. {block:Caption}
  810. {Caption}
  811. {/block:Caption}
  812.  
  813. <br><br><br>
  814.  
  815. {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
  816. {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
  817. {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
  818.  
  819. {block:HasTags}
  820. <div class="tags">
  821. Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
  822. </div>
  823. {/block:HasTags}
  824. <br>
  825. <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation — &#160<a href="http://{name}.tumblr.com">Home</a> &#160<a href="/ask">Message</a> &#160<a href="/archive">Archive</a> &#160<a href="/random">Random</a></div><br>
  826.  
  827. {block:PostNotes}
  828.  
  829. {PostNotes}
  830. {/block:PostNotes}
  831.  
  832. {/Block:PermalinkPage}
  833.  
  834. {/block:Photoset}
  835.  
  836.  
  837.  
  838. {block:Quote}
  839.  
  840. <div class="quote">
  841. <div style="font-size: 30px; display: inline-block; line-height: 0px; margin-bottom: -3px; margin-right: 3px;">❝</div>{Quote}
  842. </div>
  843.  
  844. {block:Source}
  845. <div style="text-align:right">—{Source}</div>
  846. {/block:Source}
  847.  
  848. {Block:PermalinkPage}
  849. <br><br><br>
  850.  
  851. {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
  852. {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
  853. {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
  854.  
  855. {block:HasTags}
  856. <div class="tags">
  857. Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
  858. </div>
  859. {/block:HasTags}
  860. <br>
  861. <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation — &#160<a href="http://{name}.tumblr.com">Home</a> &#160<a href="/ask">Message</a> &#160<a href="/archive">Archive</a> &#160<a href="/random">Random</a></div><br>
  862.  
  863. {block:PostNotes}
  864.  
  865. {PostNotes}
  866. {/block:PostNotes}
  867.  
  868. {/Block:PermalinkPage}
  869.  
  870. {/block:Quote}
  871.  
  872.  
  873.  
  874. {block:Link}
  875.  
  876. <a href="{URL}" {Target}>
  877.  
  878. <div class="story"><div style="margin-left:0px">▶ {Name}</div></div>
  879. </a>
  880.  
  881. {block:Description}
  882. {Description}
  883. {/block:Description}
  884.  
  885. {Block:PermalinkPage}
  886. <br><br><br>
  887.  
  888. {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
  889. {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
  890. {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
  891.  
  892. {block:HasTags}
  893. <div class="tags">
  894. Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
  895. </div>
  896. {/block:HasTags}
  897. <br>
  898. <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation — &#160<a href="http://{name}.tumblr.com">Home</a> &#160<a href="/ask">Message</a> &#160<a href="/archive">Archive</a> &#160<a href="/random">Random</a></div><br>
  899.  
  900. {block:PostNotes}
  901.  
  902. {PostNotes}
  903. {/block:PostNotes}
  904.  
  905. {/Block:PermalinkPage}
  906.  
  907. {/block:Link}
  908.  
  909.  
  910.  
  911. {block:Chat}
  912.  
  913. {block:Title}
  914. <div class="story">
  915. ▶ {Title}
  916. </div>
  917. {/block:Title}
  918.  
  919. {block:Lines}
  920. {block:Label}
  921. <b><font color="{color:Quote}">{Label}</font></b>
  922. {/block:Label}
  923.  
  924. {Line}<br>
  925. {/block:Lines}
  926.  
  927. {Block:PermalinkPage}
  928. <br><br><br>
  929.  
  930. {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
  931. {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
  932. {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
  933.  
  934. {block:HasTags}
  935. <div class="tags">
  936. Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
  937. </div>
  938. {/block:HasTags}
  939. <br>
  940. <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation — &#160<a href="http://{name}.tumblr.com">Home</a> &#160<a href="/ask">Message</a> &#160<a href="/archive">Archive</a> &#160<a href="/random">Random</a></div><br>
  941.  
  942. {block:PostNotes}
  943.  
  944. {PostNotes}
  945. {/block:PostNotes}
  946.  
  947. {/Block:PermalinkPage}
  948.  
  949. {/block:Chat}
  950.  
  951.  
  952.  
  953. {block:Audio}
  954. {block:AlbumArt}
  955. <img src="{AlbumArtURL}" align="left" width="100px" height="100px" style="margin-right:5px;margin-bottom:5px; border: 2px solid #ccc; opacity:1;"/>{/block:AlbumArt}
  956. <div class="audio"> {AudioPlayerWhite}</div>
  957. <div style="border-top:1px solid {color:border}; margin-left:5px;"></div>
  958. {block:Artist}
  959. <p><b><font color="{color:Post Title}">Artist:</font></b> {Artist}
  960. {/block:Artist}
  961.  
  962. {block:Album}
  963. <br><b><font color="{color:Post Title}">Album:</font></b> {Album}
  964. {/block:Album}
  965.  
  966. {block:TrackName}
  967. <br><b><font color="{color:Post Title}">Track:</font></b> {TrackName}
  968. {/block:TrackName}
  969.  
  970. {block:PlayCount}
  971. <br><b><font color="{color:Post Title}">Plays:</font></b> {FormattedPlayCount}
  972. {/block:PlayCount}
  973.  
  974. <br clear="all">
  975.  
  976. {Block:PermalinkPage}
  977. {block:Caption}
  978. {Caption}
  979. {/block:Caption}
  980.  
  981. <br><br><br>
  982.  
  983. {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
  984. {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
  985. {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
  986.  
  987. {block:HasTags}
  988. <div class="tags">
  989. Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
  990. </div>
  991. {/block:HasTags}
  992. <br>
  993. <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation — &#160<a href="http://{name}.tumblr.com">Home</a> &#160<a href="/ask">Message</a> &#160<a href="/archive">Archive</a> &#160<a href="/random">Random</a></div><br>
  994.  
  995. {block:PostNotes}
  996.  
  997. {PostNotes}
  998. {/block:PostNotes}
  999.  
  1000. {/Block:PermalinkPage}
  1001.  
  1002.  
  1003. {/block:Audio}
  1004.  
  1005.  
  1006.  
  1007. {block:Video}
  1008. {block:if500pxposts}{Video-500}{/block:if500pxposts}
  1009. {block:if400pxposts}{Video-400}{/block:if400pxposts}
  1010. {block:if250pxposts}{Video-250}{/block:if250pxposts}
  1011.  
  1012. {Block:PermalinkPage}
  1013. {block:Caption}
  1014. {Caption}
  1015. {/block:Caption}
  1016.  
  1017. <br><br><br>
  1018.  
  1019. {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
  1020. {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
  1021. {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a><br>{/block:ContentSource}
  1022.  
  1023. {block:HasTags}
  1024. <div class="tags">
  1025. Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
  1026. </div>
  1027. {/block:HasTags}
  1028. <br>
  1029. <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation — &#160<a href="http://{name}.tumblr.com">Home</a> &#160<a href="/ask">Message</a> &#160<a href="/archive">Archive</a> &#160<a href="/random">Random</a></div><br>
  1030.  
  1031. {block:PostNotes}
  1032.  
  1033. {PostNotes}
  1034. {/block:PostNotes}
  1035.  
  1036. {/Block:PermalinkPage}
  1037.  
  1038. {/block:Video}
  1039.  
  1040.  
  1041.  
  1042. {block:Answer}
  1043.  
  1044. <img src="{AskerPortraitURL-48}" style="height: 48px; width:48px;"></img>
  1045. <div class="question">
  1046. &nbsp;<b>{Asker}</b> whispered: {Question}</div>
  1047.  
  1048. {block:if500pxposts}<div class="answer">
  1049. <div style="margin-left: 300px; margin-top:-5px;color: {color:Question Background};font-size:20px;">◤</div>
  1050. {Answer}</div>{/block:if500pxposts}
  1051.  
  1052. {block:if400pxposts}<div class="answer">
  1053. <div style="margin-left: 300px; margin-top:-5px;color: {color:Question Background};font-size:20px;">◤</div>
  1054. {Answer}</div>{/block:if400pxposts}
  1055.  
  1056. {block:if250pxposts}<div class="answer">
  1057. <div style="margin-left: 150px; margin-top:-5px;color: {color:Question Background};font-size:20px;">◤</div>
  1058. {Answer}</div>{/block:if250pxposts}
  1059.  
  1060. {Block:PermalinkPage}
  1061. <br><br><br>
  1062.  
  1063. {block:Date}Posted: {TimeAgo} on {Month} {DayOfMonth}, {Year} {block:NoteCount}with {NoteCountWithLabel}<br>{/block:NoteCount}{/block:Date}
  1064. {block:RebloggedFrom}Via: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a><br>{/block:RebloggedFrom}
  1065. {block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} <br>
  1066.  
  1067. {block:HasTags}
  1068. <div class="tags">
  1069. Tags: {block:Tags}▴<a href="{TagURL}">{Tag}</a> {/block:Tags}
  1070. </div>
  1071. {/block:HasTags}
  1072. <br>
  1073. <div style="border-top:1px solid {color:border};border-bottom:1px solid {color:border};letter-spacing:2px;text-transform:uppercase;text-align:center;font-size:8px;">Navigation — &#160<a href="http://{name}.tumblr.com">Home</a> &#160<a href="/ask">Message</a> &#160<a href="/archive">Archive</a> &#160<a href="/random">Random</a></div><br>
  1074.  
  1075. {block:PostNotes}
  1076.  
  1077. {PostNotes}
  1078. {/block:PostNotes}
  1079.  
  1080. {/Block:PermalinkPage}
  1081.  
  1082. {/block:Answer}
  1083.  
  1084. {Block:IndexPage}<div id="permalink">
  1085. <a href="{Permalink}">{NoteCountWithLabel}</a><br>
  1086. <a href="{ReblogURL}" target="_blank">Reblog</a>
  1087. <br>{block:RebloggedFrom}
  1088. <div style="width:40px; height:1px; background-color:{color:Border};margin-top:6px;"></div><br>
  1089. <a href="{ReblogParentURL}" title="via: {ReblogParentName}"><img src="{ReblogParentPortraitURL-16}"></a>
  1090. {block:ContentSource}<a href="{SourceURL}" title="source: {ReblogRootName}"><img src="{ReblogRootPortraitURL-16}"></a>{block:ContentSource}{/block:RebloggedFrom}
  1091. {/block:ContentSource}
  1092. </div>
  1093. </div>{/Block:IndexPage}
  1094.  
  1095.  
  1096. {/block:Posts}{Block:IfInfiniteScrolling}</div>{/Block:IfInfiniteScrolling}
  1097. </body>
  1098. </html>
Add Comment
Please, Sign In to add comment