Guest User

Untitled

a guest
Dec 25th, 2015
694
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 39.55 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!--
  5. CODENAME: GLISSADE [v2.0]
  6. DO NOT STEAL PARTS OF CODE WITHOUT PERMISSION AND CREDIT
  7. bg pos
  8. -->
  9.  
  10.  
  11. <title>
  12. {block:indexpage}{Title}{/block:indexpage}
  13. {block:PostSummary}—{PostSummary}{/block:PostSummary}
  14. {block:TagPage} —posts tagged as {Tag};{/block:TagPage}
  15. {block:SearchPage} —results for {SearchQuery};{/block:SearchPage}
  16. </title>
  17.  
  18. <link rel="shortcut icon" href="{Favicon}">
  19. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  20. <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
  21.  
  22.  
  23.  
  24. <!--DEFAULT VARIABLES-->
  25.  
  26. <!--IMAGES-->
  27. <meta name="image:Background" content=""/>
  28. <!--COLOURS-->
  29. <meta name="color:Text" content="#aaa"/>
  30. <meta name="color:Links" content="#000"/>
  31. <meta name="color:Linkhover" content="#000A0D"/>
  32. <meta name="color:Slidemenubg" content="#ddeaed"/>
  33. <meta name="color:Slidemenu" content="#A0D0DE"/>
  34. <meta name="color:Postbg" content="#fefefe"/>
  35. <meta name="color:Captions" content="#eee"/>
  36. <meta name="color:Info" content="#A0D0DE"/>
  37.  
  38. <!--FONTS-->
  39. <meta name="font:Body" content="helvetica"/>
  40.  
  41. <!--TEXTS-->
  42. <meta name="text:Home Title" content="idx."/>
  43. <meta name="text:Ask Title" content="inq."/>
  44. <meta name="text:Archive Title" content="arc."/>
  45. <meta name="text:Nav Title" content="nav."/>
  46. <meta name="text:Search Title" content="search."/>
  47. <meta name="text:Extra Title" content="bio."/>
  48. <meta name="text:Extra" content=""/>
  49.  
  50. <meta name="text:Link one" content="link"/>
  51. <meta name="text:Link two" content="link"/>
  52. <meta name="text:Link three" content="link"/>
  53. <meta name="text:Link four" content="link"/>
  54. <meta name="text:Link five" content="link"/>
  55. <meta name="text:Link six" content="link"/>
  56. <meta name="text:Link one url" content="/"/>
  57. <meta name="text:Link two url" content="/"/>
  58. <meta name="text:Link three url" content="/"/>
  59. <meta name="text:Link four url" content="/"/>
  60. <meta name="text:Link five url" content="/"/>
  61. <meta name="text:Link six url" content="/"/>
  62. <meta name="text:Stats" content=""/>
  63.  
  64. <!--OPTIONALS-->
  65. <meta name-"if:Lazyload" content="1"/>
  66. <meta name="if:Tooltips" content="0"/>
  67. <meta name="if:Cursor" content="1"/>
  68. <meta name="if:Fadein" content="1"/>
  69. <meta name="if:Infinitescroll" content="1">
  70. <meta name="if:Slidemenu" content="0"/>
  71. <meta name="if:Searchbar" content="1"/>
  72. <meta name="if:Fullbg" content="1"/>
  73.  
  74.  
  75.  
  76. <!--SELETION-->
  77.  
  78. <!--BACKGROUND SIZE-->
  79. <meta name="select:Background Size" title="Large" content="cover"/>
  80. <meta name="select:Background Size" title="Medium" content="50% 50%"/>
  81. <meta name="select:Background Size" title="Small" content="20% 20%"/>
  82.  
  83. <!--BACKGROUND POSITION-->
  84. <meta name="select:Background Position" title="West" content="left"/>
  85. <meta name="select:Background Position" title="East" content="Right"/>
  86. <meta name="select:Background Position" title="Center" content="center"/>
  87. <meta name="select:Background Position" title="North" content="top"/>
  88. <meta name="select:Background Position" title="South" content="bottom"/>
  89. <meta name="select:Background Position" title="North-West" content="left top"/>
  90. <meta name="select:Background Position" title="South-West" content="right bottom"/>
  91. <meta name="select:Background Position" title="North-East" content="right top"/>
  92. <meta name="select:Background Position" title="South-West" content="bottom left"/>
  93.  
  94.  
  95. <!--HEADER/FOOTER-->
  96. <meta name="select:Header or Footer" title="Header" content="header"/>
  97. <meta name="select:Header or Footer" title="Footer" content="footer"/>
  98.  
  99.  
  100. <!--TEXT ALIGN-->
  101. <meta name="select:Text Align" content="left" title="Left">
  102. <meta name="select:Text Align" content="right" title="Right">
  103. <meta name="select:Text Align" content="center" title="Center">
  104. <meta name="select:Text Align" content="justify" title="Justify">
  105.  
  106. <!--FONT-SIZE-->
  107. <meta name="select:Font Size" content="10" title="10px"/>
  108. <meta name="select:Font Size" content="11" title="11px"/>
  109. <meta name="select:Font Size" content="12" title="12px"/>
  110.  
  111.  
  112. <!--SCRIPTS-->
  113. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  114.  
  115.  
  116.  
  117.  
  118. <!--MASONARY-->
  119. <script type="text/javascript">
  120. $(window).load(function(){
  121. var $wall = $('#entries');
  122. $wall.imagesLoaded(function(){
  123. $wall.masonry({
  124. itemSelector: '.post',
  125. isAnimated : true
  126. });
  127. });
  128. $wall.infinitescroll({
  129. navSelector : "div#navigation",
  130. nextSelector : "div#navigation a#nextPage",
  131. itemSelector : '.post',
  132. loadingImg : "",
  133. loadingText : " ",
  134. donetext : " ",
  135. extraScrollPx : 0,
  136. bufferPx : 10000,
  137. debug : false,
  138. errorCallback: function() {
  139. $('#infscr-loading').animate({opacity: .8},2000).fadeOut('normal');
  140. }},
  141. function( newElements ) {
  142. var $newElems = $( newElements );
  143. $newElems.hide();
  144. $newElems.imagesLoaded(function(){
  145. $wall.masonry( 'appended', $newElems, {isAnimated: true, animationOptions: {duration: 250, easing: 'linear', queue: false}}, function(){$newElems.fadeIn('slow');} );
  146. });
  147. }); $('#entries').show(500);
  148. });
  149. </script>
  150.  
  151.  
  152. <script language="JavaScript">
  153. function function1(){
  154. window.scrollTo(0,5);
  155. }
  156. function function2(){
  157. window.scroll(0,2);
  158. }
  159. </script>
  160.  
  161.  
  162. <!--INFINITE SCROLL-->
  163. {block:ifinfinitescroll}
  164. <script type="text/javascript" src="http://codysherman.tumblr.com/tools/infinite-scrolling/code"></script>
  165. {/block:ifinfinitescroll}
  166.  
  167. <!--CLICK/HIDE::MENU-->
  168. <script src="http://takien.github.io/jPushMenu/js/jquery-1.9.1.min.js"></script>
  169. <script src="http://takien.github.io/jPushMenu/js/jPushMenu.js">
  170. </script>
  171. <script> jQuery(document).ready(function($) { $('.toggle').jPushMenu(); });
  172. </script>
  173. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
  174.  
  175. <!--LAZYLOAD-->
  176. {block:iflazyload}
  177. {/block:iflazyload}
  178.  
  179.  
  180. <!--TOOLTIPS-->
  181.  
  182. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  183. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script> <script> (function($){ $(document).ready(function(){ $("[title],a[title],img[title]").style_my_tooltips({ tip_follows_cursor:true, tip_delay_time:100, tip_fade_speed:300, attribute:"title" }); }); })(jQuery); </script>
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191. <style type="text/css">
  192. /*TOOLTIPS*/
  193. {block:iftootltips}
  194. #s-m-t-tooltip{
  195. max-width:300px;
  196. padding:15px;
  197. border:1px solid transparent;
  198. font-family: {font:tooltips};
  199. font-size:10px;
  200. margin:10px;
  201. letter-spacing:1px;
  202. text-transform: uppercase;
  203. color:{color:text};
  204. z-index:9999999999999999999999999999999999999999999999999999999999999999999;
  205. background:{BackgroundColor};
  206. }
  207. {/block:iftootltips}
  208.  
  209.  
  210.  
  211. /*BASICS*/
  212. body {
  213. margin:0;
  214. font-size:{select:font size}px;
  215. font-family:{font:body};
  216. {block:ifcursor}
  217. cursor:url('https://31.media.tumblr.com/0b47eca9f7f529deed778f6a7c4f0318/tumblr_inline_n103ieli6Y1sr8w60.png'),auto;
  218. {/block:ifcursor}
  219. color:{color:text};
  220. background:{BackgroundColor};
  221. background-image:url('{image:background}') ;
  222. background-repeat: no-repeat;
  223. background-attachment: fixed;
  224. background-position: {select:background position};
  225. background-size:{select:background size};
  226. {block:iffullbg}
  227. background:url('{image:background}');
  228. background-repeat:repeat;
  229. background-attachment: fixed;
  230. {/block:iffullbg}
  231. }
  232.  
  233.  
  234. /*ORDER*/
  235.  
  236. #top {
  237. top:0;
  238. width:100%;
  239. height:25px;
  240. background:{color:postbg};
  241. position:fixed;
  242. z-index:100;
  243. }
  244.  
  245. #right {
  246. top:0;
  247. right:0;
  248. height:100%;
  249. width:25px;
  250. background:{color:postbg};
  251. position:fixed;
  252. z-index:100;
  253. }
  254.  
  255. #left {
  256. top:0;
  257. left:0;
  258. height:100%;
  259. width:25px;
  260. background:{color:postbg};
  261. position:fixed;
  262. z-index:100;
  263. }
  264.  
  265. #bottom {
  266. bottom:0;
  267. width:100%;
  268. height:25px;
  269. background:{color:postbg};
  270. position:fixed;
  271. z-index:100;
  272. }
  273. .left{
  274. text-align:left;
  275. }
  276.  
  277. .right{
  278. text-align:right;
  279. }
  280.  
  281. .center{
  282. text-align:center;
  283. }
  284.  
  285. .justify{
  286. text-align:justify;
  287. }
  288.  
  289.  
  290.  
  291.  
  292. a {
  293. text-decoration:none;
  294. color:{color:links};
  295. {block:ifcursor}
  296. cursor:url('https://31.media.tumblr.com/70444f630963e5ba6759d7e5f89b4120/tumblr_inline_n10aai56SU1sr8w60.png'),auto;
  297. {/block:ifcursor}
  298. border-bottom:1px double transparent;
  299. -webkit-transition: all .6s ease-in;
  300. -moz-transition: all .6s ease-in;
  301. -o-transition: all .6s ease-in;
  302. -ms-transition: all .6s ease-in;
  303. transition: all .6s ease-in;
  304. }
  305.  
  306. a:hover{
  307. border-bottom:1px double {color:linkhover};
  308. -webkit-transition: all .6s ease-in;
  309. -moz-transition: all .6s ease-in;
  310. -o-transition: all .6s ease-in;
  311. -ms-transition: all .6s ease-in;
  312. transition: all .6s ease-in;
  313. }
  314.  
  315. a.tumblr_blog{
  316. text-transform:uppercase;
  317. font-family:{TitleFont};
  318. }
  319.  
  320.  
  321. blockquote {
  322. border-left: 1px solid {color:links};
  323. margin: 10px;
  324. padding-left:5px;
  325. padding-top:3px;
  326. padding-bottom:3px;
  327. }
  328.  
  329. iframe, img, embed, object, video {
  330. max-width: 100%;
  331. }
  332.  
  333.  
  334. p{
  335. margin-bottom:10px;
  336. }
  337.  
  338.  
  339. b,strong{
  340. font-weight:normal;
  341. text-transform:uppercase;
  342. color:{AccentColor};
  343. }
  344.  
  345. i,em,oblique{
  346. color:{AccentColor};
  347. }
  348.  
  349. s,u{
  350. color:{AccentColor};
  351. }
  352.  
  353. samp,code{
  354. letter-spacing:2px;
  355. font-family:monospace;
  356. color:{AccentColor};
  357. }
  358.  
  359. img {
  360. height: auto;
  361. width:auto;
  362. max-width:100%;
  363. -webkit-transition: all 0.6s ease-in-out;
  364. -moz-transition: all 0.6s ease-in-out;
  365. -o-transition: all 0.6s ease-in-out;
  366. -ms-transition: all 0.6s ease-in-out;
  367. transition: all 0.6s ease-in-out;
  368. }
  369. }
  370.  
  371.  
  372.  
  373. img:hover{
  374. filter:alpha (opacity=100);
  375. opacity: 1.0;
  376. -webkit-transition: all 0.6s ease-in-out;
  377. -moz-transition: all 0.6s ease-in-out;
  378. -o-transition: all 0.6s ease-in-out;
  379. -ms-transition: all 0.6s ease-in-out;
  380. transition: all 0.6s ease-in-out;
  381. }
  382.  
  383.  
  384.  
  385. h1,h2,h3{
  386. text-transform:uppercase;
  387. font-weight:normal;
  388. font-size:15px;
  389. }
  390.  
  391.  
  392. h4,h5,h6{
  393. text-transform:lowercase;
  394. font-weight:normal;
  395. font-size:8px;
  396. }
  397.  
  398.  
  399. big{
  400. font-size:15px;
  401. }
  402.  
  403. small{
  404. font-size:8;
  405. }
  406.  
  407. pre {
  408. white-space: pre-wrap;
  409. white-space: -moz-pre-wrap;
  410. white-space: -pre-wrap;
  411. white-space: -o-pre-wrap;
  412. word-wrap: break-word;
  413. background:{AccentColor};
  414. border:1px double {AccentColor};
  415. color:{color:links};
  416. padding:5px;
  417. text-align:center;
  418. }
  419.  
  420.  
  421. ul{
  422. list-style-type:square;
  423. }
  424.  
  425. ol{
  426. list-style-type:lower-alpha;
  427. }
  428.  
  429.  
  430. hr{
  431. width:50%;
  432. padding:-5px;
  433. }
  434.  
  435. details{
  436. padding:5px;
  437. text-transform:uppercase;
  438. font-size:.8em;
  439. }
  440.  
  441. ::-moz-selection {
  442. background:{BackgroundColor};
  443. color: {color:links} ;
  444. }
  445.  
  446. ::selection {
  447. background:{BackgroundColor};
  448. color: {color:links} ;
  449. }
  450.  
  451. ::-webkit-scrollbar {
  452. width: 9px;
  453. }
  454.  
  455. ::-webkit-scrollbar-track {
  456. background:transparent;
  457. }
  458.  
  459. ::-webkit-scrollbar-thumb {
  460. background:{color:links};
  461. }
  462.  
  463. ::-webkit-scrollbar-thumb:window-inactive {
  464. background: transparent;
  465. }
  466.  
  467.  
  468. #tumblrcontrols{
  469. font-family:times;
  470. font-size:8px;
  471. letter-spacing:1px;
  472. text-transform:uppercase;
  473. padding:10px 8px 0px;
  474. opacity:1;
  475. position:fixed;
  476. top:30px;
  477. right:35px;
  478. z-index:99999999999999999999999999999999999999;
  479. -webkit-transition: all 1.6s ease-in;
  480. -moz-transition: all 1.6s ease-in;
  481. -o-transition: all 1.6s ease-in;
  482. -ms-transition: all 1.6s ease-in;
  483. transition: all 1.6s ease-in;
  484. }
  485.  
  486. #tumblrcontrols a{
  487. text-decoration:none;
  488. padding:6px;
  489. border:none;
  490. }
  491.  
  492. #tumblrcontrols a:hover{
  493. border:none;
  494. }
  495. {block:IndexPage}
  496.  
  497. .tmblr-iframe.tmblr-iframe--desktop-loggedin-controls.iframe-controls--desktop {
  498. display:none;
  499. }
  500. {/block:IndexPage}
  501.  
  502. {block:PermalinkPage}
  503. #tumblrcontrols{
  504. display:none;
  505. }
  506.  
  507. {/block:PermalinkPage}
  508.  
  509. #tumblr_lightbox {
  510. background-color:rgba(255, 255, 255, .9)!important;
  511. z-index:99999!important;
  512. }
  513.  
  514. #tumblr_lightbox img {
  515. opacity:0;
  516. }
  517.  
  518. #tumblr_lightbox_caption {
  519. font-weight:normal!important;
  520. text-shadow:none!important;
  521. }
  522.  
  523. #tumblr_lightbox_center_image, #tumblr_lightbox_left_image, #tumblr_lightbox_right_image {
  524. -moz-box-shadow:none!important;
  525. -webkit-box-shadow:none!important;
  526. box-shadow:none!important;
  527. -moz-border-radius:0px!important;
  528. -webkit-border-radius:0px!important;
  529. border-radius:0px!important;
  530. opacity:1!important;
  531. }
  532.  
  533. #tumblr_lightbox_left_image, #tumblr_lightbox_right_image {
  534. opacity:.4!important;
  535. }
  536.  
  537.  
  538.  
  539. /*HEADER*/
  540. #header {
  541. POSITION:absolute;
  542. background:transparent;
  543. z-index:5;
  544. top:20px;
  545. padding:25px 0;
  546. text-align:center;
  547. width:100%;
  548. }
  549.  
  550. .footer{
  551. bottom:0;
  552. }
  553.  
  554. .header{
  555. top:0;
  556. }
  557.  
  558. #blogtitle {
  559. font-family:{TitleFont};
  560. color:{color:slidemenu};
  561. font-size:18px;
  562. font-weight:{TitleFontWeight};
  563. text-align:center;
  564. margin-bottom:5px;
  565. text-transform:uppercase;
  566. -webkit-transition: all 7777777777778s ease;
  567. -moz-transition: all 777777777777778s ease;
  568. -o-transition: all 7777777777778s ease;
  569. -ms-transition: all 777777777777778s ease;
  570. transition: all 7777777777777778s ease;
  571. }
  572.  
  573.  
  574. #blogtitle:hover{
  575. letter-spacing:1px;
  576. word-spacing:10px;
  577. -webkit-transition: all 0.8s ease;
  578. -moz-transition: all 0.8s ease;
  579. -o-transition: all 0.8s ease;
  580. -ms-transition: all 0.8s ease;
  581. transition: all 0.8s ease;
  582. }
  583.  
  584.  
  585. #tag{
  586. margin-top:-5px;
  587. text-transform:uppercase;
  588. font-size:10px;
  589. font-family:'tahoma';
  590. }
  591.  
  592. #description {
  593. width:50%;
  594. margin:1px auto;
  595. border-top:1px solid transparent;
  596. border-bottom:1px solid transparent;
  597. font-style:italic;
  598. padding:14px 0;
  599. color:{color:text};
  600. position:relative!important;
  601. text-transform:lowercase;
  602. }
  603.  
  604. #description:empty,#blogtitle:empty{
  605. border-bottom:none;
  606. }
  607.  
  608.  
  609.  
  610. {block:iffadein}
  611. /*FADE IN ANIMATION*/
  612. @-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  613. @-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  614. @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
  615.  
  616.  
  617. .fade-in {
  618. opacity:0;
  619. -webkit-animation:fadeIn ease-in 1;
  620. -moz-animation:fadeIn ease-in 1;
  621. animation:fadeIn ease-in 1;
  622. -webkit-animation-fill-mode:forwards;
  623. -moz-animation-fill-mode:forwards;
  624. animation-fill-mode:forwards;
  625. -webkit-animation-duration:1s;
  626. -moz-animation-duration:1s; animation-duration:1s; }
  627. .fade-in.one { -webkit-animation-delay: 0.7s; -moz-animation-delay: 0.7s; animation-delay: 0.7s; }
  628. {block:iffadein}
  629.  
  630.  
  631. /*SLIDE MENU*/
  632. .cbp-spmenu {
  633. position: fixed;
  634. }
  635.  
  636. .cbp-spmenu-horizontal {
  637. padding:10px;
  638. margin-left:1000px;
  639. width: 400px;
  640. background:{color:slidemenubg};
  641. border:10px solid #fff;
  642. border-left:{AccentColor};
  643. text-transform:uppercase;
  644. height: 100%;
  645. z-index:1;
  646. }
  647.  
  648.  
  649. .cbp-spmenu-bottom {
  650. right: -700px;
  651. bottom:0;
  652. }
  653.  
  654. .cbp-spmenu-bottom.cbp-spmenu-open {
  655. bottom:0px;
  656. z-index:55555555;
  657. right:0px;
  658. }
  659.  
  660. #pushdescription {
  661. margin-top:50px;
  662. padding:20px;
  663. text-align:center;
  664. margin-bottom:55px;
  665. overflow-y:scroll;
  666. background:{color:slidemenubg};
  667. overflow-x:hidden;
  668. }
  669.  
  670. .toggle a{
  671.  
  672. }
  673.  
  674. .nav a{
  675. color:{color:slidemenu};
  676. text-transform:uppercase;
  677. font-size:10px;
  678. -webkit-transition: all 0.8s ease;
  679. -moz-transition: all 0.8s ease;
  680. -o-transition: all 0.8s ease;
  681. -ms-transition: all 0.8s ease;
  682. transition: all 0.8s ease;
  683. }
  684.  
  685. .nav a:after{
  686. content:';';
  687. }
  688.  
  689.  
  690.  
  691. .nav a:hover{
  692. border:none;
  693. -webkit-transition: all 0.8s ease;
  694. -moz-transition: all 0.8s ease;
  695. -o-transition: all 0.8s ease;
  696. -ms-transition: all 0.8s ease;
  697. transition: all 0.8s ease;
  698. }
  699.  
  700. .ab{
  701. max-height:250px;
  702. overflow-x:hidden;
  703. overflow-y:scroll;
  704. text-transform:lowercase;
  705. }
  706.  
  707. .cbp-spmenu, .cbp-spmenu-push {
  708. -webkit-transition: all 0.8s ease;
  709. -moz-transition: all 0.8s ease;
  710. -o-transition: all 0.8s ease;
  711. -ms-transition: all 0.8s ease;
  712. transition: all 0.8s ease;
  713. }
  714.  
  715. .sfm input {
  716. font-size: 8px;
  717. border: 0px;
  718. text-transform: uppercase;
  719. width:70%;
  720. margin-top: 0px;
  721. text-align:center;
  722. color: {color:slidemenu};
  723. letter-spacing: 1px;
  724. padding: 4px 8px;
  725. }
  726.  
  727. .search .query {
  728. border: 0;
  729. outline: 0;
  730. padding:5px;
  731. letter-spacing:1px;
  732. font-size:8px;
  733. margin:5px;
  734. text-transform:uppercase;
  735. text-align:center;
  736. }
  737.  
  738.  
  739. ::-webkit-input-placeholder {color: inherit;}
  740.  
  741. :-moz-placeholder {color: inherit; opacity:1;}
  742.  
  743. ::-moz-placeholder {color: inherit; opacity:1;}
  744.  
  745. :-ms-input-placeholder {color: inherit;}
  746.  
  747. input:focus::-webkit-input-placeholder {color: transparent;}
  748.  
  749. input:focus:-moz-placeholder {color: transparent;}
  750.  
  751. input:focus::-moz-placeholder {color: transparent;}
  752.  
  753. input:focus:-ms-input-placeholder { color: transparent;}
  754.  
  755.  
  756. .jump_page {
  757. background-color:transparent;
  758. color:gray;
  759. font-family:century gothic;
  760. font-size:8px;
  761. text-decoration:none;
  762. -webkit-transition: all 0.8s ease;
  763. -moz-transition: all 0.8s ease;
  764. -o-transition: all 0.8s ease;
  765. -ms-transition: all 0.8s ease;
  766. transition: all 0.8s ease;
  767. }
  768.  
  769. .current_page {
  770. color: {color:links};
  771. background:transparent;
  772. font-family:century gothic;
  773. font-size:10px;
  774. text-decoration:none;
  775. -webkit-transition: all 0.8s ease;
  776. -moz-transition: all 0.8s ease;
  777. -o-transition: all 0.8s ease;
  778. -ms-transition: all 0.8s ease;
  779. transition: all 0.8s ease;
  780. }
  781.  
  782.  
  783.  
  784. /*CONTAINER*/
  785. #container {position:absolute; width:680px;margin-left:50%;left:-340px; margin-top:90px
  786. }
  787.  
  788.  
  789. /*POSTS*/
  790.  
  791. #entries {
  792. height:80%;
  793. margin:auto;
  794. }
  795.  
  796.  
  797.  
  798.  
  799. .post {
  800. width:250px;
  801. {block:PermalinkPage}
  802. width:400px;
  803. margin-left:50%;
  804. border:15px solid {AccentColor};
  805. {/block:PermalinkPage}
  806. margin-bottom:50px;
  807. background:{color:postbg};
  808. float:left;
  809. margin:25px;
  810. margin-bottom:5px;
  811. border:15px solid transparent;
  812. padding:5px;
  813. -webkit-transition: all 0.8s ease;
  814. -moz-transition: all 0.8s ease;
  815. -o-transition: all 0.8s ease;
  816. -ms-transition: all 0.8s ease;
  817. transition: all 0.8s ease;
  818. }
  819.  
  820. .post img{
  821. {block:tagpage}
  822. width:400px;
  823. {/block:tagpage}
  824. {block:searchpage}
  825. width:400px;
  826. {/block:searchpage}
  827. {block:PermalinkPage}
  828. width:400px;
  829. {/block:PermalinkPage}
  830. }
  831. .post:hover{
  832. {block:indexpage}
  833. border:15px solid {color:slidemenu};
  834. -webkit-transition: all 0.8s ease;
  835. -moz-transition: all 0.8s ease;
  836. -o-transition: all 0.8s ease;
  837. -ms-transition: all 0.8s ease;
  838. transition: all 0.8s ease;
  839. {/block:indexpage}
  840. }
  841.  
  842. .post:hover .tags{
  843. opacity:1;
  844. -webkit-transition: all 0.8s ease;
  845. -moz-transition: all 0.8s ease;
  846. -o-transition: all 0.8s ease;
  847. -ms-transition: all 0.8s ease;
  848. transition: all 0.8s ease;
  849. }
  850.  
  851.  
  852.  
  853. /*TEXT*/
  854. .title {
  855. font-size:14px;
  856. border-left:10px solid {color:slidemenu};
  857. text-align:center;
  858. margin-bottom:15px;
  859. padding:15px;
  860. text-transform:uppercase;
  861. background:{color:slidemenu};
  862. -webkit-transition: all 0.8s ease;
  863. -moz-transition: all 0.8s ease;
  864. -o-transition: all 0.8s ease;
  865. -ms-transition: all 0.8s ease;
  866. transition: all 0.8s ease;
  867. }
  868.  
  869. .title:hover{
  870. box-shadow:inset 400px 0 0 {color:slidemenu};
  871. color:{BackgroundColor}!important;
  872. -webkit-transition: all 0.8s ease;
  873. -moz-transition: all 0.8s ease;
  874. -o-transition: all 0.8s ease;
  875. -ms-transition: all 0.8s ease;
  876. transition: all 0.8s ease;
  877. }
  878.  
  879.  
  880. #text{
  881. padding:15px;
  882. }
  883.  
  884.  
  885. /*QUOTE*/
  886. .quote {
  887. font-style:italic;
  888. font-size:14px;
  889. word-spacing:12px;
  890. text-align:center;
  891. background:#eee;
  892. margin-bottom:15px;
  893. padding:15px;
  894. border-bottom:5px solid {color:slidemenu};
  895. }
  896.  
  897. .source {
  898. font-size:10px;
  899. text-align:right;
  900. text-transform:uppercase;
  901. margin-top:15px;
  902. }
  903.  
  904. .source::before{
  905. content:'----------------------';
  906. Letter-spacing:-5px;
  907. }
  908.  
  909.  
  910. /*CHAT*/
  911.  
  912. .chat ol {
  913. list-style:none;
  914. border-left:5px solid {color:slidemenu};
  915. margin:0;
  916. padding:15px;
  917. }
  918.  
  919. .la{
  920. font-weight:900;
  921. text-transform:uppercase;
  922. display:inline-block;
  923. color:{color:links};
  924. padding:10px;
  925. }
  926.  
  927.  
  928. /*ASKS*/
  929. #askimg{
  930. margin-left:15px;
  931. }
  932.  
  933. #question{
  934. padding:12px;
  935. padding-left:70px;
  936. }
  937.  
  938.  
  939. #asker{
  940. margin-top:-35px;
  941. margin-left:70px;
  942. text-transform:uppercase;
  943. }
  944.  
  945.  
  946.  
  947. /*AUDIOS*/
  948. .audio_info {
  949. margin-top:15px;
  950. font-size:10px;
  951. text-transform:uppercase;
  952. font-weight:bold;
  953. letter-spacing:1px;
  954. }
  955.  
  956. /*CAPTIONS*/
  957. .arrow{
  958. width: 0;
  959. height: 0;
  960. border-left: 15px solid transparent;
  961. border-right: 15px solid transparent;
  962. margin-left:0px;
  963. margin-top:0px;
  964. border-bottom: 15px solid {color:captions};
  965. position:center;
  966. text-align:center;
  967. z-index:55555555;
  968. margin-left:45%;
  969. }
  970.  
  971. .caption {
  972. {block:PermalinkPage}
  973. width:360px;
  974. {/block:PermalinkPage}
  975. padding:20px;
  976. border-left:5px solid {color:postbg};
  977. background:{color:captions};
  978. }
  979.  
  980. /*INFO*/
  981. {block:indexpage}
  982. .permalink {
  983. font-size:10px;
  984. text-align:center;
  985. border-top:1px solid {color:captions};
  986. padding-top:10px;
  987. margin-top:10px;
  988. }
  989. details summary::-webkit-details-marker {
  990. display:none;
  991. }
  992.  
  993. .in,details{
  994. outline:none;
  995. }
  996.  
  997. .in a{
  998. text-transform:uppercase;
  999. text-align:center;
  1000. padding:5px;
  1001. letter-spacing:2px;
  1002. margin-bottom:15px;
  1003. -webkit-transition: all 0.8s ease;
  1004. -moz-transition: all 0.8s ease;
  1005. -o-transition: all 0.8s ease;
  1006. -ms-transition: all 0.8s ease;
  1007. transition: all 0.8s ease;
  1008. }
  1009.  
  1010. .in a:hover{
  1011. color:{color:text};
  1012. -webkit-transition: all 0.8s ease;
  1013. -moz-transition: all 0.8s ease;
  1014. -o-transition: all 0.8s ease;
  1015. -ms-transition: all 0.8s ease;
  1016. transition: all 0.8s ease;
  1017. }
  1018.  
  1019. {/block:indexpage}
  1020.  
  1021. {block:permalinkpage}
  1022.  
  1023. .permalink{
  1024. text-transform:uppercase;
  1025. font-weight:bold;
  1026. text-align:center;
  1027. font-size:10px;
  1028. }
  1029.  
  1030. .permalink a{
  1031. color:{color:text};
  1032. }
  1033. {/block:permalinkpage}
  1034.  
  1035.  
  1036. {block:tagpage}
  1037. .permalink{
  1038. text-transform:uppercase;
  1039. font-weight:bold;
  1040. text-align:center;
  1041. font-size:10px;
  1042. }
  1043.  
  1044. .permalink a{
  1045. color:{color:text};
  1046. }
  1047. {/block:tagpage}
  1048.  
  1049.  
  1050. {block:searchpage}
  1051. .permalink{
  1052. text-transform:uppercase;
  1053. font-weight:300;
  1054. text-align:center;
  1055. font-size:10px;
  1056. }
  1057.  
  1058. .permalink a{
  1059. color:{color:text};
  1060. }
  1061. {/block:searchpage}
  1062.  
  1063. .tags {
  1064. text-align:center;
  1065. text-transform:uppercase;
  1066. margin-top:5px;
  1067. opacity:0;
  1068. -webkit-transition: all 0.8s ease;
  1069. -moz-transition: all 0.8s ease;
  1070. -o-transition: all 0.8s ease;
  1071. -ms-transition: all 0.8s ease;
  1072. transition: all 0.8s ease;
  1073. }
  1074.  
  1075. .tags a {
  1076. margin:0 5px;
  1077. }
  1078.  
  1079. ol.notes {
  1080. width:420px;
  1081. padding:10px;
  1082. margin-left:20px;
  1083. }
  1084.  
  1085. ol.notes li.note {
  1086. padding: 4px;
  1087. display: inline-block;
  1088. }
  1089.  
  1090.  
  1091. ol.notes a{
  1092. border:none;
  1093. }
  1094.  
  1095. ol.notes a:hover{
  1096. border:none;
  1097. }
  1098.  
  1099. ol.notes li.more_notes_link_container {
  1100. display: block;
  1101. font-size:7px;
  1102. text-transform:uppercase;
  1103. margin-top:20px;
  1104. padding:20px;
  1105. background:rgba(255,255,255,0.6);
  1106. }
  1107.  
  1108. ol.notes li.note img.avatar {
  1109. vertical-align: -2px;
  1110. width:auto;
  1111. height:auto;
  1112. border-radius: 100%;
  1113. border:5px solid {color:postbg};
  1114. -webkit-border-radius: 100%;
  1115. -moz-border-radius: 100%;
  1116. }
  1117. ol.notes li.note span.action {
  1118. display: none;
  1119. }
  1120.  
  1121. ol.notes div.clear {
  1122. display: none;
  1123. }
  1124.  
  1125. ol.notes li.note .answer_content {
  1126. display:none;
  1127. }
  1128.  
  1129. ol.notes li.note blockquote {
  1130. display:none;
  1131. }
  1132. ol.notes li.note blockquote a {
  1133. text-decoration: none;
  1134. }
  1135.  
  1136.  
  1137.  
  1138. .soda{
  1139. position:fixed;
  1140. right:30px;
  1141. bottom:22px;
  1142. color:#000;
  1143. text-align:center;
  1144. z-index:9999999999999999999999999999999999999999999999999999999999999;
  1145. transition-duration: 5555s;
  1146. -moz-transition-duration: 5555s;
  1147. -webkit-transition-duration: 5555s;
  1148. -o-transition-duration: 5555s;
  1149. -ms-transition-duration:5555s;
  1150. }
  1151.  
  1152.  
  1153.  
  1154.  
  1155. </style>
  1156.  
  1157. </head>
  1158.  
  1159. <body class="box fade-in one" class="cbp-spmenu-push">
  1160.  
  1161. <div id="tumblrcontrols">
  1162. <a href="https://www.tumblr.com/send/{name}" title="fanmail">
  1163. <i class="fa fa-envelope"></i>
  1164. </a>
  1165.  
  1166. <a href="http://www.tumblr.com/follow/{name}" title="follow">
  1167. <i class="fa fa-plus"></i>
  1168. </a>
  1169.  
  1170. <a href="http://www.tumblr.com/dashboard" title="dashboard">
  1171. <i class="fa fa-home"></i>
  1172. </a>
  1173. </div>
  1174.  
  1175.  
  1176. <div id="top"></div>
  1177. <div id="left"></div>
  1178. <div id="right"></div>
  1179. <div id="bottom"></div>
  1180.  
  1181. <!--HEADER-->
  1182. <div id="header" class="{select:header or footer}">
  1183. <div id="blogtitle">
  1184. <a class="toggle menu-bottom" style="cursor:help;">
  1185. {title}
  1186. <big>
  1187. <i class="fa fa-bars"></i>
  1188. </big>
  1189. </a> <!--glitch: was glissad not title--><!--fixed-->
  1190. </div>
  1191.  
  1192. <div id="description">{block:ShowDescription}{Description}{block:ShowDescription}</div> <!--dont align this causes glitch: border-bottom, dispite :empty styling-->
  1193. <!--fixed-->
  1194. <div id="tag">
  1195. {block:PostSummary}
  1196. {PostSummary}
  1197. {/block:PostSummary}
  1198.  
  1199. {block:TagPage}
  1200. Posts tagged as {Tag}
  1201. {/block:TagPage}
  1202.  
  1203. {block:SearchPage}
  1204. {SearchResultCount} results for {SearchQuery}
  1205. {/block:SearchPage}
  1206. </div>
  1207.  
  1208. {block:ifnotslidemenu}
  1209. <nav class="nav">
  1210. <a href="{text:link one url}">
  1211. {text:link one}
  1212. </a>
  1213. <a href="{text:link two url}">
  1214. {text:link two}
  1215. </a>
  1216. <a href="{text:link three url}">
  1217. {text:link three}
  1218. </a>
  1219. <a href="{text:link four url}">
  1220. {text:link four}
  1221. </a>
  1222. <a href="{text:link five url}">
  1223. {text:link five}
  1224. </a>
  1225. <a href="{text:link six url}">
  1226. {text:link six}
  1227. </a>
  1228. </nav>
  1229. <!--PAGINATION-->
  1230. {block:ifnotinfinitescroll}
  1231. {block:Pagination}
  1232. {block:PreviousPage}
  1233. <a href="{PreviousPage}" class="jump_page">
  1234. <i class="fa fa-angle-double-left"></i>
  1235. </a>
  1236. {/block:PreviousPage}
  1237.  
  1238. {block:JumpPagination length="5"}
  1239. {block:CurrentPage} <span class="current_page"> {PageNumber} </span> {/block:CurrentPage}
  1240.  
  1241. {block:JumpPage}
  1242. <a class="jump_page" href="{URL}">
  1243. {PageNumber} </a> {/block:JumpPage}
  1244. {/block:JumpPagination}
  1245.  
  1246. {block:NextPage}
  1247. <a href="{NextPage}" class="jump_page">
  1248. <i class="fa fa-angle-double-right"></i> </a> {/block:NextPage}
  1249. {/block:Pagination}
  1250. {/block:ifnotinfinitescroll}
  1251. {/block:ifnotslidemenu}
  1252.  
  1253.  
  1254. </div>
  1255.  
  1256.  
  1257. <!--SLIDEOUT-->
  1258. {block:ifslidemenu}
  1259. <nav class="cbp-spmenu cbp-spmenu-horizontal cbp-spmenu-bottom" id="cbp-spmenu-s1">
  1260. <div class="menu">
  1261. <div id="pushdescription">
  1262. <div style="margin-top:150px"></div>
  1263. <a href="/" title="home" style="top:255px">
  1264. <div id="blogtitle">{text:home title}</div>
  1265. </a>
  1266.  
  1267.  
  1268. <!--ASK-->
  1269. {block:askenabled}
  1270.  
  1271. <script type="text/javascript">
  1272. jQuery(document).ready(function() {
  1273. jQuery(".ask").hide();
  1274. //toggle the componenet with class msg_body
  1275. jQuery(".askcl").click(function()
  1276. {
  1277. jQuery(this).next(".ask").slideToggle(500);
  1278. });});
  1279. </script>
  1280.  
  1281. <a class="askcl" style="margin-top:20px">
  1282. <div id="blogtitle"style="margin-top:20px">{text:ask title}</div>
  1283. </a>
  1284.  
  1285.  
  1286. <div class="ask">
  1287. <iframe frameborder="0" scrolling="no" width="100%" height="250px" src="http://www.tumblr.com/ask_form/{name}.tumblr.com" style="background-color:transparent;" id="ask_form"></iframe>
  1288. </div>
  1289. {/block:askenabled}
  1290.  
  1291.  
  1292. <!--ARCHIVE-->
  1293. <script type="text/javascript">
  1294. jQuery(document).ready(function() {
  1295. jQuery(".arc").hide();
  1296. //toggle the componenet with class msg_body
  1297. jQuery(".arccl").click(function()
  1298. {
  1299. jQuery(this).next(".arc").slideToggle(500);
  1300. });});
  1301. </script>
  1302.  
  1303. <a class="arccl" style="margin-top:20px">
  1304. <div id="blogtitle"style="margin-top:20px">{text:archive title}</div>
  1305. </a>
  1306.  
  1307. <div class="arc">
  1308. <iframe src="http://{name}.tumblr.com/archive" height="250" width="500"></iframe>
  1309. </div>
  1310.  
  1311.  
  1312. <!--NAV-->
  1313. <script type="text/javascript">
  1314. jQuery(document).ready(function() {
  1315. jQuery(".nav").hide();
  1316. //toggle the componenet with class msg_body
  1317. jQuery(".navcl").click(function()
  1318. {
  1319. jQuery(this).next(".nav").slideToggle(500);
  1320. });});
  1321. </script>
  1322.  
  1323. <a class="navcl" style="margin-top:20px">
  1324. <div id="blogtitle"style="margin-top:20px">{text:nav title}</div>
  1325. </a>
  1326.  
  1327. <div class="nav">
  1328. <center>
  1329. <a href="{text:link one url}">
  1330. {text:link one}
  1331. </a>
  1332. <a href="{text:link two url}"> {text:link two} </a>
  1333. <a href="{text:link three url}">
  1334. {text:link three}
  1335. </a>
  1336. <a href="{text:link four url}">
  1337. {text:link four}
  1338. </a>
  1339. <a href="{text:link five url}">
  1340. {text:link five} </a>
  1341. <a href="{text:link six url}"> {text:link six} </a>
  1342. </center>
  1343. <br/>
  1344. {block:ifsearchbar}
  1345. <form action="/search" method="get" class="search" name="theform">
  1346. <input type="text" name="q" value="" id="sf" class="query" placeholder="{text:search title}"/>
  1347. </form>
  1348. {/block:ifsearchbar}
  1349. </div>
  1350.  
  1351.  
  1352. <!--ABOUT-->
  1353. <script type="text/javascript">
  1354. jQuery(document).ready(function() {
  1355. jQuery(".ab").hide();
  1356. //toggle the componenet with class msg_body
  1357. jQuery(".abcl").click(function()
  1358. {
  1359. jQuery(this).next(".ab").slideToggle(500);
  1360. });});
  1361. </script>
  1362.  
  1363. <a class="abcl" style="margin-top:20px">
  1364. <div id="blogtitle"style="margin-top:20px">{text:extra title}</div>
  1365. </a>
  1366.  
  1367. <div class="ab">
  1368. {text:extra}
  1369. </div>
  1370.  
  1371. <details style="margin-top:56px">
  1372. <summary> stats</summary>
  1373. {text:stats}
  1374. </details>
  1375.  
  1376.  
  1377. <!--PAGINATION-->
  1378. {block:ifnotinfinitescroll}
  1379. {block:Pagination}
  1380. {block:PreviousPage}
  1381. <a href="{PreviousPage}" class="jump_page">
  1382. <i class="fa fa-angle-double-left"></i>
  1383. </a>
  1384. {/block:PreviousPage}
  1385.  
  1386. {block:JumpPagination length="5"}
  1387. {block:CurrentPage} <span class="current_page"> {PageNumber} </span> {/block:CurrentPage}
  1388.  
  1389. {block:JumpPage}
  1390. <a class="jump_page" href="{URL}">
  1391. {PageNumber} </a> {/block:JumpPage}
  1392. {/block:JumpPagination}
  1393.  
  1394. {block:NextPage}
  1395. <a href="{NextPage}" class="jump_page">
  1396. <i class="fa fa-angle-double-right"></i> </a> {/block:NextPage}
  1397. {/block:Pagination}
  1398. {/block:ifnotinfinitescroll}
  1399. </div>
  1400. </div>
  1401. </nav>
  1402. {block:ifslidemenu}
  1403.  
  1404.  
  1405.  
  1406. <!--CONTAINER-->
  1407. <div id="container" class="{select:text align}">
  1408. <div id="entries" >
  1409. {block:posts}
  1410. {block:ifinfinitescroll}
  1411. <div class = "autopagerize_page_element" >
  1412. {/block:ifinfinitescroll}
  1413.  
  1414. <div class="post">
  1415. {block:quote}
  1416. <div class="quote">
  1417. <i class="fa fa-quote-left fa-3x pull-left fa-border"></i>
  1418. {quote}
  1419.  
  1420. {block:source}
  1421. <div class="source">{source}</div>
  1422. {/block:source}
  1423. </div>
  1424. {/block:quote}
  1425.  
  1426.  
  1427. {block:Text}
  1428. <div id="Text">
  1429. {block:title}
  1430. <div class="title">{title}</div>
  1431. {/block:title}
  1432.  
  1433. {Body}
  1434. </div>
  1435. {/block:Text}
  1436.  
  1437. {block:link}
  1438. <div class="title">
  1439. <a href="{URL}">{Name}</a>
  1440. </div>
  1441.  
  1442. {block:description}
  1443. {description}
  1444. {/block:description}
  1445. {/block:link}
  1446.  
  1447.  
  1448.  
  1449. {block:chat}
  1450. <div class="chat">
  1451. {block:title}
  1452. <div class="title">{title}</div>
  1453. {/block:title}
  1454.  
  1455. {block:lines}
  1456. <ol>
  1457. <li>
  1458. {block:label}
  1459. <div class="la">{label}</div>
  1460. {/block:label}
  1461. {Line}
  1462. </li>
  1463. </ol>
  1464. {/block:lines}
  1465. </div>
  1466. {/block:chat}
  1467.  
  1468.  
  1469.  
  1470. {block:photo}
  1471. {LinkOpenTag}
  1472. <img src="{PhotoURL-250}" alt="{PhotoAlt}"/>
  1473. {LinkCloseTag}
  1474. {/block:photo}
  1475.  
  1476.  
  1477. {block:Photoset}
  1478. <center>
  1479. {Photoset}
  1480. </center>
  1481. {/block:Photoset}
  1482.  
  1483.  
  1484. {block:video}
  1485. {video}
  1486. {/block:video}
  1487.  
  1488.  
  1489. {block:answer}
  1490. <div id="asker">
  1491. <img src="{AskerPortraitURL-48}"/>{asker}:
  1492. </div>
  1493. <div id="question">
  1494. {question}
  1495. </div>
  1496. {answer}
  1497. {/block:answer}
  1498.  
  1499.  
  1500. {block:audio}
  1501. {audioplayerwhite}
  1502. {/block:audio}
  1503.  
  1504.  
  1505. {block:PermalinkPage}
  1506. {block:caption}
  1507. <div class="arrow"></div>
  1508. <div class="caption">
  1509. {caption}
  1510. </div>
  1511. {/block:caption}
  1512.  
  1513. <div class="permalink">
  1514. {block:date}
  1515. <a href="{permalink}" title="{timeago}">
  1516. {12Hour}:{Minutes}{AmPm}//{DayOfMonth} {month} </a>
  1517. <a> +{NoteCountWithLabel} </a>
  1518.  
  1519. {block:RebloggedFrom}
  1520. <a href="{ReblogParentURL}" title="{ReblogParentTitle}">VIA</a>//
  1521. <a href="{ReblogRootURL}" title="{ReblogRootTitle}">SRC</a>
  1522. {/block:RebloggedFrom}
  1523. {block:NotReblog}ORIGINAL{/block:NotReblog}{posttype}
  1524. </div>
  1525.  
  1526. {block:hastags}
  1527. <div class="tags">
  1528. {block:tags}
  1529. <a href="/tagged/{tag}">{tag}; </a>
  1530. {/block:tags}
  1531. </div>
  1532. {/block:hastags}
  1533. {/block:date}
  1534. {/block:PermalinkPage}
  1535.  
  1536. {block:indexpage}
  1537. <details align="center">
  1538. <summary class="in">
  1539. <a> information about {postid}</a>
  1540. </summary>
  1541.  
  1542. <div class="permalink">
  1543. <a href="{permalink}">{timeago} +{NoteCountWithLabel}</a>
  1544.  
  1545. {block:RebloggedFrom}
  1546. <a href="{ReblogParentURL}" title="{ReblogParentTitle}">VIA</a>//
  1547. <a href="{ReblogRootURL}" title="{ReblogRootTitle}">SRC</a>
  1548. {/block:RebloggedFrom}
  1549. {block:NotReblog}ORIGINAL{/block:NotReblog}
  1550. {posttype}
  1551. </div>
  1552.  
  1553. {block:hastags}
  1554. <div class="tags">
  1555. {block:tags}
  1556. <a href="/tagged/{tag}">{tag}/</a>
  1557. {/block:tags}
  1558. </div>
  1559. {/block:hastags}
  1560. {/block:indexpage}
  1561. </div>
  1562. {/block:posts}
  1563.  
  1564. {block:PostNotes}
  1565. <div class="notes">{PostNotes}</div>
  1566. {/block:PostNotes}
  1567. </div>
  1568. </div>
  1569. </div>
  1570.  
  1571.  
  1572. <div class="soda">
  1573. <a href="http://thcmata.tumblr.com" target="_blank">
  1574. THCMATA
  1575. </a>
  1576. </div>
  1577.  
  1578. </body>
  1579. </html>
Add Comment
Please, Sign In to add comment