Advertisement
rasperries

crim new

Dec 19th, 2013
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.76 KB | None | 0 0
  1. <!--I only ask you keep the credit intact--DO NOT MOVE IT/HIDE IT. Other than that, edit it all ye want. If you have questions, trot on over to leepace.tumblr.com -->
  2.  
  3.  
  4. <!DOCTYPE html>
  5. <head>
  6.  
  7. <!--random shit you need-->
  8. <title>{Title}</title>
  9.  
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  13.  
  14. <!--Default Variables are here, folks-->
  15. <meta name="color:Background" content="#ffffff"/>
  16. <meta name="color:Text" content="#cccccc"/>
  17. <meta name="color:link" content="#a7a7a7"/>
  18. <meta name="color:title"content="#070707"/>
  19. <meta name="color:scrollbar" content="#d5d5d5" />
  20. <meta name="color:link hover" content="#8F8F8F"/>
  21. <meta name="image:header" content=""/>
  22.  
  23.  
  24.  
  25. <meta name="text:Link 1 URL" content="" />
  26. <meta name="text:Link 1" content="" />
  27. <meta name="text:Link 2 URL" content="" />
  28. <meta name="text:Link 2" content="" />
  29. <meta name="text:Link 3 URL" content="" />
  30. <meta name="text:Link 3" content="" />
  31.  
  32. <meta name="image:audio bg" content="http://static.tumblr.com/1fe0fb2eb9179fdba195906aa5c7bc29/ygd3n2x/TPHmil7fo/tumblr_static_diagonal_striped_brick.png">
  33. <meta name="if:Hide Tags" content="1">
  34.  
  35.  
  36.  
  37.  
  38. <!-- jquery -->
  39. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  40.  
  41.  
  42. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  43.  
  44. <script>
  45.  
  46. (function($){
  47.  
  48. $(document).ready(function(){
  49.  
  50. $("a[title]").style_my_tooltips({
  51.  
  52. tip_follows_cursor:true,
  53.  
  54. tip_delay_time:30,
  55.  
  56. tip_fade_speed:300,
  57.  
  58. attribute:"title"
  59.  
  60. });
  61.  
  62. });
  63.  
  64. })(jQuery);
  65.  
  66. </script>
  67.  
  68. <!--pop up-->
  69. <script type="text/javascript"
  70. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  71. <script>
  72. $(document).ready(function() {
  73. //
  74. $('a.poplight[href^=#]').click(function() {
  75. var popID = $(this).attr('rel'); //Get Popup Name
  76. var popURL = $(this).attr('href'); //Get Popup href to define size
  77. var query= popURL.split('?');
  78. var dim= query[1].split('&');
  79. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  80. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  81. var popMargTop = ($('#' + popID).height()) / 2;
  82. var popMargLeft = ($('#' + popID).width()) / 2;
  83. //Apply Margin to Popup
  84. $('#' + popID).css({
  85. 'margin-top' : -popMargTop,
  86. 'margin-left' : -popMargLeft
  87. });
  88. $('body').append('<div id="fade"></div>');
  89. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  90. return false;
  91. });
  92. $('a.close, #fade').live('click', function() {
  93. $('#fade , .popup_block').fadeOut(function() {
  94. $('#fade, a.close').remove(); //fade them both out
  95. });
  96. return false;
  97. });
  98. });
  99. </script>
  100.  
  101.  
  102.  
  103.  
  104. <link href='http://fonts.googleapis.com/css?family=Raleway:400,700' rel='stylesheet' type='text/css'>
  105.  
  106. <!--CSS time baby. This is where you change font size, color, etc. Just be careful, my dears. -->
  107.  
  108. <style type="text/css">
  109.  
  110. #s-m-t-tooltip {max-width:300px;
  111. padding:2px;
  112. margin:10px 0px 0px 10px;
  113. padding:3px 5px;
  114. background-color:#ffffff;
  115. text-transform:uppercase;
  116. font-size:7px;
  117. letter-spacing:1px;
  118. color:#747474;
  119. border-bottom:1px solid {color:text};
  120. z-index:999 }
  121.  
  122. /*pop up*/
  123. #fade { /*--Transparent background layer--*/
  124. display: none; /*--hidden by default--*/
  125. background: #000;
  126. position: fixed;
  127. left: 0;
  128. top: 0;
  129. width: 100%; height: 100%;
  130. opacity: .70;
  131. z-index: 9999;
  132. }
  133. .popup_block{
  134. display: none; /*--hidden by default--*/
  135. background-color:#fff;
  136. padding: 20px 0;
  137. position: fixed;
  138. width:400px;
  139. margin-left:-200px;
  140. top:50%;
  141. font-family:times;
  142. left:50%;
  143. z-index: 99999;
  144. }
  145.  
  146.  
  147.  
  148. /*--Making IE6 Understand Fixed Positioning--*/
  149. *html #fade {
  150. position: absolute;
  151. }
  152. *html .popup_block {
  153. position: absolute;
  154. }
  155.  
  156.  
  157. #t {
  158. }
  159.  
  160. #tt {font-size:12px;
  161. font-weight:bold;
  162. text-align:right;
  163. padding-right:20px;
  164. padding-bottom:5px;
  165. border-bottom:1px solid black}
  166.  
  167. #ts {font-size:12px;
  168. margin-top:30px;
  169. padding-left:30px;
  170. padding-bottom:20px;
  171. text-align:left;
  172. font-style:italic;
  173. line-height:130%}
  174.  
  175. /*scrollbar*/
  176. ::-webkit-scrollbar{height: 5px;
  177. width: 5px;
  178. -webkit-border-radius: 0px;
  179. background-color:{color:background}}
  180. ::-webkit-scrollbar-thumb{background-color:{color:scrollbar};}
  181. ::-webkit-scrollbar-track{background-color:{color:background};}
  182. iframe#tumblr_controls {
  183. position: fixed !important;
  184. z-index: 9999;
  185. opacity:.5;
  186. -webkit-transition:all 0.5s ease-in-out;
  187. -moz-transition:all 0.5s ease-in-out;
  188. transition:all 0.5s ease-in-out;}
  189. iframe#tumblr_controls:hover {
  190. opacity: 0.9;
  191. -webkit-transition:all 0.5s ease-in-out;
  192. -moz-transition:all 0.5s ease-in-out;
  193. transition:all 0.5s ease-in-out;}
  194. ::selection {
  195. background:black;
  196. color:white;
  197. }
  198.  
  199. ::-moz-selection {
  200. background:black;
  201. color:white;
  202. }
  203.  
  204. ::-webkit-selection {
  205. background:black;
  206. color:white;
  207. }
  208.  
  209. iframe#tumblr_controls {
  210. position: fixed !important;
  211. z-index: 9999;
  212. opacity:.5;
  213. -webkit-transition:all 0.5s ease-in-out;
  214. -moz-transition:all 0.5s ease-in-out;
  215. transition:all 0.5s ease-in-out;}
  216. iframe#tumblr_controls:hover {
  217. opacity: 0.9;
  218. -webkit-transition:all 0.5s ease-in-out;
  219. -moz-transition:all 0.5s ease-in-out;
  220. transition:all 0.5s ease-in-out;}
  221.  
  222.  
  223. #credit {position:fixed;
  224. float:right;
  225. opacity:0.7;
  226. bottom:5px;
  227. right:5px;
  228. text-align:center;
  229. padding:5px 5px;
  230. font-size:7px;
  231. font-family:helvetica}
  232. @font-face
  233. {
  234. font-family:'Inconsolata';
  235. src:url('http://static.tumblr.com/sas2ex2/3lgmqt637/inconsolata.otf');
  236. }
  237.  
  238.  
  239. /*main structure*/
  240. blockquote {
  241. max-width:400px!important;
  242. margin-left:0px;
  243. border-left:1px solid #f2f2f2;
  244. padding-left:10px;
  245. width:95%;}
  246.  
  247. h1 {
  248. margin-left: px; font-size:22px;line-height:200%;margin-bottom:0px;font-style:;letter-spacing:-1px;text-align:left;font-family: raleway;text-transform:uppercase;}
  249.  
  250. body {
  251. background-color:#ffffff;
  252. color:#747474;
  253. font-family: helvetica;
  254. font-weight:lighter;
  255. font-size:9px;
  256. text-align:justify;
  257. line-height:13px;
  258. margin:0;
  259. line-height:120%;}
  260.  
  261.  
  262. a {
  263. color:#747474;
  264. text-decoration:none;
  265. font-size:7px;}
  266.  
  267. a:hover {
  268. color:#020101}
  269.  
  270. img{
  271. opacity:1;
  272. border:none;
  273. text-decoration:none}
  274.  
  275.  
  276. b, strong {
  277. color:#3c3c3c}
  278. i, em {
  279. color:#747474;}
  280. p {
  281. margin-top:5px;
  282. margin-bottom:5px}
  283. ol {
  284. list-style:normal;}
  285. ul {
  286. list-style:square;}
  287.  
  288. small {
  289. font-size:7px;}
  290.  
  291. big {
  292. font-size:11px;}
  293.  
  294.  
  295.  
  296.  
  297. .title{font-size:16px;
  298.  
  299. font-weight:lighter;
  300. float:left;
  301. letter-spacing:1px;
  302. text-transform:uppercase;
  303. padding:10px 20px 5px 5px;
  304. color:#555454;} .title a:hover {text-decoration:underline;}
  305.  
  306.  
  307.  
  308.  
  309.  
  310. /*header*/
  311.  
  312. #essentiel {padding:90px;width:400px; margin:auto;}
  313.  
  314. div#header{
  315. width:480px;
  316. margin-left:-57px;
  317. padding-left:18px;
  318. padding-top:10%;
  319.  
  320. padding-top:6%;
  321.  
  322.  
  323. }
  324.  
  325. div#links{
  326. margin:8px 0px 10px 0px;
  327. text-align:center;}
  328.  
  329. div#links{margin:13px 0px 13px 0px;text-align:center;}
  330.  
  331. a.nav{
  332. display:navigate;
  333. opacity:.90;
  334. font-size:6px;
  335. margin-right:0px;
  336. padding-left:0px;
  337. text-align:center;
  338. font-style:normal;
  339. font-weight:lighter;
  340. letter-spacing: 1px;
  341. text-transform: uppercase;
  342. font-family: times;
  343. padding:2px 4px 3px 5px;
  344. background-color:#fff;
  345. border: 3px double #fff;
  346.  
  347. }
  348. a.nav{color:#597578;}
  349. a.nav:hover{
  350. color:#597578;
  351. background-color:#ffffff;
  352. border: 3px double #fff;
  353. padding:2px 4px 3px 5px;}
  354.  
  355. #topimg{
  356. margin:auto;
  357. width:50px;
  358. }
  359.  
  360. .info{
  361. font-family: times;
  362. font-style:normal;
  363. border-top:double 1px #ffffff;
  364. border-bottom:double 1px #ffffff;
  365. opacity:1.0;
  366. padding-top:6px;
  367. padding-bottom:8px;
  368. text-align:center;}
  369.  
  370.  
  371. /*pagination*/
  372.  
  373. #pagination {
  374. font-size:7px;
  375. font-style:normal;
  376. text-align:center;
  377. letter-spacing:2px;
  378. font-family:times;
  379. margin:50px 0;
  380.  
  381. }
  382.  
  383. #pagination a {
  384. text-align:center;
  385. display:inline-block;
  386. margin-left:2px;
  387. line-height:15px;
  388. padding:0 4px 4px 4px;
  389. text-decoration:none;}
  390. #pagination a:hover {text-decoration:underline;}
  391.  
  392. .current_page {text-align:center;
  393. margin-left:2px;
  394. font-size:9px;
  395. line-height:15px;
  396. padding:0 2px 2px 2px;
  397. text-decoration:none;}
  398. .current_page:hover {text-decoration:underline;}
  399.  
  400. /*container*/
  401. #con {position:absolute;
  402. left:50%;
  403. margin-left:-280px;
  404. }
  405. /*posts*/
  406. #entries {position:absolute;
  407. width:400px;
  408. margin-top:100px;
  409. font-size:9px;
  410. font-family:times;
  411. font-weight:lighter;
  412. line-height:130%;
  413. letter-spacing:px;
  414. font-style:normal;
  415. color:#626262;
  416.  
  417. background:#ffffff;
  418.  
  419. }
  420.  
  421. #posts {
  422. margin-bottom:150px;
  423. overflow:hidden;
  424. width:400px;
  425. }
  426.  
  427. #posts a {font-size:7px; letter-spacing:1px; text-transform:uppercase;}
  428. /*#posts a:hover {text-decoration:underline;}*/
  429.  
  430. #posts img {max-width: 400px;
  431.  
  432. }
  433.  
  434.  
  435.  
  436.  
  437.  
  438. #titlequote{font-size:9px;
  439. color:#747474;
  440. text-align:justify; text-transform:; letter-spacing:px;
  441. padding:15px 0;
  442. border-bottom:1px solid #ededed
  443. }
  444.  
  445. #posts img, #posts li, #posts blockquote {max-width: 100%;
  446. }
  447. .caption img{max-width:100%;}
  448. .caption {width:100%;
  449. text-align:justify;
  450. display: block;
  451. margin-top: 5px;
  452. text-transform:none;
  453. font-size:9px;
  454. border-top:px solid #ededed;
  455. padding-top:5px
  456. } .caption a {font-size:8px; text-transform:uppercase;} .caption a:hover {text-decoration:underline;} .caption blockquote {padding:5px; margin-left:5px; border-left:1px solid #f2f2f2;}
  457.  
  458. #source {text-align:right;
  459. padding-top:5px;
  460. font-size:9px}
  461.  
  462.  
  463.  
  464.  
  465.  
  466. /*audio*/
  467.  
  468. .player {
  469. width:25px;
  470. height:25px;
  471. opacity:0.6;
  472. overflow:hidden;
  473. margin-left:12px;
  474. padding:5px;
  475. position:absolute;
  476. margin-top:12px;
  477. background:white;
  478. z-index:2;}
  479.  
  480. .audioinfo {
  481. text-align:right;
  482. z-index:2;
  483. position:absolute;
  484. padding-top:12px;
  485. text-transform:uppercase;
  486. width:330px;
  487. font-size:8px;
  488. margin-left:50px;
  489. }
  490.  
  491.  
  492. .playerback {height:58px;
  493. background-color:#fafafa;
  494. }
  495.  
  496.  
  497.  
  498.  
  499.  
  500. /*asks*/
  501. #question {color:#747474}
  502. .as {text-align:right;
  503. padding-top:5px;
  504. text-transform:uppercase;
  505. font-size:7px; letter-spacing:1px;}
  506. .as a {#747474}
  507. .q {
  508. padding:15px 0;
  509. border-bottom:1px solid #ededed;
  510. color:#747474;
  511. text-align:right;
  512. }
  513. .a {color:#747474;
  514. margin-top:15px;
  515. text-align:justify}
  516.  
  517.  
  518.  
  519. .chat ol {
  520. padding:0;
  521. line-height:180%;
  522. list-style:none;
  523. }
  524.  
  525. .line.odd {
  526. background-color:#FAFAFA;
  527. padding:5px;
  528. }
  529.  
  530. .line.even {
  531. background-color:#ffffff;
  532. padding:5px;
  533. }
  534.  
  535. .label {
  536. padding-right:1px;
  537. text-transform:uppercase;font-size:7px; letter-spacing:1px;
  538. color:#161616;
  539. }
  540.  
  541.  
  542.  
  543.  
  544.  
  545.  
  546.  
  547. /*permalink and notes*/
  548.  
  549. #posts:hover #permalink {opacity:1;
  550. -webkit-transition:all 0.4s ease-in-out; -moz-transition:all 0.4s ease-in-out; -o-transition:all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; transition:all 0.5s ease-in-out}
  551.  
  552. #posts:hover .tags {opacity:1;
  553. -webkit-transition:all 0.4s ease-in-out; -moz-transition:all 0.4s ease-in-out; -o-transition:all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; transition:all 0.5s ease-in-out}
  554.  
  555. #permalink {
  556. margin-left:410px!important;
  557. width:200px;
  558. position:absolute;
  559. z-index:99;
  560. text-align:left;
  561. margin-top:-21px;
  562. font-size:7px;letter-spacing:1px;
  563. text-transform:uppercase;
  564. padding:20px;
  565. opacity:0;
  566. -webkit-transition:all 0.4s ease-in-out; -moz-transition:all 0.4s ease-in-out; -o-transition:all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; transition:all 0.5s ease-in-out
  567. }
  568. #permalink a {text-decoration:none!important;font-size:6px;letter-spacing:1px;}
  569.  
  570.  
  571. .tags {
  572. font-family:times;
  573. margin-top:10px; line-height:200%;
  574. margin-bottom:10px; text-align:left;
  575. display:navigate;
  576. opacity:.90;
  577. font-size:6px;
  578. text-transform:uppercase;
  579. width:400px;
  580. opacity:0;
  581. -webkit-transition:all 0.4s ease-in-out; -moz-transition:all 0.4s ease-in-out; -o-transition:all 0.4s ease-in-out; -ms-transition: all 0.4s ease-in-out; transition:all 0.5s ease-in-out
  582. }
  583.  
  584. .tags a{
  585. font-size:6px;letter-spacing:1px; padding:1px; background:#fafafa;
  586. padding:3px 4px;margin-right:5px; text-decoration:none!important;}
  587.  
  588.  
  589. .pagenotes {
  590.  
  591.  
  592. width:450px; margin-top:100px;margin-left:-45px;
  593.  
  594. text-align:left;
  595.  
  596. }
  597. .pagenotes img {
  598. display:none!important;}
  599. .pagenotes li {
  600. text-transform:uppercase;
  601. letter-spacing:1px; font-size:7px;
  602. list-style-type:none;
  603. padding:10px;
  604. text-align:left;
  605. margin:0 0 0 -40px;
  606. line-height:130%;
  607. }
  608. .pagenotes li:hover {background-color:#F5F5F5;}
  609.  
  610. #fade {
  611. display: none;
  612. background: #525252;
  613. position: fixed;
  614. left: 0;
  615. top: 0;
  616. width: 100%;
  617. height: 100%;
  618. opacity: .80;
  619. z-index: 9999;
  620. }
  621.  
  622. .popup_block{
  623. display: none;
  624. background: #fff;
  625. padding: 35px;
  626. float: left;
  627. position: fixed;
  628. top: 50%;
  629. left: 50%;
  630. z-index: 99999;
  631. }
  632.  
  633. img.btn_close {
  634. float: right;
  635. margin: -55px -55px 0 0;
  636. }
  637.  
  638. *html #fade {
  639. position: absolute;
  640. }
  641.  
  642. *html .popup_block {
  643. position: absolute;
  644. }
  645.  
  646. #linkpopup {
  647. background-color: #fff;
  648. font-family:helvetica;
  649. font-size:9px;
  650. text-align:justify;
  651. }
  652.  
  653.  
  654. #aboutpopup {
  655. background-color: #fff;
  656. font-family:helvetica;
  657. font-size:9px;
  658. text-align:justify;
  659. }
  660.  
  661. #minepopup {
  662. background-color: #fff;
  663. font-family:helvetica;
  664. font-size:9px;
  665. text-align:justify;
  666. }
  667.  
  668. #askpopup {
  669. background-color: #fff;
  670. font-family:helvetica;
  671. font-size:9px;
  672. text-align:justify;
  673. width:220px;
  674. }
  675.  
  676.  
  677.  
  678.  
  679. </style>
  680.  
  681. <script>
  682.  
  683.  
  684.  
  685. $(document).ready(function() {
  686.  
  687. //
  688.  
  689.  
  690.  
  691. //When you click on a link with class of poplight and the href starts with a #
  692.  
  693. $('a.poplight[href^=#]').click(function() {
  694.  
  695. var popID = $(this).attr('rel'); //Get Popup Name
  696.  
  697. var popURL = $(this).attr('href'); //Get Popup href to define size
  698.  
  699.  
  700.  
  701. //Pull Query & Variables from href URL
  702.  
  703. var query= popURL.split('?');
  704.  
  705. var dim= query[1].split('&');
  706.  
  707. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  708.  
  709.  
  710.  
  711. //Fade in the Popup and add close button
  712.  
  713. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  714.  
  715.  
  716. //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
  717.  
  718. var popMargTop = ($('#' + popID).height() + 80) / 2;
  719.  
  720. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  721.  
  722.  
  723.  
  724. //Apply Margin to Popup
  725.  
  726. $('#' + popID).css({
  727.  
  728. 'margin-top' : -popMargTop,
  729.  
  730. 'margin-left' : -popMargLeft
  731.  
  732. });
  733.  
  734.  
  735.  
  736. //Fade in Background
  737.  
  738. $('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
  739.  
  740. $('#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
  741.  
  742.  
  743.  
  744. return false;
  745.  
  746. });
  747.  
  748.  
  749.  
  750. //Close Popups and Fade Layer
  751.  
  752. $('a.close, #fade').live('click', function() { //When clicking on the close or fade layer...
  753.  
  754. $('#fade , .popup_block').fadeOut(function() {
  755.  
  756. $('#fade, a.close').remove(); //fade them both out
  757.  
  758. });
  759.  
  760. return false;
  761.  
  762. });
  763.  
  764.  
  765.  
  766.  
  767.  
  768. });
  769.  
  770. </script>
  771.  
  772.  
  773.  
  774. </head>
  775.  
  776. <body>
  777.  
  778.  
  779.  
  780. <div id="credit"><a title="leepace themes" href="http://leepace.tumblr.com">LP</a></div>
  781.  
  782. <div id="con">
  783.  
  784. <div id="essentiel">
  785. <div style="margin-top:-15px;"></div>
  786. <div id="header">
  787.  
  788. <div id"topimg" style="margin-bottom:25px;">
  789. <center><a href="/"><img src="{image:header}"width="125"></a>
  790. </center></div>
  791. <center><a href="/" style="color:black" class="nav">maybe i just wanna be yours</a></center>
  792. <div id="links">
  793.  
  794. <div class="top">&nbsp;
  795. <a href="/ask" class="nav">message</a>
  796. <a href="/aboutme" class="nav">about</a>
  797. <a href="/mine" class="nav">edits</a>
  798. <a href="/links" class="nav">more</a>
  799.  
  800.  
  801.  
  802. </div>
  803.  
  804.  
  805. </div>
  806.  
  807. <div class="info">{Description}</div></div>
  808.  
  809.  
  810.  
  811. <div id="entries">
  812.  
  813. {block:Posts}
  814. <div id="posts">
  815.  
  816. {block:PermalinkPage}
  817. {block:Date}
  818. <div id="permalink">
  819. <a href="{Permalink}">{Month} {DayOfMonth}{DayOfMonthSuffix}</a>
  820. {block:NoteCount}<br><a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}
  821. {block:ContentSource}
  822. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  823. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  824. {/block:SourceLogo}
  825. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  826. {/block:ContentSource}·
  827. {block:RebloggedFrom}<br><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource}&nbsp;·&nbsp;<a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  828.  
  829. </div>
  830. {/block:Date}
  831. {/block:PermalinkPage}
  832.  
  833. {block:IndexPage}
  834. {block:Date}
  835.  
  836.  
  837. <div id="permalink">
  838. <a href="{Permalink}">{Month} {DayOfMonth}{DayOfMonthSuffix}</a>
  839. {block:NoteCount}<br><a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}
  840. {block:ContentSource}
  841. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  842. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  843. {/block:SourceLogo}
  844. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  845. {/block:ContentSource}
  846. {block:RebloggedFrom}<br><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a>{block:ContentSource}&nbsp;·&nbsp;<a href="{ReblogRootURL}" title="{ReblogRootName}">source</a>{/block:ContentSource}{/block:RebloggedFrom}
  847.  
  848. </div>
  849. {/block:Date}
  850. {/block:Date}
  851.  
  852. {/block:IndexPage}
  853.  
  854. {block:Quote}
  855.  
  856.  
  857. <div id="titlequote">{Quote}</div>
  858. {block:Source}<div id="source">{Source}</div>{/block:Source}
  859. {/block:Quote}
  860.  
  861.  
  862.  
  863. {block:Text}
  864.  
  865. {block:Title}
  866. <div id="titlee">{Title}</div>{/block:Title}
  867. {Body}
  868.  
  869.  
  870. {/block:Text}
  871.  
  872. {block:Link}
  873.  
  874. <h1><a href="{URL}">⟩ {Name}</a></h1>{block:Description}{Description}{/block:Description}
  875.  
  876. {/block:Link}
  877.  
  878. {block:Chat}
  879. {block:Title}
  880. <h1>{Title}</h1>
  881. {/block:Title}
  882. <div class="chat">
  883. <ol>{block:Lines}
  884. <li class="line {Alt}">
  885. {block:Label}
  886. <span class="label">
  887. {Label}</span>
  888. {/block:Label}{Line}</li>
  889. {/block:Lines}
  890. </ol></div>
  891. {/block:Chat}
  892.  
  893. {block:Photo}
  894.  
  895. <center>{LinkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{LinkCloseTag}</center>{block:Caption}<span class="caption">{Caption}</span>{/block:Caption}
  896.  
  897.  
  898.  
  899. {/block:Photo}
  900.  
  901. {block:Photoset}
  902.  
  903. <center>{Photoset-400}</center>{block:Caption}<span class="caption">{Caption}</span>{/block:Caption}
  904.  
  905.  
  906.  
  907.  
  908. {/block:Photoset}
  909.  
  910. {block:Video}
  911.  
  912.  
  913. {Video-400}
  914. {/block:Video}
  915.  
  916.  
  917.  
  918. {block:Audio}
  919.  
  920. <div class="audioinfo">
  921. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  922. </div>
  923. <div class="playerback">
  924. <div class="player">{AudioPlayerWhite}</div>
  925. </div>
  926. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  927. {/block:Audio}
  928.  
  929.  
  930.  
  931.  
  932.  
  933. {block:Answer}
  934. <div id="question">
  935. <div class="q">
  936. {Question}</div>
  937. <div class="as">{Asker}</div>
  938. <div class="a">{Answer}</div>
  939. </div>
  940.  
  941. {/block:Answer}
  942.  
  943.  
  944.  
  945.  
  946. {block:HasTags}<div class="tags">File Under:&nbsp;{block:Tags}<a href="{TagUrl}">{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  947. </div>
  948. <div class="pagenotes">
  949. <ol class="notes">
  950. {block:PostNotes}{PostNotes}{/block:PostNotes}
  951. {block:PermalinkPage}
  952. {/block:PermalinkPage}
  953.  
  954. </ol>
  955.  
  956.  
  957. </div>
  958. {/block:Posts}
  959.  
  960.  
  961. <div id="pagination">
  962.  
  963. {block:Pagination}
  964. {block:PreviousPage}
  965. <a class="jump_page" href="{PreviousPage}">BACK</a>
  966. {/block:PreviousPage}
  967.  
  968. {block:JumpPagination length="5"}
  969. {block:CurrentPage}
  970. <span class="current_page">{PageNumber}</span>
  971. {/block:CurrentPage}
  972.  
  973. {block:JumpPage}
  974. <a class="jump_page" href="{URL}">{PageNumber}</a>
  975. {/block:JumpPage}
  976. {/block:JumpPagination}
  977.  
  978. {block:NextPage}
  979. <a class="jump_page" href="{NextPage}">FORTH</a>
  980. {/block:NextPage}
  981. {/block:Pagination}</div>
  982. </div>
  983.  
  984. </div>
  985. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement