Advertisement
noblesammy

Elysium

Oct 2nd, 2014
661
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.56 KB | None | 0 0
  1. <html>
  2. <title>{Title}</title>
  3.  
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  7.  
  8. <script type="text/javascript"
  9. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  10.  
  11. <meta name="image:Header" content="" />
  12. <meta name="image:Background" content="" />
  13.  
  14. <meta name="color:Background" content="#fffffF" />
  15. <meta name="color:Header" content="#ffffff" />
  16. <meta name="color:text" content="#000000" />
  17. <meta name="color:Link" content="#999999" />
  18. <meta name="color:Link BG" content="#fff" />
  19. <meta name="color:header" content="#FFFFFF" />
  20. <meta name="color:Borders" content="#DDDDDD" />
  21. <meta name="color:Post BG" content="#DDDDDD" />
  22. <meta name="color:Description" content="#333333" />
  23. <meta name="color:caption" content="#f8f8f8" />
  24. <meta name="color:chat 1" content="#f8f8f8" />
  25. <meta name="color:chat 2" content="#cfcfcf" />
  26.  
  27. <meta name="font:Text" content="" />
  28. <meta name="text:about" content=""/>
  29.  
  30. <meta name="text:Link 1" content="Link 1" />
  31. <meta name="text:Link 1 url" content="" />
  32. <meta name="text:Link 2" content="Link 2" />
  33. <meta name="text:Link 2 url" content="" />
  34. <meta name="text:Link 3" content="Link 3" />
  35. <meta name="text:Link 3 url" content="" />
  36. <meta name="text:Link 4" content="Link 4" />
  37. <meta name="text:Link 4 url" content="" />
  38. <meta name="text:Link 5" content="Link 5" />
  39. <meta name="text:Link 5 url" content="" />
  40.  
  41. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  42.  
  43. <script language="javascript">
  44. $(document).ready(function() {
  45. $('a#clickbutton').click(function() {
  46. $('.t',this).toggle();
  47. });
  48.  
  49. $("#kafka").css({"left": "-120%" })
  50. $("#clickbutton").toggle(
  51. function () {
  52. $("#kafka").animate({"left": "0%" }, "slow");
  53. },
  54. function () {
  55. $("#kafka").animate({"left": "-120%"}, "slow");
  56. });
  57. });
  58. </script>
  59.  
  60. <script type="text/javascript">
  61. var scrolltotop={
  62. setting: {startline:100, scrollto: 0, scrollduration:1000, fadeduration:[500, 100]},
  63. controlHTML: '<a style="font-size:14px; href="#" title="to top">&Delta;</a>',
  64. controlattrs: {offsetx:18, offsety:6},
  65. state: {isvisible:false, shouldvisible:false},
  66.  
  67. scrollup:function(){
  68. if (!this.cssfixedsupport)
  69. this.$control.css({opacity:0})
  70. var dest=isNaN(this.setting.scrollto)? this.setting.scrollto : parseInt(this.setting.scrollto)
  71. if (typeof dest=="string" && jQuery('#'+dest).length==1)
  72. dest=jQuery('#'+dest).offset().top
  73. else
  74. dest=0
  75. this.$body.animate({scrollTop: dest}, this.setting.scrollduration);
  76. },
  77.  
  78. keepfixed:function(){
  79. var $window=jQuery(window)
  80. var controlx=$window.scrollLeft() + $window.width() - this.$control.width() - this.controlattrs.offsetx
  81. var controly=$window.scrollTop() + $window.height() - this.$control.height() - this.controlattrs.offsety
  82. this.$control.css({left:controlx+'px', top:controly+'px'})
  83. },
  84.  
  85. togglecontrol:function(){
  86. var scrolltop=jQuery(window).scrollTop()
  87. if (!this.cssfixedsupport)
  88. this.keepfixed()
  89. this.state.shouldvisible=(scrolltop>=this.setting.startline)? true : false
  90. if (this.state.shouldvisible && !this.state.isvisible){
  91. this.$control.stop().animate({opacity:1}, this.setting.fadeduration[0])
  92. this.state.isvisible=true
  93. }
  94. else if (this.state.shouldvisible==false && this.state.isvisible){
  95. this.$control.stop().animate({opacity:0}, this.setting.fadeduration[1])
  96. this.state.isvisible=false
  97. }
  98. },
  99.  
  100. init:function(){
  101. jQuery(document).ready(function($){
  102. var mainobj=scrolltotop
  103. var iebrws=document.all
  104. mainobj.cssfixedsupport=!iebrws || iebrws && document.compatMode=="CSS1Compat" && window.XMLHttpRequest
  105. mainobj.$body=(window.opera)? (document.compatMode=="CSS1Compat"? $('html') : $('body')) : $('html,body')
  106. mainobj.$control=$('<div id="topcontrol">'+mainobj.controlHTML+'</div>')
  107. .css({position:mainobj.cssfixedsupport? 'fixed' : 'absolute', bottom:mainobj.controlattrs.offsety, right:mainobj.controlattrs.offsetx, opacity:0, cursor:'pointer'})
  108. .attr({title:''})
  109. .click(function(){mainobj.scrollup(); return false})
  110. .appendTo('body')
  111. if (document.all && !window.XMLHttpRequest && mainobj.$control.text()!='')
  112. mainobj.$control.css({width:mainobj.$control.width()})
  113. mainobj.togglecontrol()
  114. $('a[href="' + mainobj.anchorkeyword +'"]').click(function(){
  115. mainobj.scrollup()
  116. return false
  117. })
  118. $(window).bind('scroll resize', function(e){
  119. mainobj.togglecontrol()
  120. })
  121. })
  122. }
  123. }
  124.  
  125. scrolltotop.init()</script>
  126.  
  127. <head>
  128. <style type="text/css">
  129.  
  130.  
  131. /* CSS */
  132.  
  133. body {
  134. background:{color:Background};
  135. background-image:url({image:Background});
  136. font-family:{font:Text};
  137. color:{color:Text};
  138. font-size:11px;
  139. line-height:140%;}
  140.  
  141. ::-webkit-scrollbar {
  142. background-color:transparent;
  143. height:5px;
  144. width:5px;}
  145.  
  146. ::-webkit-scrollbar-thumb:vertical {
  147. background:{color:Post BG};
  148. height:5px;}
  149.  
  150. ::-webkit-scrollbar-thumb:horizontal {
  151. background-color:transparent;
  152. height:5px!important;}
  153.  
  154.  
  155. #s-m-t-tooltip{
  156. padding:4px;
  157. position:absolute;
  158. margin: 20px 20px;
  159. z-index: 99999999999;
  160. text-transform:uppercase;
  161. letter-spacing:1px;
  162. font-weight:bold;
  163. font-family:consolas;
  164. font-size:10px;
  165. background: url({image:Background Image}) no-repeat right bottom;
  166. color:black;}
  167.  
  168. h1{
  169. font-size:11px;
  170. line-height: 25px;
  171. color:{color:Title};
  172. font-weight: normal;}
  173.  
  174. h2{
  175. font-size:11px;
  176. line-height: 20px;
  177. color:{color:Text};
  178. font-weight: normal;}
  179.  
  180. a:link{
  181. color:{color:link};
  182. background:transparent;
  183. padding:5px;
  184. text-decoration:none;
  185. font-weight:bold;}
  186.  
  187. blockquote{
  188. padding:0px 0px 2px 5px;
  189. margin:0px 0px 2px 10px;
  190. border-left: 1px solid {color:Caption};}
  191.  
  192. img {
  193. max-width: 100%;}
  194.  
  195.  
  196. #header {
  197. text-align:center;
  198. margin:auto;
  199. width:400px;
  200. height:115px;
  201. padding:15px;
  202. background:transparent;
  203. border:15px solid white;
  204. outline:black solid thin;
  205. overflow:hidden;}
  206.  
  207. #blogt {
  208. font-size:19px;
  209. font-weight:900;
  210. text-transform:uppercase;
  211. margin:auto;
  212. position:relative;
  213. top:-3px;
  214. line-height:16px;
  215. vertical-align:middle;
  216. width:100%;}
  217.  
  218. #blogt a{color: rgba(000,000,000,0.8);}
  219.  
  220. #geronimo{
  221. top:0px;
  222. position:relative;
  223. font-weight:normal;
  224. text-align:justify;
  225. font-style:normal;
  226. text-transform:lowercase;
  227. font-size:12px;
  228. padding-bottom:10px;
  229. border-bottom:1px solid;}
  230.  
  231. #links {
  232. margin-top:0px;width:200px;
  233. font-size:12px;
  234. line-height:170%;
  235. text-transform:uppercase;
  236. padding:5px;
  237. }
  238.  
  239.  
  240. #links a {
  241. margin-bottom:5px;
  242. color:black;
  243. border-bottom:1px dotted #ddd;
  244. display:block;
  245. padding:5px;
  246. text-align:left;
  247. padding-left:5px;
  248. color:#222222;
  249. }
  250.  
  251. #links a:hover {
  252. text-decoration:none;
  253. padding-left:15px;
  254. font-style:italic;
  255. background:transparent;
  256. color:#000000;
  257. box-shadow: inset 200px 0 0 0 white;
  258. -webkit-transition: all .7s ease;
  259. -moz-transition: all .7s ease;
  260. -o-transition: all .7s ease;
  261. transition: all .7s ease;
  262. }
  263.  
  264. #links a:nth-of-type(odd) {background: url("http://media.tumblr.com/134a712c6bec0b1cfbab08bad8948681/tumblr_inline_n3jlwlxmDE1rx7gub.png") repeat right bottom; border:1px solid #fff; -webkit-transition: all .7s ease;
  265. -moz-transition: all .7s ease;
  266. -o-transition: all .7s ease;
  267. transition: all .7s ease;}
  268. #links a:nth-of-type(even) { background: url("http://38.media.tumblr.com/37f94811daeaa6ccba59ac1bdc913932/tumblr_myuicuBrXl1sgo88eo5_250.png") repeat right bottom; border:1px solid #fff; -webkit-transition: all .7s ease;
  269. -moz-transition: all .7s ease;
  270. -o-transition: all .7s ease;
  271. transition: all .7s ease;}
  272.  
  273.  
  274. #kafka {
  275. position: fixed;
  276. z-index:111;
  277. top:0px;
  278. height:100%;
  279. width:230px;
  280. margin-left:0px;
  281. font-size:13px;
  282. padding: 50px;
  283. background:white;
  284. color:black;
  285. left:120%;}
  286.  
  287. #desclinks{
  288. text-align:justify;
  289. margin-top:40px}
  290.  
  291.  
  292. #vonnegut{
  293. font-size:60px;
  294. position:fixed;
  295. padding:30px;
  296. z-index:11111111;}
  297. #vonnegut a:hover{
  298. text-decoration:none; color:black;}
  299. #vonnegut a{text-decoration:none; color:black;}
  300.  
  301.  
  302.  
  303. /*Posts and entries*/
  304.  
  305. #container{
  306. position:relative;
  307. width:440px;
  308. left:50%;
  309. margin-left:-220px;
  310. top:75px;
  311. }
  312.  
  313. .entry {
  314. position:relative;
  315. float:left;
  316. display: block;
  317. padding:10px;
  318. z-index:0;
  319. color:#eeeeee;
  320. text-align:left;
  321. background:{color:Post BG};
  322. {block:indexpage} margin-top:10px;
  323. margin-bottom:100px;
  324. margin-left:10px;
  325. margin-right:10px;
  326. width:400px;
  327. border:solid 1px {color:Borders};{/block:indexpage}
  328. {block:PermalinkPage}
  329. width:500px;
  330. left:50%;
  331. margin-left:-250px;
  332. color:black;
  333. background-color:transparent;
  334. {/block:PermalinkPage}
  335. -webkit-transition: all .7s ease;
  336. -moz-transition: all .7s ease;
  337. -o-transition: all .7s ease;
  338. transition: all .7s ease;
  339. }
  340.  
  341.  
  342. {/block:IndexPage}
  343.  
  344.  
  345.  
  346. #posts {
  347. width:400px;
  348. margin-top:15px;
  349. z-index:99;
  350. margin:auto;
  351. background:transparent;
  352. position:absolute;
  353. -webkit-animation: fadeInDown 2s;
  354. -moz-animation: fadeInDown 2s;
  355. -ms-animation: fadeInDown 2s;
  356.  
  357. }
  358.  
  359. .audioposts {
  360. margin-bottom:5px;
  361. }
  362.  
  363. .audioinfo {
  364. font-weight:bold;
  365. font-style:italic;
  366. max-height:76px;
  367. max-width:400px;
  368. line-height:20px;
  369. text-align:right;
  370. padding:19px;}
  371.  
  372. .aplayer {
  373. margin-left:0px;
  374. margin-top:0px;
  375. padding:2px;
  376. overflow:hidden;}
  377.  
  378. .player {
  379. width:32px;
  380. height:32px;
  381. background:#fff;
  382. margin-top:23px;
  383. margin-left:23px;
  384. position:absolute;
  385. opacity:0.8;
  386. -webkit-transition:all 0.3s;
  387. -moz-transition:all 0.3s;
  388. -ms-transition:all 0.3s;
  389. -o-transition:all 0.3s;
  390. transition:all 0.3s;}
  391.  
  392. /* Ask */
  393.  
  394. .question{
  395. height:auto;
  396. text-align:justify;
  397. line-height:24px;
  398. margin-bottom:4px;
  399. padding:10px;
  400. border-bottom:1px solid {color:Link};
  401. }
  402.  
  403. .question img{
  404. border:3px solid {color:Link};
  405. margin-right:4px;
  406. }
  407.  
  408. .answer{
  409. margin-top:10px;
  410. padding:5px;
  411. text-align:justify;
  412. line-height:20px;
  413. }
  414.  
  415. /* Quote */
  416.  
  417. .quote {
  418. font-size:16px;
  419. line-height:28px;
  420. font-family:Garamond;
  421. color:{color:Italic};
  422. height:auto
  423. margin-top:5px;
  424. margin-bottom:5px;
  425. padding:5px;
  426. text-align:justify;
  427. letter-spacing:1px;
  428. }
  429. .source{
  430. font-size:12px;
  431. line-height:15px;
  432. font-family:Garamond;
  433. color:{color:Italic};
  434. height:auto;
  435. margin-top:15px;
  436. margin-bottom:5px;
  437. padding:5px;
  438. text-align:right;
  439. letter-spacing:1px;}
  440. }
  441.  
  442. /* Chat */
  443.  
  444. .chat ul {
  445. display:block;
  446. list-style:none;
  447. margin-left:-50px;
  448. }
  449.  
  450. /* chat lines style */
  451. .chat li {
  452. padding:3px;
  453. display:block;
  454. }
  455.  
  456. /* odd lines style */
  457. .chat .odd {
  458. background:transparent;
  459. }
  460.  
  461. /* even lines style */
  462. .chat .even {
  463. background:transparent;
  464. }
  465.  
  466.  
  467. /* Pagination */
  468.  
  469. #pagi {
  470. margin:auto;
  471. padding:15px;
  472. width:200px;
  473. margin-bottom:30px;
  474. text-align:center;
  475. font-family:arial;
  476. font-size:12px;
  477. letter-spacing:4px;
  478. text-transform:uppercase;
  479. font-weight:bold;
  480. overflow:hidden;
  481. background:{color:Link};
  482. transition:0.6s ease;
  483. -o-transition:0.6s ease;
  484. -moz-transition:0.6s ease;
  485. -webkit-transition:0.6s ease;
  486. }
  487.  
  488. #pagi a{
  489. color:white;
  490. }
  491.  
  492. #pagi:hover{
  493. background:black;
  494. transition:0.6s ease;
  495. -o-transition:0.6s ease;
  496. -moz-transition:0.6s ease;
  497. -webkit-transition:0.6s ease;
  498. }
  499.  
  500.  
  501. .caption_hold {
  502. position:relative;
  503. opacity:0;
  504. z-index:9999;
  505. color:black;
  506. background:transparent;
  507. text-align:right;
  508. height:1px;
  509. top:10px;
  510. left:-320px;
  511. width:300px;
  512. border-top:2px solid {color:link};
  513. transition:0.6s ease;
  514. -o-transition:0.6s ease;
  515. -moz-transition:0.6s ease;
  516. -webkit-transition:0.6s ease;
  517. }
  518.  
  519. .entry:hover .caption_hold {opacity:1;
  520. transition:0.6s ease;
  521. -o-transition:0.6s ease;
  522. -moz-transition:0.6s ease;
  523. -webkit-transition:0.6s ease;
  524. }
  525.  
  526. .entry:hover .perma_hold {opacity:1;
  527. transition:0.6s ease;
  528. -o-transition:0.6s ease;
  529. -moz-transition:0.6s ease;
  530. -webkit-transition:0.6s ease;
  531. }
  532.  
  533. .perma_hold {
  534. position:relative;
  535. opacity:0;
  536. z-index:9999;
  537. color:white;
  538. background:transparent;
  539. width: auto;
  540. height:1px;
  541. top:10px;
  542. right:-420px;
  543. transition:0.6s ease;
  544. -o-transition:0.6s ease;
  545. -moz-transition:0.6s ease;
  546. -webkit-transition:0.6s ease;
  547. }
  548.  
  549. .perma_hold a{
  550. letter-spacing:1px;
  551. background:{color:link};
  552. border-radius:10px;
  553. color:white;}
  554.  
  555. .perma {
  556. position:relative;
  557. font-size:8px;
  558. font-weight:normal;
  559. text-align:left;
  560. text-transform:uppercase;}
  561.  
  562. .tags a{
  563. margin:0px;
  564. font-weight:normal;
  565. margin-top:10px;
  566. text-transform:none;
  567. font-size:10px;}
  568.  
  569. .caption {
  570. width:400px;
  571. padding:15px;
  572. margin:30px;
  573. border:1px solid #eeeeee;
  574. background:#ffffff;
  575. text-align:left;
  576. height:auto;
  577. color:black;
  578. }
  579.  
  580. .pagenotes {
  581.  
  582. width:400px;
  583. padding:15px;
  584. color:black;
  585. border:1px solid #eeeeee;
  586. background:#ffffff;
  587. text-align:left;
  588. max-height:200px;
  589. margin:30px}
  590.  
  591. .pin {max-height:200px;
  592. overflow-y:auto;}
  593.  
  594. ol.notes {
  595. padding: 0px;
  596. margin: 0px;
  597. list-style-type: none;
  598. }
  599. ol.notes li.note {
  600. padding: 5px 0;
  601. margin:0 10px;
  602. }
  603.  
  604. ol.notes li.note a {font-family:consolas;
  605. font-size:8px;
  606. letter-spacing:1px;
  607. text-transform:uppercase;}
  608.  
  609. ol.notes li.note img.avatar {
  610. display:none;
  611. }
  612.  
  613. ol.notes li.note span.action {
  614. font-weight: normal;
  615. }
  616.  
  617. ol.notes li.note .answer_content {
  618. font-weight:normal;
  619. }
  620.  
  621. ol.notes li.note blockquote {
  622. border-color: #000000;
  623. padding: 4px 10px;
  624. margin: 10px 0px 0px 25px;
  625. }
  626.  
  627. ol.notes li.note blockquote a {
  628. text-decoration: none;
  629. }
  630.  
  631. #hello {
  632. left:-60px;
  633. bottom:2px;
  634. font-size:9px;
  635. padding:5px;
  636. color:black;
  637. font-family:inconsolata;
  638. font-weight:bold;
  639. z-index:9999999999999999999999999999999999999;
  640. text-transform:uppercase;
  641. border:1px solid transparent;
  642. position:fixed;
  643. -webkit-transition: all 0.5s ease-out;
  644. -moz-transition: all 0.5s ease-out;
  645. transition: all 0.5s ease-out;}
  646.  
  647. #hello:hover {
  648. left:6px;
  649. -webkit-transition: all 0.5s ease-out;
  650. -moz-transition: all 0.5s ease-out;
  651. transition: all 0.5s ease-out;
  652. }
  653. #hello:hover a{
  654. color:black;}
  655. #hello a{
  656. color:black;}
  657.  
  658. {CustomCSS}
  659. </style>
  660.  
  661.  
  662. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  663. <script src="jquery.style-my-tooltips.js"></script>
  664. <script src="http://static.tumblr.com/rzl30kg/eAxm7a751/jquery.style-my-tooltips.js"></script>
  665. <script>
  666. (function($){
  667. $(document).ready(function(){
  668. $("[title]").style_my_tooltips({
  669. tip_follows_cursor:true,
  670. tip_delay_time:200,
  671. tip_fade_speed:300
  672. }
  673. );
  674. });
  675. })(jQuery);
  676. </script>
  677.  
  678. </head>
  679.  
  680.  
  681. <!-- HTML -->
  682.  
  683. <body>
  684.  
  685. <div id="vonnegut">
  686.  
  687. <a id="clickbutton" class="t" style="cursor:pointer;"><span class="t">
  688. ≡</span>
  689.  
  690. <span class="t" style="display:none;"><span style="font-size:40px;">✕</span>
  691. </span></a>
  692.  
  693. </div>
  694. </br></br></br></br>
  695. <div id="header">
  696.  
  697. <div id="geronimo">{Description}</div>
  698. </br>
  699. <div id="blogt">
  700. <a href="/"><b>{Title}</b></a></div>
  701. </div>
  702.  
  703. <div id="kafka"><div id="desclinks">{text:about}
  704.  
  705.  
  706. <div id="links">
  707.  
  708. <a href="{text:link 1 url}">{text:link 1}</a>
  709.  
  710. <a href="{text:link 2 url}">{text:link 2}</a>
  711.  
  712. <a href="{text:link 3 url}">{text:link 3}</a>
  713.  
  714. <a href="{text:link 4 url}">{text:link 4}</a>
  715.  
  716. <a href="{text:link 5 url}">{text:link 5}</a>
  717.  
  718.  
  719. </div>
  720. </div>
  721.  
  722. </div>
  723.  
  724. <div id="container"><div class="posts">{block:Posts}<div class="entry">
  725.  
  726.  
  727. <div class="content">
  728.  
  729. {block:IndexPage}
  730. <div class="caption_hold">
  731. {caption}
  732. </div>
  733. {/block:IndexPage}
  734.  
  735. {block:IndexPage}
  736. <div class="perma_hold">
  737. <div class="perma">
  738. <a href="{Permalink}" title="{NoteCountWithLabel}">{TimeAgo}</a></br></br>{block:HasTags}{block:Tags} <a href="{TagURL}"># {Tag}</a></br></br> {/block:Tags}{/block:HasTags}
  739. </div>
  740. </div>
  741. {/block:IndexPage}
  742.  
  743.  
  744. <!-- Text -->
  745. {block:Text}
  746. {block:Title}
  747. <a href="{Permalink}">
  748. <h1>{Title}</h1></a>
  749. {/block:Title}
  750. {Body}
  751. {/block:Text}
  752.  
  753.  
  754. <!-- Photo -->
  755. {block:Photo}
  756. {block:IndexPage}
  757. <img src="{PhotoURL-400}"
  758. </a>{/block:IndexPage}
  759. {block:PermalinkPage}
  760. <a href="{permalink}">
  761. <img src="{PhotoURL-500}"
  762. width="500"/></a>{/block:PermalinkPage}
  763. {/block:Photo}
  764.  
  765.  
  766. <!-- Photoset -->
  767. {block:Photoset}
  768. {block:IndexPage}
  769. {Photoset-400}
  770. {/block:IndexPage}
  771. {block:PermalinkPage}
  772. {Photoset-500}
  773. {/block:PermalinkPage}
  774. {/block:Photoset}
  775.  
  776.  
  777. <!-- Quote -->
  778. {block:Quote}
  779. <div class="quote">
  780. " {Quote} "
  781. {block:Source}
  782. <div class="source">-{Source}
  783. </div>{/block:Source}</div>
  784. {/block:Quote}
  785.  
  786. <!-- Link -->
  787. {block:Link}
  788. <center>
  789. <a href="{URL}"
  790. class="linkpost"
  791. target="_blank">
  792. <h1>{Name} &raquo; <h1></a>
  793. </center>
  794. {block:Description}
  795. <h2>{Description}</h2>
  796. {/block:Description}
  797. {/block:Link}
  798.  
  799. <!-- Chat -->
  800. {block:Chat}
  801. <div class="chat">
  802. <ul>
  803. {block:Lines}
  804. <li class="{Alt}">
  805. {block:Label}<b>{Label}</b>{/block:Label}
  806. {Line}
  807. </li>
  808. {/block:Lines}
  809. </ul>
  810. </div>
  811. {/block:Chat}
  812.  
  813. <!-- Audio -->
  814. {block:Audio}
  815. <div class="audioposts"><div class="player"><div class="aplayer">{AudioPlayer}</div></div><div class="audioinfo">{block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}</div></div>
  816. {/block:Audio}
  817.  
  818.  
  819. <!-- Video -->
  820. {block:Video}
  821. {block:IndexPage}
  822. {Video-400}
  823. {/block:IndexPage}
  824. {block:PermalinkPage}
  825. {Video-500}
  826. {/block:PermalinkPage}
  827. {/block:Video}
  828.  
  829.  
  830. <!-- Ask -->
  831. {block:Answer}
  832. <div class="question">{Asker} <b>> {Question}</b>
  833. <img src="{AskerPortraitURL-48}"
  834. align="left">
  835. </div>
  836. <div class="answer">
  837. {Answer}</div>
  838. {/block:Answer}
  839.  
  840. <!-- Permalink page -->
  841. {block:PermalinkPage}
  842.  
  843. {block:Caption}
  844. <div class="caption">{caption}</div>
  845. {/block:Caption}
  846.  
  847. <div class="caption">{block:HasTags}<div class="tags">{block:Tags} <a href="{TagURL}"># {Tag}</a> {/block:Tags}</div>{/block:HasTags}</div>
  848.  
  849. {block:PostNotes}
  850. <div class="pagenotes"><div class="pin">
  851. {PostNotes}</div></div>
  852. {/block:PostNotes}
  853. {/block:PermalinkPage}
  854.  
  855. <!-- Other -->
  856. {block:ContentSource}
  857. <!-- {SourceURL}
  858. {block:SourceLogo}
  859. <img src="{BlackLogoURL}"
  860. width="{LogoWidth}"
  861. height="{LogoHeight}"
  862. alt="{SourceTitle}" />
  863. {/block:SourceLogo}
  864. {block:NoSourceLogo}
  865. {SourceLink}
  866. {/block:NoSourceLogo} -->
  867. {/block:ContentSource}
  868.  
  869. </div></div>
  870.  
  871. {/block:Posts}
  872. </div>
  873.  
  874. <div id="hello"><a href="http://nebuhla.tumblr.com/">nebuhla&nbsp;&nbsp;&nbsp; &nabla;</a></div>
  875.  
  876. {block:indexpage}<div id="pagi">{block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">previous - </a>{/block:PreviousPage}{block:NextPage}<a href="{NextPage}">next</a>{/block:NextPage}{/block:Pagination}</div>{/block:indexpage}</div>
  877.  
  878. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement