namunamoo

Paper (Pop-up)

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