radiantvictor

base thing!

Apr 16th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 37.14 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3.  
  4. <!-- Theme 24; the dark side by ~winchestheart.
  5. // http://winchestheart.tumblr.com © //
  6.  
  7. This work is licensed under a Creative Commons Attribution-NonCommercial 3.0 Unported License.
  8. > http://creativecommons.org/licenses/by-nc/3.0/
  9.  
  10. Read the rules before using any of my themes:
  11. > http://winchestheart.tumblr.com/rules
  12.  
  13. Do not remove the credit or use as your own work.
  14. Thank you.
  15.  
  16. -->
  17.  
  18.  
  19. <html><head>
  20. <script type="text/javascript">
  21. // <![CDATA[
  22. var colour="#4a3030"; // what colour are the blobs
  23. var speed=40; // speed of animation, lower is faster
  24. var blobs=6; // how many blobs are in the jar
  25. var charc=String.fromCharCode(9679); // a blob - can be changed to charc='hello' or charc='*' for a different effect
  26.  
  27. /***************************\
  28. * Blobs in a Jar Effect *
  29. *(c)2012-13 mf2fm web-design*
  30. * http://www.mf2fm.com/rv *
  31. * DON'T EDIT BELOW THIS BOX *
  32. \***************************/
  33.  
  34. var div;
  35. var xpos=new Array();
  36. var ypos=new Array();
  37. var zpos=new Array();
  38. var dx=new Array();
  39. var dy=new Array();
  40. var dz=new Array();
  41. var blob=new Array();
  42. var swide=800;
  43. var shigh=600;
  44. var ie_version=(navigator.appVersion.indexOf("MSIE")!=-1)?parseFloat(navigator.appVersion.split("MSIE")[1]):false;
  45.  
  46. function addLoadEvent(funky) {
  47. var oldonload=window.onload;
  48. if (typeof(oldonload)!='function') window.onload=funky;
  49. else window.onload=function() {
  50. if (oldonload) oldonload();
  51. funky();
  52. }
  53. }
  54.  
  55. addLoadEvent(fill_the_jar);
  56.  
  57. function fill_the_jar() {
  58. var i, dvs;
  59. div=document.createElement('div');
  60. dvs=div.style;
  61. dvs.position='fixed';
  62. dvs.left='0px';
  63. dvs.top='0px';
  64. dvs.width='1px';
  65. dvs.height='1px';
  66. document.body.appendChild(div);
  67. set_width();
  68. for (i=0; i<blobs; i++) {
  69. add_blob(i);
  70. jamjar(i);
  71. }
  72. }
  73.  
  74. function add_blob(ref) {
  75. var dv, sy;
  76. dv=document.createElement('div');
  77. sy=dv.style;
  78. sy.position='absolute';
  79. sy.textAlign='center';
  80. if (ie_version && ie_version<10) {
  81. sy.fontSize="30px";
  82. sy.width="100px";
  83. sy.height="100px";
  84. sy.paddingTop="45px";
  85. sy.color=colour;
  86. dv.appendChild(document.createTextNode(charc));
  87. }
  88. else if (ie_version) {
  89. sy.fontSize="1px";
  90. sy.width="0px";
  91. sy.height="0px";
  92. }
  93. else {
  94. dv.appendChild(document.createTextNode(charc));
  95. sy.color='rgba(0,0,0,0)';
  96. }
  97. ypos[ref]=Math.floor(shigh*Math.random());
  98. dy[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  99. xpos[ref]=Math.floor(swide*Math.random());
  100. dx[ref]=(0.5+Math.random())*(Math.random()>.5?2:-2);
  101. zpos[ref]=Math.random()*20;
  102. dz[ref]=(0.5+Math.random())*(Math.random()>.5?.5:-.5);
  103. blob[ref]=dv;
  104. div.appendChild(blob[ref]);
  105. set_blob(ref);
  106. }
  107.  
  108. function rejig(ref, xy) {
  109. if (xy=='y') {
  110. dx[ref]=(0.5+Math.random())*sign(dx[ref]);
  111. dy[ref]=(0.5+Math.random())*-sign(dy[ref]);
  112. }
  113. else {
  114. dx[ref]=(0.5+Math.random())*-sign(dx[ref]);
  115. dy[ref]=(0.5+Math.random())*sign(dy[ref]);
  116. }
  117. }
  118.  
  119. function sign(a) {
  120. if (a<0) return (-2);
  121. else if (a>0) return (2);
  122. else return (0);
  123. }
  124.  
  125. function set_blob(ref) {
  126. var sy;
  127. sy=blob[ref].style;
  128. sy.top=ypos[ref]+'px';
  129. sy.left=xpos[ref]+'px';
  130. if (ie_version && ie_version<10) {
  131. sy.filter="glow(color="+colour+",strength="+zpos[ref]+")";
  132. sy.fontSize=30-zpos[ref]+"px";
  133. }
  134. else if (ie_version) {
  135. sy.boxShadow="0px 0px 40px "+zpos[ref]+"px "+colour;
  136. }
  137. else {
  138. sy.textShadow=colour+' 0px 0px '+zpos[ref]+'px';
  139. sy.fontSize=40+zpos[ref]+'px';
  140. }
  141. }
  142.  
  143. function jamjar(ref) {
  144. if (ypos[ref]+dy[ref]<-50 || ypos[ref]+dy[ref]>shigh) rejig(ref, 'y');
  145. ypos[ref]+=dy[ref];
  146. if (xpos[ref]+dx[ref]<-50 || xpos[ref]+dx[ref]>swide) rejig(ref, 'x');
  147. xpos[ref]+=dx[ref];
  148. if (zpos[ref]+dz[ref]<0 || zpos[ref]+dz[ref]>20) dz[ref]=-dz[ref];
  149. zpos[ref]+=dz[ref];
  150. set_blob(ref);
  151. setTimeout("jamjar("+ref+")", speed);
  152. }
  153.  
  154. window.onresize=set_width;
  155. function set_width() {
  156. var sw_min=999999;
  157. var sh_min=999999;
  158. if (document.documentElement && document.documentElement.clientWidth) {
  159. if (document.documentElement.clientWidth>0) sw_min=document.documentElement.clientWidth;
  160. if (document.documentElement.clientHeight>0) sh_min=document.documentElement.clientHeight;
  161. }
  162. if (typeof(self.innerWidth)!="undefined" && self.innerWidth) {
  163. if (self.innerWidth>0 && self.innerWidth<sw_min) sw_min=self.innerWidth;
  164. if (self.innerHeight>0 && self.innerHeight<sh_min) sh_min=self.innerHeight;
  165. }
  166. if (document.body.clientWidth) {
  167. if (document.body.clientWidth>0 && document.body.clientWidth<sw_min) sw_min=document.body.clientWidth;
  168. if (document.body.clientHeight>0 && document.body.clientHeight<sh_min) sh_min=document.body.clientHeight;
  169. }
  170. if (sw_min==999999 || sh_min==999999) {
  171. sw_min=800;
  172. sh_min=600;
  173. }
  174. swide=sw_min;
  175. shigh=sh_min;
  176. }
  177. // ]]>
  178. </script>
  179. <!--coded by wonderfullythemes for Updates Tab #4
  180. please don't remove this credit thank you -->
  181. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  182. <script>
  183. $(document).ready(function(){
  184. $(".convo").click(function(){
  185. $(".content").slideToggle('slow');
  186. });
  187. });
  188. </script>
  189. <script type="text/javascript"
  190. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  191. <script>
  192. $(document).ready(function() {
  193. //
  194. $('a.poplight[href^=#]').click(function() {
  195. var popID = $(this).attr('rel'); //Get Popup Name
  196. var popURL = $(this).attr('href'); //Get Popup href to define size
  197. var query= popURL.split('?');
  198. var dim= query[1].split('&');
  199. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  200. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://upload.wikimedia.org/wikipedia/commons/f/f8/Tooltip-CloseButton.png" class="btn_close" title="escape" alt="escape" /></a>');
  201. var popMargTop = ($('#' + popID).height() + 80) / 2;
  202. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  203. //Apply Margin to Popup
  204. $('#' + popID).css({
  205. 'margin-top' : -popMargTop,
  206. 'margin-left' : -popMargLeft
  207. });
  208. $('body').append('<div id="fade"></div>');
  209. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  210. return false;
  211. });
  212. $('a.close, #fade').live('click', function() {
  213. $('#fade , .popup_block').fadeOut(function() {
  214. $('#fade, a.close').remove(); //fade them both out
  215. });
  216. return false;
  217. });
  218. });
  219. </script>
  220. <style>*, body{ cursor:url("http://31.media.tumblr.com/tumblr_lqs4idHqTZ1qfoi4t.png"), auto; }
  221. a, a:hover { cursor:url("http://i.imgur.com/tfUdKbO.png"), auto; }
  222. </style>
  223. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  224.  
  225. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  226.  
  227. <script>
  228.  
  229. (function($){
  230.  
  231. $(document).ready(function(){
  232.  
  233. $("a[title]").style_my_tooltips({
  234.  
  235. tip_follows_cursor:true,
  236.  
  237. tip_delay_time:50,
  238.  
  239. tip_fade_speed:600,
  240.  
  241. attribute:"title"
  242.  
  243. });
  244.  
  245. });
  246.  
  247. })(jQuery);
  248.  
  249. </script>
  250. <!--basic tooltip from tutorial-baby! Enjoy-->
  251. <style>
  252.  
  253. .tooltip{
  254. display: inline;
  255. position: relative;
  256. }
  257. #s-m-t-tooltip {
  258. max-width:300px; /*how big the tooltip can be at most*/
  259. border-radius: 0px; /*change your border radius*/
  260. padding:3px 4px 3px 3px; /*padding inside tooltip*/
  261. margin:20px 7px -2px 20px; /*distance from word*/
  262. background-color:#d4d4d4; /*background color*/
  263. border-top:2px solid #4d2929; /*border info*/
  264. border-bottom:2px solid #4d2929; /*border info*/
  265. font-family:"determination"; /*tooltip font*/
  266. font-size:16px; /*tooltip font size*/
  267. letter-spacing:2px; /*tooltip letter spacing*/
  268. text-transform:uppercase; /*makes the tooltip title uppercase*/
  269. color:#4d2929; /*tooltip font color*/
  270. z-index:999999999999999999999999999999999999;
  271. -moz-transition-duration:.3s;
  272. -webkit-transition-duration:.3s;
  273. -o-transition-duration:.3s;
  274. box-shadow:-1px 1px 3px 0px #4d2929;
  275. }
  276. </style>
  277. <title>{Title}</title>
  278. <link rel="shortcut icon" href="http://38.media.tumblr.com/tumblr_lkl679dTSe1qfamg6.gif">
  279.  
  280. <meta name="image:Background" content="" />
  281. <meta name="image:Sidebar" content="" />
  282.  
  283. <meta name="color:Links" content="#727789" />
  284. <meta name="color:Main Color" content="#5d4848" />
  285. <meta name="color:Text" content="#4d2f2f" />
  286. <meta name="color:Background" content="#bebebe" />
  287. <meta name="color:Border" content="#7e5656" />
  288. <meta name="color:Scrollbar" content="#794b4b" />
  289. <meta name="color:Bold" content="#402323" />
  290. <meta name="color:Bold Shadow" content="#2e1f1f" />
  291. <meta name="color:Italic" content="#593232" />
  292. <meta name="color:Italic Shadow" content="#542424" />
  293. <meta name="color:H2" content="#593232" />
  294. <meta name="color:H2 Shadow" content="#542424" />
  295.  
  296. <meta name="text:Link 01" content="index" />
  297. <meta name="text:Link 02" content="askbox" />
  298. <meta name="text:Link 03" content="one" />
  299. <meta name="text:Link 04" content="two" />
  300. <meta name="text:Link 05" content="three" />
  301. <meta name="text:Link 01 URL" content="/" />
  302. <meta name="text:Link 02 URL" content="/ask" />
  303. <meta name="text:Link 03 URL" content="/" />
  304. <meta name="text:Link 04 URL" content="/" />
  305. <meta name="text:Link 05 URL" content="/" />
  306. <meta name="text:Background Image Position" content="left" />
  307. <meta name="text:Font Family" content="arial" />
  308. <meta name="text:Font Size" content="14.5" />
  309.  
  310. <meta name="if:Lazy Load" content="0" />
  311. <meta name="if:Custom Scrollbar" content="1">
  312. <meta name="if:Background Image Repeat" content="0" />
  313. <meta name="if:Infinite Scrolling" content="0" />
  314. <meta name="if:400px posts" content="0" />
  315. <meta name="if:540px posts" content="0" />
  316. <meta name="if:Sidebar Image" content="0" />
  317.  
  318. <!----------------------------------------------------------------------->
  319.  
  320. {block:IfLazyLoad}
  321. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/8mXm7q8vn/jquery.js"></script>
  322. <script type="text/javascript" src="http://static.tumblr.com/bmdsqsc/ogWm7q8w1/lazyload.js"></script>
  323. <script type="text/javascript" charset="utf-8">
  324. var $j = jQuery.noConflict();
  325. $j(function() {
  326. if (navigator.platform == "iPad" || navigator.platform == "iPhone") return;
  327. $j("img").lazyload({
  328. placeholder : "http://static.tumblr.com/twte3d7/RSvlio0k5/grey.gif",
  329. effect: "fadeIn",
  330. });
  331. });
  332. </script>
  333. {/block:IfLazyLoad}
  334.  
  335. <!----------------------------------------------------------------------->
  336.  
  337. {block:IfInfiniteScrolling}<script type="text/javascript" src="http://codysherman.tumblr.com/tools/infinite-scrolling/code"></script>{/block:IfInfiniteScrolling}
  338.  
  339. <!----------------------------------------------------------------------->
  340.  
  341. <script type="text/javascript">
  342. function unhide(divID) {
  343. var item = document.getElementById(divID);
  344. if (item) {
  345. item.className=(item.className=='hidden')?'unhidden':'hidden';
  346. }
  347. }
  348. </script>
  349.  
  350. <!----------------------------------------------------------------------->
  351.  
  352. <style type="text/css">
  353.  
  354. @font-face { font-family: "bangalore"; src:url('http://static.tumblr.com/rmj06l2/VP8llx2mg/bangalor.ttf'); }
  355.  
  356. @font-face { font-family: "hacked"; src: url('https://dl.dropboxusercontent.com/s/xyju89lrtr12y7q/HACKED.ttf?dl=0'); format("truetype");}
  357.  
  358. @font-face { font-family: "marmellata_jam"; src: url('https://dl.dropboxusercontent.com/s/hfa0g49tzv8gx39/Marmellata%28Jam%29_demo.ttf?dl=0'); format("truetype");}
  359.  
  360. @font-face { font-family: "olympic_branding"; src: url('https://dl.dropboxusercontent.com/s/b0yp3tjzthguism/Olympic%20Branding.ttf?dl=0'); format("truetype");}
  361.  
  362. @font-face { font-family: "silkscreen"; src: url('https://dl.dropboxusercontent.com/s/4bj79wi75v77m0r/slkscr.ttf?dl=1'); format(“truetype”);}
  363.  
  364. @font-face { font-family: "determination"; src: url('https://dl-web.dropbox.com/s/umfv28jfusg9bgt/DeterminationSansWeb.woff?dl=0'); format("truetype");}
  365.  
  366. @font-face { font-family: "allura"; src: url('http://static.tumblr.com/gdh5wux/7hFmeryj6/allura-regular.ttf'); }
  367.  
  368. @font-face { font-family: "master"; src: url('https://dl-web.dropbox.com/s/k445x5liwyqzbfp/master_of_break.ttf?dl=0'); format(“truetype”);}
  369.  
  370. @font-face { font-family: "prelude"; src: url('https://dl-web.dropbox.com/s/2v8jtmjwk7k5taa/PreludeFLF.ttf?dl=0'); format(“truetype”);}
  371.  
  372.  
  373. @font-face { font-family: "limo"; src: url('https://dl-web.dropbox.com/s/qwtxsak8i2dpu06/Champagne%20%26%20Limousines%20Bold.ttf?dl=0'); format(“truetype”);}
  374.  
  375.  
  376.  
  377. #music
  378. {position:fixed; bottom:20px; left:25px;
  379. padding-top:12px; padding-bottom:12px; text-align:center; height:10px; width:34px; overflow:hidden;
  380. border:3px solid #ddd;
  381. color:#888;
  382. -moz-border-radius: 17px 17px 17px 17px;
  383. border-radius:17px 17px 17px 17px;
  384. -webkit-transition: opacity 0.7s linear;
  385. -webkit-transition: all 0.7s ease-in-out;
  386. -moz-transition: all 0.7s ease-in-out;
  387. -o-transition: all 0.7s ease-in-out;
  388. background-color:#fafafa;
  389. z-index:999;}
  390.  
  391.  
  392. #musicplayer
  393. {padding-top:15px;}
  394.  
  395.  
  396. #music:hover
  397. {border:3px solid #bbb; padding:5px; height:45px; width:140px;}
  398.  
  399. #fade {
  400. display: none;
  401. background: #d1d1d1;
  402. position: fixed;
  403. left: 0;
  404. top: 0;
  405. width: 100%;
  406. height: 100%;
  407. opacity: .2;
  408. z-index: 9999;
  409. }
  410.  
  411. .popup_block{
  412. display: none;
  413. background: #bebebe;
  414. padding: 20px;
  415. float: left;
  416. position: fixed;
  417. top: 50%;
  418. left: 50%;
  419. z-index: 99999;
  420. height:300px;
  421. background-repeat:no-repeat;
  422. border-top:2px solid #4d2929;
  423. border-bottom:2px solid #4d2929;
  424. border-left:4px solid #4d2929;
  425. border-right:4px solid #4d2929;
  426. text-align:center;
  427. color:#3b5d5e;
  428. opacity:1;
  429. overflow-x:scroll;
  430. scroll:left;
  431. overflow-x:hidden;
  432. }
  433.  
  434. img.btn_close {
  435. float: right;
  436. margin: -55px -55px 0 0;
  437. }
  438.  
  439. *html #fade {
  440. position: absolute;
  441. }
  442.  
  443. *html .popup_block {
  444. position: absolute;
  445. }
  446.  
  447.  
  448.  
  449. {block:IfCustomScrollbar}
  450. ::-webkit-scrollbar {width:2px;height:2px;background:{color:background}}
  451. ::-webkit-scrollbar-thumb:vertical {height:2px;background:{color:scrollbar};}
  452. ::-webkit-scrollbar-thumb:horizontal {height:2px;background:{color:scrollbar};}
  453. {/block:IfCustomScrollbar}
  454.  
  455. iframe#tumblr_controls {white-space:nowrap;-webkit-filter:invert(100%);-moz-filter:invert(100%);-o-filter:invert(100%);-ms-filter: invert(100%);filter:invert(100%);opacity:.2;}
  456. body {margin:0;font-family:{text:font family};font-size:{text:font size}px;line-height:11px;color:{color:text};background-color:{color:background};background-attachment:fixed;background-image:url('{image:Background}');background-position:{text:Background Image Position};{block:IfNotBackgroundImageRepeat}background-repeat:no-repeat;{/block:IfNotBackgroundImageRepeat}{block:IfBackgroundImageRepeat}background-repeat:repeat;{/block:IfBackgroundImageRepeat}}
  457.  
  458. a {text-decoration:none;-webkit-transition: all .3s linear;-moz-transition: all .3s linear;-ms-transition: all .3s linear;-o-transition: all .3s linear;transition: all .3s linear;color:{color:links};text-shadow:0px 0px 1px #5a3e35;}
  459. a:hover { color:#404040;text-shadow:0px 0px 5px #adadad;
  460. -webkit-text-stroke-width: 0px;
  461. -webkit-text-stroke-color: #f3f3f3;-webkit-transition: all .3s linear;-moz-transition: all .3s linear;-ms-transition: all .3s linear;-o-transition: all .3s linear;transition: all .3s linear;}
  462.  
  463. strong, bold, b {font-weight:bold;font-family:"limo";font-size:25px;color:{color:Bold}; -webkit-text-stroke: 0px #262626; text-shadow:0px 1px 2px {color:Bold Shadow};letter-spacing:3px;line-height:25px;z-index:99;}
  464. italic, i, em {font-weight:italic;font-family: 'prelude' ;font-size:35px;color:{color:Italic}; -webkit-text-stroke: 0px #697e80; text-shadow:0px 0px 2px {color:Italic Shadow};}
  465.  
  466. small, sub {font-size:{text:font size}px;}
  467. code {font-size:{text:font size}px;font-family:{text:font family};}
  468. pre {word-wrap:break-word;font-size:{text:font size}px;font-family:{text:font family};}
  469.  
  470. blockquote {padding-left:8px;padding-right:8px;margin-top:8px;margin-left:10px;border-left:1px solid #7d7d7d;border-right:0px solid #7d7d7d;background:transparent;box-shadow:0px 0px 0px #6e6e6e;border-radius:5px;}
  471.  
  472.  
  473. h1 {font-size:30px;font-weight:bold;letter-spacing:1px;padding:8px 50px;text-transform:lowercase;text-align:center;line-height:25px;color:{color:main color};line-height:30px;font-family:"master";}
  474. h2 {font-size:40px;font-weight:bold;letter-spacing:1px;padding:8px 50px;text-transform:uppercase;text-align:center;line-height:45px;color:{color:H2};line-height:40px;text-shadow:1px 1px 2px {color:H2 Shadow};font-family:"prelude";}
  475. h1 a {color:{color:main color};}
  476.  
  477. .label {font-weight:normal;color:{color:main color};font-size:20px;}
  478. .chat {line-height:25px;margin:8px;font-family:"determination";font-size:20px;color:#424242;text-transform:lowercase;}
  479. n {line-height:25px;margin:8px;font-family:"determination";font-size:30px;}
  480.  
  481. ::selection {color:#fff;background:#4d2f2f;}
  482. ::-moz-selection {color:#fff;background:#4d2f2f;}
  483. ::-webkit-selection {color:#fff;background:#4d2f2f;}
  484.  
  485. #credit {position:fixed;bottom:10px;right:10px;text-transform:uppercase;font-size:10px;font-family:trebuchet ms;letter-spacing:1px;}
  486. #credit a {color:{color:main color};}
  487.  
  488. #pagination {margin:0px 0px 30px 445px;{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:500px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:400px;{/block:If400pxPosts}{block:If540pxPosts}width:540px;{/block:If540pxPosts}text-align:center;letter-spacing:20px;}
  489.  
  490. /************************************************************************/
  491.  
  492. #sidebar {text-align:left;
  493. position:fixed;
  494. margin-left:-225px;
  495. margin-top:400px;
  496. width:300px;}
  497.  
  498.  
  499. .description {margin:13px 0px;line-height:16px;text-align:center;letter-spacing:1px;font-size:10px;}
  500.  
  501.  
  502.  
  503. #links {
  504. margin-top:155px;
  505. margin-left:12px;
  506. line-height:16px;
  507. width:10px;
  508. text-transform:lowercase;
  509. position:fixed;
  510. }
  511.  
  512.  
  513. #links a{
  514. margin-right:20px;
  515. display:inline-block;
  516. margin-bottom:5px;
  517. font-size:35px;
  518. color:#f3f3f3;
  519. text-shadow:0px 0px 3px #383838;
  520. -webkit-text-stroke-width: 0px;
  521. -webkit-text-stroke-color: #7b878a;
  522. -webkit-transition-duration:0.4s;
  523. -moz-transition-duration:0.4s;
  524. -o-transition-duration:0.4s;
  525. }
  526.  
  527. #links a:hover {
  528. display:inline-block;
  529. margin-bottom:5px;
  530. color:#d9d9d9;
  531. text-shadow:0px 0px 1px #c4c4c4;
  532. -moz-transition-duration:0.3s;
  533. -webkit-transition-duration:0.3s;
  534. -o-transition-duration:0.3s;
  535. -webkit-filter: grayscale(0) blur(5px);
  536. opacity:.2;
  537. }
  538.  
  539. #blinks {
  540. margin-top:132px;
  541. margin-left:20px;
  542. line-height:16px;
  543. width:10px;
  544. text-transform:lowercase;
  545. position:fixed;
  546. }
  547.  
  548. #blinks a {
  549. margin-right:20px;
  550. display:inline-block;
  551. margin-bottom:5px;
  552. font-size:30px;
  553. color:#f3f3f3;
  554. text-shadow:0px 0px 3px #383838;
  555. -webkit-text-stroke-width: 0px;
  556. -webkit-text-stroke-color: #7b878a;
  557. -webkit-transition-duration:0.4s;
  558. -moz-transition-duration:0.4s;
  559. -o-transition-duration:0.4s;
  560. }
  561.  
  562. #blinks a:hover {
  563. display:inline-block;
  564. margin-bottom:5px;
  565. color:#d9d9d9;
  566. text-shadow:0px 0px 1px #c4c4c4;
  567. -moz-transition-duration:0.3s;
  568. -webkit-transition-duration:0.3s;
  569. -o-transition-duration:0.3s;
  570. -webkit-filter: grayscale(0) blur(9px);
  571. opacity:.2;
  572. }
  573.  
  574. #clinks {
  575. margin-top:106px;
  576. margin-left:44px;
  577. line-height:16px;
  578. width:10px;
  579. text-transform:lowercase;
  580. position:fixed;
  581. }
  582.  
  583. #clinks a {
  584. margin-right:20px;
  585. display:inline-block;
  586. margin-bottom:5px;
  587. font-size:30px;
  588. color:#f3f3f3;
  589. text-shadow:0px 0px 3px #383838;
  590. -webkit-text-stroke-width: 0px;
  591. -webkit-text-stroke-color: #7b878a;
  592. -webkit-transition-duration:0.4s;
  593. -moz-transition-duration:0.4s;
  594. -o-transition-duration:0.4s;
  595. }
  596.  
  597. #clinks a:hover {
  598. display:inline-block;
  599. margin-bottom:5px;
  600. color:#d9d9d9;
  601. text-shadow:0px 0px 1px #c4c4c4;
  602. opacity:.2;
  603. -moz-transition-duration:0.3s;
  604. -webkit-transition-duration:0.3s;
  605. -o-transition-duration:0.3s;
  606. -webkit-filter: grayscale(0) blur(5px);
  607. }
  608.  
  609. #dlinks {
  610. margin-top:86px;
  611. margin-left:80px;
  612. line-height:16px;
  613. width:10px;
  614. text-transform:lowercase;
  615. position:fixed;
  616. }
  617.  
  618. #dlinks a {
  619. margin-right:20px;
  620. display:inline-block;
  621. margin-bottom:5px;
  622. font-size:25px;
  623. color:#f3f3f3;
  624. text-shadow:0px 0px 3px #383838;
  625. -webkit-text-stroke-width: 0px;
  626. -webkit-text-stroke-color: #7b878a;
  627. -webkit-transition-duration:0.4s;
  628. -moz-transition-duration:0.4s;
  629. -o-transition-duration:0.4s;
  630. }
  631.  
  632. #dlinks a:hover {
  633. display:inline-block;
  634. margin-bottom:5px;
  635. color:#f3f3f3;
  636. text-shadow:0px 0px 0px #f0f0f0;
  637. opacity:.2;
  638. -webkit-text-stroke-width: 0px;
  639. -webkit-text-stroke-color: #474759;
  640. -moz-transition-duration:0.3s;
  641. -webkit-transition-duration:0.3s;
  642. -o-transition-duration:0.3s;
  643. -webkit-filter: grayscale( 0 ) blur(5px);
  644. }
  645.  
  646.  
  647. #elinks {
  648. margin-top:130px;
  649. margin-left:75px;
  650. line-height:16px;
  651. width:10px;
  652. text-transform:lowercase;
  653. position:fixed;
  654. }
  655.  
  656. #elinks a {
  657. margin-right:20px;
  658. display:inline-block;
  659. margin-bottom:5px;
  660. font-size:50px;
  661. color:#f3f3f3;
  662. text-shadow:0px 0px 3px #383838;
  663. -webkit-text-stroke-width: 0px;
  664. -webkit-text-stroke-color: #7b878a;
  665. -webkit-transition-duration:0.4s;
  666. -moz-transition-duration:0.4s;
  667. -o-transition-duration:0.4s;
  668. }
  669.  
  670. #elinks a:hover {
  671. display:inline-block;
  672. margin-bottom:5px;
  673. color:#f3f3f3;
  674. opacity:.1;
  675. text-shadow:0px 0px 9px #f0f0f0;
  676. -webkit-text-stroke-width: 0px;
  677. -webkit-text-stroke-color: #f0f0f0;
  678. -moz-transition-duration:0.3s;
  679. -webkit-transition-duration:0.3s;
  680. -o-transition-duration:0.3s;
  681. -webkit-filter: grayscale( 0 ) blur(10px);
  682.  
  683. }
  684.  
  685.  
  686. #description {
  687. position:fixed;
  688. width:0px;
  689. font-family:trebuchet ms;
  690. margin-top:55px;
  691. margin-left:-9px;
  692. text-align:justify;
  693. font-size:9px;
  694. color: {color:text};
  695. letter-spacing:0px;
  696. line-height:130%;
  697. -moz-transition-duration:1s;
  698. -webkit-transition-duration:1s;
  699. -o-transition-duration:1s;
  700. }
  701. /************************************************************************/
  702.  
  703. #post {{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:500px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:400px;{/block:If400pxPosts}{block:If540pxPosts}width:540px;{/block:If540pxPosts}margin:40px 0px 80px 430px;text-align:left;line-height:14px;opacity:0.9;
  704. -webkit-transition: all 0.6s ease-in-out;
  705. -moz-transition: all 0.6s ease-in-out;
  706. -o-transition: all 0.6s ease-in-out;
  707. -ms-transition: all 0.6s ease-in-out;
  708. transition: all 0.6s ease-in-out;line-height:20px;
  709. -webkit-filter:grayscale(0%);
  710. -webkit-transition: all 0.6s ease-in-out;}
  711.  
  712. #post:hover {
  713. opacity:1;
  714. -webkit-transition: all 0.6s ease-in-out;
  715. -moz-transition: all 0.6s ease-in-out;
  716. -o-transition: all 0.6s ease-in-out;
  717. -ms-transition: all 0.6s ease-in-out;
  718. transition: all 0.6s ease-in-out;
  719. -webkit-filter:none;
  720. }
  721.  
  722.  
  723.  
  724. #post img {{block:IfNot400pxPosts}{block:IfNot540pxPosts}max-width:500px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}max-width:400px;{/block:If400pxPosts}{block:If540pxPosts}max-width:540px;{/block:If540pxPosts}}
  725. #post blockquote div {margin-top:8px;}
  726. #post blockquote img {{block:IfNot400pxPosts}{block:IfNot540pxPosts}max-width:450px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}max-width:350px;{/block:If400pxPosts}{block:If540pxPosts}max-width:490px;{/block:If540pxPosts}}
  727.  
  728.  
  729. #permalink {-webkit-transition: all .3s linear;-moz-transition: all .3s linear;-ms-transition: all .3s linear;-o-transition: all .3s linear;transition: all .3s linear;border-top:1px solid {color:border};{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:500px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:400px;{/block:If400pxPosts}{block:If540pxPosts}width:540px;{/block:If540pxPosts}color:#454545;margin-top:15px;padding-top:8px;text-transform:lowercase;line-height:14px;text-align:center;font-size:25px;letter-spacing:1px;background:#bebebe;background-repeat:repeat;background-attachment:fixed;height:25px;border-top:2px solid #4d2525;border-bottom:2px solid #4d2525;border-left:4px solid #4d2525;border-right:4px solid #4d2525; -webkit-text-stroke-width: 1px;outline:0px solid #4d2525;
  730. -webkit-text-stroke-color: #cfcfcf;}
  731. #permalink a {color:#4d2525;font-family:"determination"; -webkit-text-stroke-width: 0px;
  732. -webkit-text-stroke-color: #cfcfcf;}
  733. #permalink a:hover {color:#cfcfcf;font-family:"determination";-webkit-text-stroke-width: 1px;
  734. -webkit-text-stroke-color: #4d2525;}
  735.  
  736. .tags {text-align:center;opacity:0;margin:10px 0px;-webkit-transition: all .5s linear;-moz-transition: all .5s linear;-ms-transition: all .5s linear;-o-transition: all .5s linear;transition: all .5s linear;font-size:13px;text-transform:none;font-size:12px;}
  737. .tags a {color:{color:main color};text-transform:lowercase;padding:0px 5px;text-shadow:0px 0px 2px #3d1c1f;font-size:13px;}
  738. .tags a:hover {text-decoration:underline;color:#3d1c1f;-webkit-transition: all .3s linear;-moz-transition: all 3s linear;-ms-transition: all .3s linear;-o-transition: all .3s linear;transition: all .3s linear;text-shadow:0px 0px 2px #685e73;letter-spacing:0px;}
  739.  
  740. #post:hover .tags {opacity:1;}
  741.  
  742. /************************************************************************/
  743.  
  744.  
  745. #permalinkpage {margin-top:15px;text-align:center;padding:5px 0px;text-transform:lowercase;height:35px;border-top:2px solid #4d2525;border-bottom:2px solid #4d2525;border-left:4px solid #4d2525;border-right:4px solid #4d2525;background:#bebebe;color:#4d2525;}
  746.  
  747. #tagspp {line-height:15px;{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:500px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:400px;{/block:If400pxPosts}{block:If540pxPosts}width:540px;{/block:If540pxPosts}text-align:center;color:{color:links};padding:5px 0px;}
  748. #tagspp a {padding:0px 5px;}
  749. #tagspp a:hover {text-decoration:underline;}
  750.  
  751.  
  752. /************************************************************************/
  753.  
  754. .tumblr_audio_player {border:1px solid {color:border};height:40px;margin-bottom:5px;{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:396px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:296px;{/block:If400pxPosts}{block:If540pxPosts}width:436px;{/block:If540pxPosts}}
  755.  
  756. .audio {position:relative;margin-top:-100px;margin-left:102px;height:100px;{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:390px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:296px;{/block:If400pxPosts}{block:If540pxPosts}width:436px;{/block:If540pxPosts};color:{color:links};font-family:"silkscreen";font-weight:normal;font-size:11px;}
  757.  
  758. .audioart {padding-right:2px;width:100px;height:100px;}
  759. .audioart img {width:100px;}
  760.  
  761. /************************************************************************/
  762.  
  763.  
  764. .quote {font-weight:italic;font-family: 'determination' ;font-size:20px;color:#3d1c1f; -webkit-text-stroke: 0px #697e80; text-shadow:0px 0px 1px #3d1c1f;line-height:25px;word-spacing:2px;text-transform:lowercase;}
  765. .source {font-weight:normal;padding-left:8px;display:inline-block;font-family:"silkscreen";}
  766.  
  767. /************************************************************************/
  768. #sans {font-size:24px; font-style:none;margin-top:10px;margin-left:0px;font-family:"determination";text-transform:uppercase;color:#4d2525;text-shadow:0px 0px 2px #4d2525;width:500px;text-align:left; -webkit-text-stroke-width: 0px;-webkit-text-stroke-color: #f3f3f3;}
  769. #question {margin:10px 0px;padding:10px 20px;line-height:20px;border-bottom:2px solid #4d2525;border-top:2px solid #4d2525;border-left:4px solid #4d2525;border-right:4px solid #4d2525;border-radius:0px 0px 0px 0px;text-align:center;background-repeat:repeat;background-attachment:fixed;font-family:"silkscreen";text-transform:lowercase;font-size:14px;-webkit-text-stroke: 0px #697e80;color:#633535;text-shadow:0px 0px 0px #121111;margin-top:-12px;font-size:14px;background:#bebebe; box-shadow:0px 0px 2px #633535;}
  770. #sender {font-size:36px; font-style:none;margin-top:-0px;margin-left:0px;font-family:"master";text-transform:;color:#633535;text-shadow:0px 0px 2px #633535;width:500px;text-align:right; -webkit-text-stroke-width: 0px;-webkit-text-stroke-color: #f3f3f3;}
  771.  
  772.  
  773. /************************************************************************/
  774.  
  775. .notes {margin-left:-15px;margin-top:30px;{block:IfNot400pxPosts}{block:IfNot540pxPosts}width:480px;{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}width:380px;{/block:If400pxPosts}{block:If540pxPosts}width:520px;{/block:If540pxPosts}}
  776. .notes a:hover {background-color:transparent;color:{color:links};}
  777. ol.notes {list-style-type:none;}
  778. ol.notes li.note {padding-bottom:7px;margin-bottom:12px;border-bottom:1px solid {color:border};}
  779. ol.notes li.note img.avatar {vertical-align:-6px;}
  780. ol.notes li.note img {padding:2px 5px 2px 2px;}
  781. ol.notes li.note blockquote {padding-left:5px;margin-left:30px;}
  782.  
  783. /************************************************************************/
  784.  
  785. .hidden {display:none;}
  786. .unhidden {display:block;}
  787.  
  788. /************************************************************************/
  789.  
  790. #nav {
  791. width:300px;
  792. background:transparent;
  793. padding:10px; }
  794.  
  795. #nav a{
  796. text-decoration:none;
  797. font: 15px "silkscreen";
  798. color:#4d2929;
  799. letter-spacing:2px;
  800. display:inline-block;
  801. text-align:center;
  802. background:#bebebe;
  803. border-top:2px solid #4d2929;
  804. border-bottom:2px solid #4d2929;
  805. border-left:4px solid #4d2929;
  806. border-right:4px solid #4d2929;
  807. padding: 2px;
  808. width:280px;
  809. margin:5px;
  810. -webkit-transition:all 0.4s ease-in-out;
  811. -moz-transition:all 0.4s ease-in-out;
  812. -o-transition:all 0.4s ease-in-out;
  813. transition:all 0.4s ease-in-out;}
  814.  
  815. #nav a:hover{
  816. color:#e8e8e7;
  817. letter-spacing:5px;
  818. display:inline-block;
  819. text-align:center;
  820. background:#bebebe;
  821. padding: 2px;
  822. width:280px;
  823. margin:5px;
  824. -webkit-transition:all 0.5s ease-in-out;
  825. -moz-transition:all 0.5s ease-in-out;
  826. -o-transition:all 0.5s ease-in-out;
  827. transition:all 0.5s ease-in-out;}
  828. </style>
  829. </head>
  830.  
  831. <body>
  832. <div id="music"><center><img src="http://33.media.tumblr.com/tumblr_m7vz7a0tnZ1r6o8v2.gif"/></center>
  833. <div id="musicplayer"><center><object type="application/x-shockwave-flash" data="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" width="26" height="20">
  834. <param name="movie" value="http://flash-mp3-player.net/medias/player_mp3_maxi.swf" />
  835. <param name="bgcolor" value="#fafafa" />
  836. <param name="FlashVars" value="mp3=https%3A//dl.dropboxusercontent.com/s/suo9gg9cuz549hs/%2528Fire%2520Emblem-%2520Fates%2529%2520End%2520of%2520All%2520-%2520Shigure%2527s%2520Ver.%2520%255BHigher%2520Quality%255D.mp3%3Fdl%3D0&amp;width=26&amp;loop=1&amp;autoplay=0&amp;volume=25&amp;showslider=0&amp;loadingcolor=fafafa&amp;bgcolor=fafafa&amp;bgcolor1=fafafa&amp;bgcolor2=fafafa&amp;buttoncolor=ad0023&amp;buttonovercolor=5c343c" />
  837. </object></center></div>
  838. </div>
  839.  
  840.  
  841. <div id="navi" class="popup_block"><div style="background-color:#4d2929; width:300px;padding:06px;text-align:center; text-style:normal;color:#fff;opacity:1; letter-spacing:1px;font-size:13px;height:auto;margin-top:6px;line-height:20px; box-shadow: 0px 0px 0px #828282;border-radius:0px 0px 0px 0px;font-size:15px;border:3px solid #bebebe; outline:1px dashed #4d2929;font-family:silkscreen;">✦ PAGES.</div>
  842. <div id="nav">
  843. <a href="http://raijitan.tumblr.com/ask">MESSAGE.</a>
  844. <a href="http://raijitan.tumblr.com/submit">SUBMIT.</a>
  845. <a href="http://raijitan.tumblr.com/archive">ARCHIVE.</a>
  846. <a href="http://raijitan.tumblr.com/r">READ.</a>
  847. <a href="http://raijitan.tumblr.com/a">ABOUT.</a>
  848. </div>
  849. </div>
  850. </div>
  851. </div>
  852.  
  853.  
  854.  
  855.  
  856. <!----------------------------------------------------------------------->
  857.  
  858.  
  859. <!----------------------------------------------------------------------->
  860.  
  861. <div id="sidebar">
  862.  
  863. <div id="description"></div>
  864.  
  865. </div>
  866. <div id="links">
  867. <a href="{text:link 01 url}" title="{text:link 01}">✦</a></div>
  868. <div id="blinks"><a href="{text:link 02 url}" title="{text:link 02}">✦</a></div>
  869. <div id="clinks"><a href="{text:link 03 url}" title="{text:link 03}">✦</a></div>
  870. <div id="dlinks"><a href="{text:link 04 url}" title="{text:link 04}">✦</a>
  871. </div>
  872. <div id="elinks"><a href="#?w=320" rel="navi" class="poplight" title="{text:link 05}" rel="rules" class="poplight">★</a></div>
  873. <!----------------------------------------------------------------------->
  874.  
  875. {block:IfInfiniteScrolling}<div class="autopagerize_page_element">{/block:IfInfiniteScrolling}
  876.  
  877. {block:Posts}
  878. <div id="post">
  879.  
  880. {block:Text}{block:Title}<h1><a href="{Permalink}">{Title}</a></h1>{/block:Title}{Body}{/block:Text}
  881.  
  882. {block:Photo}{block:IfNot400pxPosts}{block:IfNot540pxPosts}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}
  883. {block:If400pxPosts}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{/block:If400pxPosts}{block:If540pxPosts}<center><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"></center>{/block:If540pxPosts}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  884.  
  885. {block:Photoset}{block:IfNot400pxPosts}{block:IfNot540pxPosts}{Photoset-500}{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}{Photoset-400}{/block:If400pxPosts}{block:If540pxPosts}<center>{Photoset}</center>{/block:If540pxPosts}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  886.  
  887. {block:Quote}<div class="quote">* {Quote} ❞</div>{block:Source}<div class="source">» {Source}</div>{/block:Source}{/block:Quote}
  888.  
  889. {block:Link}<h1><a href="{URL}" class="link" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  890.  
  891. {block:Chat}<div id="chat">{block:Title}<p style="font-size:30px;text-transform:lowercase;line-height:30px;text-align:center;font-family:prelude;"><a href="{Permalink}">{Title}</a>{/block:Title}<div class="chat">{block:Lines}<div class="{Alt} user_{UserNumber}">{block:Label}<span class="label">{Label} </span>{/block:Label}{Line}</div>{/block:Lines}</div></div>{/block:Chat}
  892.  
  893. {block:Video}{block:IfNot400pxPosts}{block:IfNot540pxPosts}{Video-500}{/block:IfNot540pxPosts}{/block:IfNot400pxPosts}{block:If400pxPosts}{Video-400}{/block:If400pxPosts}{block:If540pxPosts}<center>{Video-500}</center>{/block:If540pxPosts}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  894.  
  895. {block:Audio}<div class="audioart">{block:AlbumArt}<img src="{AlbumArtURL}" width="100">{/block:AlbumArt}</div><div class="audio">{block:AudioPlayer}{AudioPlayer}{/block:AudioPlayer}<span class="height:60px;">{block:TrackName}&nbsp;&nbsp;&nbsp;TRACK NAME: {TrackName}{/block:TrackName} <br> {block:Artist}&nbsp;&nbsp;&nbsp;ARTIST: {Artist}{/block:Artist} <br> {block:Album}&nbsp;&nbsp;&nbsp;ALBUM: {Album}{/block:Album}</span></div>{block:caption}{caption}{/block:caption}{/block:Audio}
  896.  
  897. {block:Answer}<div id="sans">message loading...</div><p><div id="question">* {Question} </div><div id="sender">—&nbsp;&nbsp;&nbsp;{Asker}</div>{Answer}{/block:Answer}
  898.  
  899.  
  900. {block:ContentSource}<!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  901. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}{block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->{/block:ContentSource}
  902.  
  903. <!-- {block:NoRebloggedFrom}
  904. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  905. {/block:NoRebloggedFrom} -->
  906.  
  907. {block:IndexPage}
  908. <div id="permalink">
  909. {block:Date}<a href="{Permalink}" title="{TimeAgo}">✦</a>{/block:Date} <a href="{Permalink}" title="{NoteCount} notes">✦</a>{/block:NoteCount}&nbsp;{block:RebloggedFrom}<a title="via: {ReblogParentName}" href="{ReblogParentURL}">✦</a>{/block:RebloggedFrom}{block:ContentSource} <a title="source: {SourceTitle}" href="{SourceURL}">✦</a>{/block:ContentSource}{/block:RebloggedFrom} <a href="{ReblogURL}" title="reblog?" target="_blank" class="details">✦</a></div>
  910. <div class="tags">{block:HasTags} {block:Tags}<a href="{TagURL}">* {Tag} ;</a>{/block:Tags}{/block:HasTags}</div>
  911. {/block:IndexPage}
  912.  
  913. {block:PermalinkPage}{block:Date}<div id="permalinkpage">shared {TimeAgo} on {ShortDayOfWeek}, {DayOfMonthWithZero}{DayOfMonthSuffix}{block:NoteCount} with {NoteCountWithLabel}{/block:NoteCount}{block:RebloggedFrom}<br>Originally made by <a href="{ReblogRootURL}">{ReblogRootName}</a>, reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom} </div>{/block:Date}{/block:PermalinkPage}
  914.  
  915. {block:PermalinkPage}{block:HasTags}<div id="tagspp">{block:Tags}<a href="{TagURL}">* {Tag} ;</a>{/block:Tags}</div>{/block:HasTags}{/block:PermalinkPage}
  916.  
  917. {block:PostNotes}
  918. <div style="background-color:{color:border};height:1px;margin-top:20px;"></div>
  919. <div style="margin-top:-6px;text-align:center;color:{color:text};"><span style="background-color:{color:background};padding:0px 5px;"><a href="javascript:unhide('notes');">show notes</a></span></div>
  920. <div id="notes" class="hidden"><div class="notes">{PostNotes}</div></div>
  921. {/block:PostNotes}
  922.  
  923. </div>
  924.  
  925. {/block:Posts}
  926.  
  927. {block:IfInfiniteScrolling}</div>{/block:IfInfiniteScrolling}
  928.  
  929. {block:IfNotInfiniteScrolling}{block:Pagination}<div id="pagination">{block:PreviousPage}<a href="{PreviousPage}">-</a>{/block:PreviousPage}
  930. {block:JumpPagination length="5"}{block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}{block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}{block:NextPage}<a href="{NextPage}">+</a>{/block:NextPage}</div>{/block:Pagination}{/block:IfNotInfiniteScrolling}
  931.  
  932. <!----------------------------------------------------------------------->
  933.  
  934. </body>
  935. </html>
Advertisement
Add Comment
Please, Sign In to add comment