Advertisement
lojsan7

mio090916

Sep 7th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 21.22 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  5. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  6.  
  7. <!--------------------------------------------
  8. SCOTTISBAE THEMES # 133
  9. THEME BY: http://scottisbae.tumblr.com/ (PREV BRITISHROBERT)
  10.  
  11. RULES, IMPORTANT: DON'T REMOVE THE CREDIT // DON'T CLAIM AS YOUR OWN // DON'T USE AS A BASE
  12.  
  13. --------------------------------------------->
  14.  
  15. <title>{Title}</title>
  16. <link rel="shortcut icon" href="{Favicon}">
  17. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  18. <meta name="description" content="" />
  19. <meta http-equiv="x-dns-prefetch-control" content="off"/>
  20.  
  21.  
  22. <meta name="color:Background" content="#FFFFFF">
  23. <meta name="color:Link" content="#8C8C8C">
  24. <meta name="color:Link Hover" content="#CECECE">
  25. <meta name="color:Text" content="#2E2E2E">
  26. <meta name="color:Scrollbar" content="#000000">
  27. <meta name="color:Blockquote" content="#F4F4F4">
  28. <meta name="color:Info Border" content="#F8F7F7">
  29. <meta name="color:Image Border" content="#F0F0F0">
  30. <meta name="color:Questions Border" content="#F8F7F7">
  31. <meta name="color:Sidebar Border" content="#F4F4F4">
  32.  
  33. <meta name="text:Body Font Size" content="11px"/>
  34. <meta name="text:Body Font" content="Arial"/>
  35.  
  36. <meta name="image:Sidebar" content=""/>
  37. <meta name="image:Background" content="" />
  38.  
  39. <meta name="if:Show 400px posts" content="0"/>
  40. <meta name="if:Hover Tags" content="0"/>
  41. <meta name="if:Show Link1" content="0" />
  42. <meta name="if:Show Link2" content="0" />
  43. <meta name="if:Show Link3" content="0" />
  44. <meta name="if:Show Link4" content="0" />
  45.  
  46. <meta name="text:link1" content="">
  47. <meta name="text:link1 url" content="/">
  48. <meta name="text:link2" content="">
  49. <meta name="text:link2 url" content="/">
  50. <meta name="text:link3" content="">
  51. <meta name="text:link3 url" content="/">
  52. <meta name="text:link4" content="">
  53. <meta name="text:link4 url" content="/">
  54.  
  55.  
  56.  
  57. <link href='http://fonts.googleapis.com/css?family=Maven+Pro:400,500,700,900' rel='stylesheet' type='text/css'>
  58.  
  59. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  60. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  61. <script>
  62. (function($){
  63. $(document).ready(function(){
  64. $("a[title]").style_my_tooltips({
  65. tip_follows_cursor:true,
  66. tip_delay_time:90,
  67. tip_fade_speed:600,
  68. attribute:"title"
  69. });
  70. });
  71. })(jQuery);
  72. </script>
  73.  
  74. <script type="text/javascript"
  75. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  76. <script>
  77. $(document).ready(function() {
  78. //
  79. $('a.poplight[href^=#]').click(function() {
  80. var popID = $(this).attr('rel'); //Get Popup Name
  81. var popURL = $(this).attr('href'); //Get Popup href to define size
  82. var query= popURL.split('?');
  83. var dim= query[1].split('&');
  84. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  85. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://s5.postimage.org/ypgcl25pv/close.png" class="btn_close" title="Close Window" alt="Close" style="background-color: transparent; padding: 2px; color:#555;" /></a>');
  86. var popMargTop = ($('#' + popID).height() + 80) / 2;
  87. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  88. //Apply Margin to Popup
  89. $('#' + popID).css({
  90. 'margin-top' : -popMargTop,
  91. 'margin-left' : -popMargLeft
  92. });
  93. $('body').append('<div id="fade"></div>');
  94. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  95. return false;
  96. });
  97. $('a.close, #fade').live('click', function() {
  98. $('#fade , .popup_block').fadeOut(function() {
  99. $('#fade, a.close').remove(); //fade them both out
  100. });
  101. return false;
  102. });
  103. });
  104. </script>
  105.  
  106. <style type="text/css">
  107.  
  108. #fade {
  109. display: none;
  110. background: #000;
  111. position: fixed;
  112. left: 0;
  113. top: 0;
  114. width: 100%;
  115. height: 100%;
  116. opacity: 0.8;
  117. z-index: 999;}
  118.  
  119. .popup_block{
  120. display: none;
  121. background: #fff;
  122. padding:30px;
  123. float: center;
  124. position: fixed;
  125. top: 50%;
  126. left: 50%;
  127. z-index: 99999;
  128. border: 1px solid #f3f3f3;
  129. max-height:400px;
  130. overflow:auto;}
  131.  
  132. img.btn_close {float: right; margin: -25px -25px 0 0;}
  133.  
  134. *html #fade {position: absolute;}
  135.  
  136. *html .popup_block {position: absolute;}
  137.  
  138. .title {
  139. font: oblique bold 25px arial;
  140. letter-spacing:2px;
  141. color:#333;
  142. text-align:center;
  143. margin-top:-10px;}
  144.  
  145. #nav {
  146. width:320px;
  147. background:#f7f7f7;
  148. padding:10px; }
  149.  
  150. #nav a{
  151. text-decoration:none;
  152. font: 9px arial;
  153. color:#555;
  154. letter-spacing:1px;
  155. display:inline-block;
  156. text-align:center;
  157. background:#fff;
  158. padding: 2px;
  159. width:50px;
  160. margin:5px;
  161. -webkit-transition:all 0.7s ease-in-out;
  162. -moz-transition:all 0.7s ease-in-out;
  163. -o-transition:all 0.7s ease-in-out;
  164. transition:all 0.7s ease-in-out;}
  165.  
  166. #nav a:hover{background:#111;color:#fff;}
  167.  
  168. ::-webkit-scrollbar {background-color:{color:Background}; height:4px; width:6px}
  169. ::-webkit-scrollbar-thumb:vertical {background-color:{color:Scrollbar}; height:50px}
  170. ::-webkit-scrollbar-thumb:horizontal {background-color:{color:Scrollbar}; height:8px!important}
  171.  
  172. #s-m-t-tooltip {
  173. max-width:300px;
  174. margin-top:-20px;
  175. margin-left:-20px;
  176. font-size:8px;
  177. padding:2px;
  178. font-family:calibri;
  179. letter-spacing:1px;
  180. text-align:center;
  181. text-transform:uppercase;
  182. background-color:{color:Background};
  183. color:{color:text};
  184. z-index:999999999999999999999999999999999999;
  185. }
  186.  
  187. h1 {
  188. font-weight:normal;
  189. font-size: {text:Body Font Size};
  190. font-family: {text:Body Font};
  191. text-align:center;
  192. font-style:italic;
  193. letter-spacing:0px;
  194. text-transform:none;
  195. color:{color:Text};
  196. }
  197.  
  198. h2 {
  199. font-size: {text:Body Font Size};
  200. font-family: {text:Body Font};
  201. letter-spacing:0px;
  202. margin-bottom:12px;
  203. padding-bottom:10px;
  204. font-weight:normal;
  205. text-transform:lowercase;
  206. color:{color:Text};
  207. margin: 0px;
  208. border-bottom:1px solid {color:Info Border};
  209. }
  210.  
  211. pre {
  212. {block:ifNotShow400pxposts}
  213. width:500px;
  214. {/block:ifNotShow400pxposts}
  215. {block:ifShow400pxposts}
  216. width:400px;
  217. {/block:ifShow400pxposts}
  218. text-align: left;
  219. word-wrap: break-word;
  220. color:{color:Text};
  221. }
  222.  
  223.  
  224. blockquote {
  225. border-left:1px solid {color:Blockquote};
  226. padding-left:13px;
  227. padding-top:1px;
  228. padding-bottom:1px;
  229. margin:10px;
  230. margin-top:20px;
  231. margin-bottom:10px;
  232. margin-left:20px;
  233. }
  234.  
  235. blockquote img {
  236. max-width:470px;
  237. }
  238.  
  239. body {
  240. color: {color:Text};
  241. background-color:{color:Background};
  242. background-image:url('{image:background}');
  243. background-attachment: fixed;
  244. background-repeat: repeat;
  245. word-spacing:1px;
  246. }
  247.  
  248. a {
  249. color: {color:Link};
  250. text-decoration: none;
  251. -moz-transition-duration: 0.5s;
  252. -o-transition-duration: 0.5s;
  253. -webkit-transition-duration: 0.5s;
  254. transition-duration: 0.5s;
  255. }
  256.  
  257. a:hover {
  258. color: {color:Link Hover};
  259. text-decoration:underline;
  260. -moz-transition-duration: 0.5s;
  261. -o-transition-duration: 0.5s;
  262. -webkit-transition-duration: 0.5s;
  263. transition-duration: 0.5s;
  264. }
  265.  
  266. .title {
  267. width:245px;
  268. margin-bottom:21px;
  269. font-size:8px;
  270. font-family:calibri;
  271. text-transform:uppercase;
  272. text-align:center;
  273. color:{color:text};
  274. letter-spacing:1px;
  275. }
  276.  
  277.  
  278. .sidebar {
  279. width:245px;
  280. color:{color:Text};
  281. position: fixed;
  282. margin-top:90px;
  283. margin-left:-95px;
  284. padding:13px;
  285. }
  286.  
  287. .sidebarimage {
  288. margin-left:0px;
  289. margin-bottom:15px;
  290. margin-left:0px;
  291. width:245px;
  292. }
  293.  
  294. .sidebarlinks {
  295. width:245px;
  296. padding-top:5px;
  297. padding-bottom:5px;
  298. margin-bottom:4px;
  299. font-family:arial;
  300. text-transform:lowercase;
  301. font-size:11px;
  302. text-transform:;
  303. text-align:center;
  304. font-weight:;
  305. letter-spacing:0px;
  306. border-bottom:px solid {color:Sidebar Border};
  307. }
  308.  
  309.  
  310. .sidebarlinks a {
  311. color:{color:Text};
  312. padding:3px;
  313. -moz-transition-duration: 0.5s;
  314. -o-transition-duration: 0.5s;
  315. -webkit-transition-duration: 0.5s;
  316. transition-duration: 0.5s;}
  317.  
  318. .sidebarlinks a:hover {
  319. color:{color:Link Hover};
  320. text-decoration:underline;
  321. -moz-transition-duration: 0.5s;
  322. -o-transition-duration: 0.5s;
  323. -webkit-transition-duration: 0.5s;
  324. transition-duration: 0.5s;}
  325.  
  326.  
  327. .description {
  328. text-transform:;
  329. width:245px;
  330. padding-top:0px;
  331. padding-bottom:0px;
  332. text-align:center;
  333. font-size:11px;
  334. font-family:arial;
  335. color:{color:Text};
  336. letter-spacing:0px;
  337. }
  338.  
  339. .description a:hover {
  340. color:{color:Link Hover};
  341. }
  342.  
  343. .border {
  344. border-bottom: 1px solid {color:Sidebar Border};
  345. width:100px;
  346. }
  347.  
  348. .border2 {
  349. margin-left:20px;
  350. border-bottom: 1px solid {color:Sidebar Border};
  351. width:110px;
  352. }
  353.  
  354.  
  355. .pagination {
  356. width:245px;
  357. padding-top:10px;
  358. padding-bottom:10px;
  359. text-align:center;
  360. margin-top:1px;
  361. font-family:arial;
  362. font-size:11px;
  363. letter-spacing:0px;
  364. font-weight:;
  365. text-transform:lowercase;
  366. }
  367.  
  368. .pagination a {
  369. padding:3px;
  370. color:{color:Text};
  371. }
  372.  
  373. .pagination a:hover {
  374. color:{color:Link Hover};
  375. }
  376.  
  377. .container {
  378. width:900px;
  379. margin: auto;
  380. margin-top:-8px;
  381. }
  382.  
  383.  
  384. .postscontainer {
  385. {block:ifNotShow400pxposts}
  386. max-width:500px;
  387. {/block:ifNotShow400pxposts}
  388. {block:ifShow400pxposts}
  389. max-width:400px;
  390. {/block:ifShow400pxposts}
  391. margin: auto;
  392. margin-top:-60px;
  393. margin-bottom:50px;
  394. margin-left:280px;
  395. }
  396.  
  397. .posts {
  398. {block:ifNotShow400pxposts}
  399. width:500px;
  400. {/block:ifNotShow400pxposts}
  401. {block:ifShow400pxposts}
  402. width:400px;
  403. {/block:ifShow400pxposts}
  404. font-size: {text:Body Font Size};
  405. font-family: {text:Body Font};
  406. margin-top:120px;
  407. padding:12px;
  408. text-align:justify;
  409. background-color:{color:Background};
  410. }
  411.  
  412. .posts img {
  413. {block:ifNotShow400pxposts}
  414. max-width:500px;
  415. {/block:ifNotShow400pxposts}
  416. {block:ifShow400pxposts}
  417. max-width:400px;
  418. {/block:ifShow400pxposts}
  419. }
  420.  
  421. .info {
  422. margin-top:35px;
  423. padding-bottom:2px;
  424. font-family:arial;
  425. text-transform:uppercase;
  426. letter-spacing:0px;
  427. font-size:9px;
  428. }
  429.  
  430. .info a {
  431. color:{color:Text};
  432. }
  433.  
  434. .info a:hover {
  435. text-decoration:underline;
  436. color:{color:Link Hover};
  437. }
  438.  
  439. .info2 {
  440. text-align:right;
  441. margin-top:-6px;
  442. font-family:arial;
  443. text-transform:lowercase;
  444. letter-spacing:0px;
  445. font-size:9px;
  446. }
  447.  
  448. .info2 a {
  449. color:{color:Text};
  450. }
  451.  
  452. .info2 a:hover {
  453. text-decoration:underline;
  454. color:{color:Link Hover};
  455. }
  456.  
  457. .dashicons {
  458. margin-top:5px;
  459. margin-left:510px;
  460. padding-bottom:0px;
  461. line-height:0%;
  462. font-family:arial;
  463. text-transform:lowercase;
  464. letter-spacing:0px;
  465. font-size:11px;
  466. -webkit-transition:0.7s ease; position:absolute; opacity:0;
  467. list-style: none;
  468. }
  469.  
  470. .posts:hover .dashicons {
  471. margin-top:5px;filter: alpha(opacity = 100);
  472. opacity:100;-webkit-transition: all 0.5s ease-out;
  473. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  474. }
  475.  
  476. .posts:hover .tags {
  477. {block:ifHoverTags}
  478. margin-top:0px;filter: alpha(opacity = 100);
  479. opacity:100;-webkit-transition: all 0.5s ease-out;
  480. -moz-transition: all 0.5s ease-out;transition: all 0.5s ease-out;
  481. {/block:ifHoverTags}}
  482.  
  483. .tags {{block:ifHoverTags}
  484. -webkit-transition:0.7s ease; position:absolute; opacity:0;
  485. {/block:ifHoverTags}
  486. width:500px;
  487. margin-top:0px;
  488. text-transform:none;
  489. font-family:arial;
  490. letter-spacing:0px;
  491. font-size:9px;
  492. text-align:left;
  493. padding:0px;
  494. border-top:0px solid {color:infobg};
  495. -moz-transition-duration:0.5s;
  496. -webkit-transition-duration:0.5s;
  497. -o-transition-duration:0.5s;
  498. }
  499.  
  500. .tags a {
  501. background-color:none;
  502. color:{color:Text};
  503. }
  504.  
  505. .tags a:hover {
  506. text-decoration:underline;
  507. color:{color:Link Hover};
  508. }
  509.  
  510. .postnote {
  511. {block:ifNotShow400pxposts}
  512. width:500px;
  513. {/block:ifNotShow400pxposts}
  514. {block:ifShow400pxposts}
  515. width:400px;
  516. {/block:ifShow400pxposts}
  517. text-transform:lowercase;
  518. font-size: {text:Body Font Size};
  519. font-family: {text:Body Font};
  520. text-align:left;
  521. line-height:90%;
  522. margin-top:10px;
  523. }
  524.  
  525. .postnote li {
  526. list-style-type:none;
  527. border-bottom:1px solid {color:Info Border};
  528. padding:37px 0px 3px 0px;
  529. text-align:left;
  530. margin:0px;
  531. -moz-transition-duration:0.5s;
  532. -webkit-transition-duration:0.5s;
  533. -o-transition-duration:0.5s;
  534. }
  535.  
  536. .postnote img {
  537. width:20px;
  538. padding: 3px;
  539. margin:2px 7px -3px 6px;
  540. text-align:left;
  541. margin:2px 7px -3px 6px;
  542. border:2px solid {color:Info Border};
  543. border-radius:100px;
  544. -webkit-border-radius:100px;
  545. -moz-border-radius:100px;
  546. }
  547.  
  548. .music {
  549. width:500px;
  550. {block:ifShow400pxposts}
  551. width:400px;
  552. {/block:ifShow400pxposts}
  553. padding-bottom:10px;
  554. }
  555.  
  556. .albumart {
  557. float:left;
  558. width:50px;
  559. padding: 3px;
  560. margin:2px 7px -3px 6px;
  561. border:2px solid {color:Info Border};
  562. border-radius:100px;
  563. -webkit-border-radius:100px;
  564. -moz-border-radius:100px;
  565. }
  566.  
  567. .playercontainer {
  568. text-align:left;
  569. padding-top:15px;
  570. width:450px;
  571. {block:ifShow400pxposts}
  572. width:350px;
  573. {/block:ifShow400pxposts}
  574. }
  575.  
  576. .musicinfo {
  577. padding:10px;
  578. margin-top:20px;
  579. font-size: {text:Body Font Size};
  580. font-family: {text:Body Font};
  581. color:{color:Text};
  582. }
  583.  
  584. .quote {
  585. font-size: 14px;
  586. font-family: Georgia;
  587. letter-spacing:0px;
  588. line-height:90%;
  589. text-align:justify;
  590. }
  591.  
  592. .source {
  593. font-family:calibri;
  594. font-size:10px;
  595. font-style:normal;
  596. text-align:left;
  597. line-height:17px;
  598. }
  599.  
  600. .chat ol {
  601. font-size: {text:Body Font Size};
  602. font-family: {text:Body Font};
  603. line-height:100%;
  604. padding:0px;
  605. list-style:none;
  606. }
  607.  
  608. .label {
  609. font-size: {text:Body Font Size};
  610. font-family: {text:Body Font};
  611. font-weight:bold;
  612. color:{color:Text};
  613. }
  614.  
  615. .line.odd {
  616. padding:4px;
  617. margin-bottom:2px;
  618. }
  619.  
  620. .line.even {
  621. padding:4px;
  622. margin-bottom:2px;
  623. }
  624.  
  625. .ask {
  626. {block:ifNotShow400pxposts}
  627. width:500px;
  628. {/block:ifNotShow400pxposts}
  629. {block:ifShow400pxposts}
  630. width:400px;
  631. {/block:ifShow400pxposts}
  632. font-size: {text:Body Font Size};
  633. font-family: {text:Body Font};
  634. text-transform:capitalize;
  635. text-align:left;
  636. font-weight:;
  637. padding-top:4px;
  638. padding-left:7px;
  639. padding-bottom:8px;
  640. border-bottom: 1px solid {color:Questions Border};
  641. }
  642.  
  643. .ask a {
  644. color:{color:Text};
  645. }
  646.  
  647. .question {
  648. {block:ifNotShow400pxposts}
  649. width:500px;
  650. {/block:ifNotShow400pxposts}
  651. {block:ifShow400pxposts}
  652. width:400px;
  653. {/block:ifShow400pxposts}
  654. letter-spacing:0px;
  655. margin-top:3px;
  656. padding-left:7px;
  657. padding-bottom:8px;
  658. text-align:justify;
  659. color:{color:Text};
  660. font-size: {text:Body Font Size};
  661. font-family: {text:Body Font};
  662. }
  663.  
  664. .answer {
  665. {block:ifNotShow400pxposts}
  666. width:500px;
  667. {/block:ifNotShow400pxposts}
  668. {block:ifShow400pxposts}
  669. width:400px;
  670. {/block:ifShow400pxposts}
  671. letter-spacing:0px;
  672. text-align:justify;
  673. padding-top:5px;
  674. margin-bottom:1px;
  675. font-size: {text:Body Font Size};
  676. font-family: {text:Body Font};
  677. color:{color:Text};
  678. }
  679.  
  680. .askimg {
  681. padding: 3px;
  682. margin:2px 7px -3px 6px;
  683. }
  684.  
  685. .credit {
  686. position:fixed;
  687. font-family:calibri;
  688. font-size:8px;
  689. line-height:150%;
  690. letter-spacing:0px;
  691. right:5px;
  692. bottom:20px;
  693. text-transform:uppercase;
  694. text-align:center;
  695. }
  696.  
  697. .credit a {
  698. font-style:normal;
  699. padding:3px;
  700. color:{color:text};
  701. -moz-transition-duration:0.5s;
  702. -webkit-transition-duration:0.5s;
  703. -o-transition-duration:0.5s;
  704. }
  705.  
  706. </style>
  707. </head>
  708.  
  709.  
  710. <body>
  711.  
  712. <!-- Song Player http://playlist.me --><script type="text/javascript" src="http://playlist.me/w/script.js" data-config="{'skin':'http://static.tumblr.com/zeaszfj/6I9n2rp0t/.css','volume':50,'autoplay':true,'shuffle':false,'repeat':1,'placement':'bottom','showplaylist':false,'playlist':[{'title':'ost.','url':'https://www.youtube.com/watch?v=oKD-MVfC9Ag'}]}" ></script><noscript><a href="http://playlist.me/w/i.php">SCM music player</a></noscript><!-- playlist.me script end -->
  713.  
  714. <div id="01" class="popup_block">
  715. <div class="title">navigation</div>
  716. <div id="nav">
  717. <a href="/">link</a><a href="/">link</a><a href="/">link</a><a href="/">link</a><a href="/">link</a><a href="/">link</a><a href="/">link</a><a href="/">link</a><a href="/">link</a><a href="/">link</a>
  718. </div>
  719. </div>
  720.  
  721. <div class="container">
  722. <center>
  723. <div class="sidebar">
  724. <a title="home" href="/"><img src="{image:sidebar}" class="sidebarimage"></a>
  725. </a>
  726.  
  727. <div class="sidebarlinks">
  728. <span style="font-weight:;font-size:8px;text-transform:uppercase;font-family:calibri;">
  729. {block:PreviousPage}
  730. <a href="{PreviousPage}"><big><big> ‹ </big></big></a>
  731. {/block:PreviousPage}
  732. </span>
  733. <a href="/ask">ask</a>
  734. {block:ifShowLink1}
  735. <a href="{text:link1 url}">{text:link1}</a>
  736. {/block:IfShowLink1}
  737. {block:ifShowLink2}
  738. <a href="{text:link2 url}">{text:link2}</a>
  739. {/block:IfShowLink2}
  740. {block:ifShowLink3}
  741. <a href="{text:link3 url}">{text:link3}</a>
  742. {/block:IfShowLink3}
  743. {block:ifShowLink4}
  744. <a href="#?w=340" rel="01" class="poplight">navigate</a>
  745. {/block:IfShowLink4}
  746.  
  747. <span style="font-weight:;font-size:8px;text-transform:uppercase;font-family:calibri;">
  748. {block:NextPage}
  749. <a href="{NextPage}"><big><big> › </big></big></a>
  750. {/block:NextPage}</span>
  751. </div>
  752. <div class="description">
  753. {Description}
  754. </div>
  755. </div>
  756.  
  757. <div class="postscontainer">
  758.  
  759. {block:Posts}
  760. <div class="posts">
  761.  
  762.  
  763. {block:Text}
  764. {block:Title}<h2>{Title}</h2>{/block:Title}
  765. {Body}
  766. {/block:Text}
  767.  
  768. {block:Quote}<div class="quote">&#8220;{Quote}&#8221;</div><center><div class="source">&mdash; {block:Source}{Source}{/block:Source}</div></center><br>{/block:Quote}
  769.  
  770. {/block:Quote}
  771.  
  772. {block:Link}
  773. <h2><a href="{URL}">{Name}</a></h2>
  774. {block:Description}{Description}{/block:Description}
  775. {/block:Link}
  776.  
  777. {block:Chat}{block:Title}<h2>{Title}</h2>{/block:Title}<div class="chat"><ol>{block:Lines}<li class="line {Alt}">{block:Label}<span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}
  778. </ol></div>{/block:Chat}
  779.  
  780. {block:Answer}<div class="ask"><span style="font-weight:bold;">{Asker}:</span><span style="text-transform:none;"> {Question}</span></div><div class="answer">{Answer}</div>{/block:answer}
  781.  
  782. {block:Photo}
  783. {LinkOpenTag}{block:ifNotShow400pxposts}<img src="{PhotoURL-500}" alt="{PhotoAlt}">{/block:ifNotShow400pxposts}
  784. {block:ifShow400pxposts}<img src="{PhotoURL-400}" alt="{PhotoAlt}">{/block:ifShow400pxposts}{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}
  785. {/block:Photo}
  786.  
  787. {block:Photoset}
  788. {block:ifNotShow400pxposts}{Photoset-500}{/block:ifNotShow400pxposts}{block:ifShow400pxposts}{Photoset-400}{/block:ifShow400pxposts}
  789. {block:Caption}{Caption}{/block:Caption}
  790. {/block:Photoset}
  791.  
  792. {block:Audio}<div class="music">{block:AlbumArt}<img src="{AlbumArtURL}" class="albumart">{/block:AlbumArt}
  793. <div class="playercontainer">{AudioPlayerWhite}</div>
  794. <div class="musicinfo">{block:TrackName} {TrackName} {/block:TrackName} {block:Artist}by {Artist} {/block:Artist}</div>
  795. {block:Caption}{Caption}{/block:Caption}<br></div>{/block:Audio}
  796.  
  797. {block:Video}
  798. {block:ifNotShow400pxposts}{Video-500}{/block:ifNotShow400pxposts}{block:ifShow400pxposts}{Video-400}{/block:ifShow400pxposts}
  799. {block:Caption}{Caption}{/block:Caption}
  800. {/block:Video}
  801.  
  802. {block:Date}<div class="info"><span style="text-transform:lowercase;"><a href="{Permalink}"><a href="{Permalink}">{timeago}</a>{block:NoteCount}  {NoteCount}{/block:NoteCount} </span> {block:permalinkpage}{block:RebloggedFrom} <a href="{ReblogParentURL}">{ReblogParentName}</a>{block:ContentSource} <span style="color:{color:linkinfo}"><a href="{SourceURL}"></a><a href="{ReblogRootURL}"><span style="color:{color:linkinfo}">©</a></span>{/block:ContentSource}{/block:RebloggedFrom}</span> {/block:RebloggedFrom}{/block:permalinkpage}
  803. </div>{/block:Date}
  804.  
  805. {block:HasTags}
  806. <div class="tags">
  807. {block:Tags}<a href="{TagURL}">{Tag}</a> {/block:Tags}
  808. </div>
  809. {/block:HasTags}
  810.  
  811. <div class="postnote">
  812. {block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  813.  
  814. </div>
  815. {/block:Posts}
  816.  
  817.  
  818.  
  819. <div class="credit"><div class="credit"><a href="http://scottisbae.tumblr.com/">scottisbae</a></div>
  820.  
  821. </div>
  822. </div>
  823. </div>
  824. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement