Advertisement
sweetestgale

amanda

Jul 26th, 2016
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.51 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}
  7. <meta name="description" content="{MetaDescription}" />
  8. {/block:Description}
  9. </head>
  10.  
  11.  
  12.  
  13. <meta name="color:background" content="#">
  14. <meta name="image:background" content="">
  15. <meta name="color:font" content="#fff">
  16. <meta name="color:postback" content="#fff">
  17. <meta name="color:links" content="#fff">
  18. <meta name="color:linkshover" content=#000>
  19. <meta name="color:tags" content=#fff>
  20. <meta name="color:bold" content="#000">
  21. <meta name="color:italics" content="#000">
  22. <meta name="image:tags" content="">
  23. <meta name="color:info" content="#fff">
  24. <meta name="color:otherlinks" content="#a54141">
  25. <meta name="image:popup" content="">
  26.  
  27.  
  28.  
  29.  
  30. <meta name="text:Link 1" content=""/>
  31. <meta name="text:Link 1 URL" content=""/>
  32. <meta name="text:Link 2" content=""/>
  33. <meta name="text:Link 2 URL" content=""/>
  34. <meta name="text:Link 3" content=""/>
  35. <meta name="text:Link 3 URL" content=""/>
  36. <meta name="text:Link 4" content=""/>
  37. <meta name="text:Link 4 URL" content=""/>
  38. <meta name="text:Link 5" content=""/>
  39. <meta name="text:Link 5 URL" content=""/>
  40.  
  41. <link href='https://fonts.googleapis.com/css?family=Fjalla+One' rel='stylesheet' type='text/css'>
  42.  
  43. <link href='https://fonts.googleapis.com/css?family=Roboto+Condensed:400,400italic,700' rel='stylesheet' type='text/css'>
  44.  
  45. <link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro' rel='stylesheet' type='text/css'>
  46.  
  47. <link href='https://fonts.googleapis.com/css?family=Pathway+Gothic+One' rel='stylesheet' type='text/css'>
  48. <link href='https://fonts.googleapis.com/css?family=Oswald' rel='stylesheet' type='text/css'>
  49. <link href='https://fonts.googleapis.com/css?family=PT+Serif' rel='stylesheet' type='text/css'>
  50. <link href='https://fonts.googleapis.com/css?family=Archivo+Narrow' rel='stylesheet' type='text/css'>
  51. <link href='https://fonts.googleapis.com/css?family=Yanone+Kaffeesatz' rel='stylesheet' type='text/css'>
  52. <link href='https://fonts.googleapis.com/css?family=Anton' rel='stylesheet' type='text/css'>
  53. <link href='https://fonts.googleapis.com/css?family=Cabin+Condensed' rel='stylesheet' type='text/css'>
  54. <link href='https://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
  55. <link href='https://fonts.googleapis.com/css?family=Quicksand' rel='stylesheet' type='text/css'>
  56.  
  57. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  58.  
  59. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  60.  
  61. <script>
  62.  
  63. (function($){
  64.  
  65. $(document).ready(function(){
  66.  
  67. $("a[title]").style_my_tooltips({
  68.  
  69. tip_follows_cursor:true,
  70.  
  71. tip_delay_time:90,
  72.  
  73. tip_fade_speed:600,
  74.  
  75. attribute:"title"
  76.  
  77. });
  78.  
  79. });
  80.  
  81. })(jQuery);
  82.  
  83. </script>
  84. <!--basic tooltip from tutorial-baby! Enjoy-->
  85. <style>
  86. .tooltip{
  87. display: inline;
  88. position: relative;
  89. }
  90. #s-m-t-tooltip {
  91. max-width:300px; /*how big the tooltip can be at most*/
  92. border-radius: 0px; /*change your border radius*/
  93. padding:3px 4px 5px 4px; /*padding inside tooltip*/
  94. margin:10px 7px -2px 10px; /*distance from word*/
  95. background-color:#f0f0f0; /*background color*/
  96. border:0px solid #E0E0E0; /*border info*/
  97. font-family:calibri; /*tooltip font*/
  98. font-size:9px; /*tooltip font size*/
  99. letter-spacing:2px; /*tooltip letter spacing*/
  100. text-transform:uppercase; /*makes the tooltip title uppercase*/
  101. color:#000; /*tooltip font color*/
  102. z-index:999999999999999999999999999999999999;
  103. }
  104. </style>
  105.  
  106. <style type="text/css">A:hover{letter-spacing: 2px;}</style>
  107.  
  108.  
  109.  
  110. <script type="text/javascript"
  111. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  112. <script>
  113. $(document).ready(function() {
  114. //
  115. $('a.poplight[href^=#]').click(function() {
  116. var popID = $(this).attr('rel'); //Get Popup Name
  117. var popURL = $(this).attr('href'); //Get Popup href to define size
  118. var query= popURL.split('?');
  119. var dim= query[1].split('&');
  120. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  121. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"><img src="http://s5.postimage.org/ypgcl25pv/close.png" class="btn_close" title="Close Window" alt="Close" style="background-color: transparent; padding: 2px; color:#555;" /></a>');
  122. var popMargTop = ($('#' + popID).height() + 80) / 2;
  123. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  124. //Apply Margin to Popup
  125. $('#' + popID).css({
  126. 'margin-top' : -popMargTop,
  127. 'margin-left' : -popMargLeft
  128. });
  129. $('body').append('<div id="fade"></div>');
  130. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  131. return false;
  132. });
  133. $('a.close, #fade').live('click', function() {
  134. $('#fade , .popup_block').fadeOut(function() {
  135. $('#fade, a.close').remove(); //fade them both out
  136. });
  137. return false;
  138. });
  139. });
  140. </script>
  141. <script>
  142. $(document).ready(function(){
  143.  
  144. $('ul.tabs li').click(function(){
  145. var tab_id = $(this).attr('data-tab');
  146.  
  147. $('ul.tabs li').removeClass('current');
  148. $('.tab-content').removeClass('current');
  149.  
  150. $(this).addClass('current');
  151. $("#"+tab_id).addClass('current');
  152. })
  153.  
  154. })
  155. </script>
  156.  
  157.  
  158. <style type="text/css">
  159.  
  160.  
  161.  
  162. ::selection {
  163. background: #730000;
  164. color: #fff;
  165. }
  166.  
  167. ::-moz-selection {
  168. background: #HEX selection color;
  169. color: #HEX font color;
  170. }
  171.  
  172. ::-webkit-selection {
  173. background: #HEX selection color;
  174. color: #HEX font color;
  175. }
  176.  
  177. #fade {
  178. display: none;
  179. background: #000;
  180. position: fixed;
  181. left: 0;
  182. top: 0;
  183. width: 100%;
  184. height: 100%;
  185. opacity: 0.8;
  186. z-index: 999;}
  187.  
  188. .popup_block{
  189.  
  190. max-height:300px;
  191. overflow-y:scroll;
  192. overflow-x:hidden;
  193. color:#fff;
  194. display:none;
  195. background:#313131;
  196. background-image: url({image:popup});
  197. padding:20px;
  198. border:0px solid #eee;
  199. text-shadow:2px 2px 2px #000;
  200. float:left;
  201. position:fixed;
  202. top:50%;left:50%;
  203. z-index: 99999;
  204. }
  205.  
  206.  
  207. img.btn_close {float: right; margin: -25px -25px 0 0;}
  208.  
  209.  
  210.  
  211. *html #fade {position: absolute;}
  212.  
  213. *html .popup_block {position: absolute;}
  214.  
  215.  
  216. #text1 {
  217.  
  218.  
  219.  
  220. font-family: 'Trebuchet MS', serif;
  221. line-height: 1.6
  222. }
  223. .container{
  224.  
  225.  
  226.  
  227. text-align: right;
  228. top: 200px;
  229. padding: 10px;
  230. }
  231.  
  232.  
  233.  
  234. ul.tabs{
  235. margin: 0px;
  236. padding: 0px;
  237. list-style: none;
  238. text-transform: uppercase;
  239. }
  240. ul.tabs li{
  241. background: none;
  242. color: #;
  243. display: inline-block;
  244. padding: 10px 15px;
  245. cursor: pointer;
  246. }
  247.  
  248. ul.tabs li.current{
  249. background: #000;
  250. color: #;
  251. }
  252.  
  253. .tab-content{
  254. display: none;
  255. background: #;
  256. padding: 15px;
  257. width: 300px;
  258. margin: 0 auto;
  259. height: 250px;
  260. padding:10px;
  261. font: 9px arial;
  262. color:#fff;
  263. letter-spacing:1px;
  264. text-align:justify;
  265.  
  266. }
  267.  
  268. .tab-content.current{
  269. display: inherit;
  270. }
  271.  
  272. #popupimage img{
  273.  
  274. background-image:{image:popup};
  275. width: 250px;
  276. }
  277.  
  278. #askblock {
  279. width:250px;
  280.  
  281. padding:10px;
  282. font: 9px arial;
  283. height: 250px;
  284. color:#555;
  285. letter-spacing:1px;
  286. text-align:right;
  287. }
  288.  
  289.  
  290. .title {
  291. font: oblique bold 25px arial;
  292. letter-spacing:2px;
  293. color:#333;
  294. text-align:center;
  295. margin-top:-10px;
  296. font-family: 'Archivo Narrow', sans-serif;
  297.  
  298. position:fixed;
  299. }
  300.  
  301. #nav {
  302. width:250px;
  303. background:#;
  304. padding:10px;
  305. height: 250px;
  306. margin-top: 10px;
  307. text-align:justify;
  308.  
  309. }
  310.  
  311. #nav a{
  312. text-decoration:none;
  313. font: 9px arial;
  314. color:#fff;
  315. letter-spacing:1px;
  316. display:inline-block;
  317. text-align:center;
  318. background:#202020;
  319. top: 20px;
  320. padding: 2px;
  321. width:50px;
  322. margin:5px;
  323. -webkit-transition:all 0.7s ease-in-out;
  324. -moz-transition:all 0.7s ease-in-out;
  325. -o-transition:all 0.7s ease-in-out;
  326. transition:all 0.7s ease-in-out;}
  327.  
  328. #nav a:hover{background:#111;color:#fff;}
  329.  
  330.  
  331.  
  332.  
  333.  
  334.  
  335. #text2 {
  336. width:250px;
  337. background:#;
  338. padding:10px;
  339. height: 300px;
  340. margin-top: 10px;
  341. text-align:justify;
  342. padding-bottom: 10px;
  343.  
  344. }
  345.  
  346. #text2 a {
  347. color:{color:otherlinks};
  348. }
  349.  
  350.  
  351.  
  352. #text3 {
  353. width:250px;
  354. background:#;
  355. padding:10px;
  356. height: 300px;
  357. margin-top: 10px;
  358. text-align:justify;
  359. padding-bottom: 10px;
  360.  
  361. }
  362.  
  363.  
  364. body {
  365. background-image: url({image:Background});
  366.  
  367. font-family: 'Source Sans Pro', sans-serif;
  368. font-size: 8px;
  369. color: {color:font};
  370. background-position: top left;
  371. background-repeat: no-repeat;
  372. background-attachment: fixed;
  373. }
  374.  
  375. a {
  376. text-decoration: none;
  377. color: {color:links};
  378. font-family: 'Cabin Condensed', sans-serif;
  379. text-transform: uppercase;
  380. font-weight: bold;
  381. font-size: 8px;
  382. letter-spacing: .5px;
  383. -webkit-transition: all 0.7s ease;
  384. -moz-transition: all 0.7s ease;
  385. -o-transition: all 0.7s ease;
  386. }
  387.  
  388. a:hover {
  389. color: {color:linkshover};
  390. color: transparent;
  391.  
  392. text-shadow: #000 0 0 5px;
  393.  
  394. text-decoration:none;
  395.  
  396.  
  397. }
  398.  
  399. small, sub, sup {
  400. font-size: 9.5px;
  401. }
  402.  
  403. border: 10px solid #fff;
  404.  
  405.  
  406. img {
  407. max-width: 100%;
  408. }
  409.  
  410. blockquote {
  411. border-left: 3px solid #f0f0f0;
  412. margin-left: 6px;
  413. padding-left: 10px;
  414. }
  415.  
  416. blockquote img {
  417. MAX-WIDTH:100%;
  418. HEIGHT:AUTO;
  419. }
  420.  
  421. li {
  422. list-style-type: square;
  423. padding-bottom: 10px;
  424.  
  425. }
  426.  
  427. b, strong {
  428. color: {color:bold};
  429. font-family: 'Quicksand', sans-serif;
  430. font-size: 10px;
  431. font-weight: bold;
  432. text-shadow: 0 0 0.3em #3c3c3c;
  433. text-transform: uppercase;
  434. }
  435.  
  436.  
  437. i, em {
  438. color: {color:italics};
  439. font-family: 'Quicksand', sans-serif;
  440. font-weight: italic;
  441. font-size: 10px;
  442. text-shadow: 0 0 0.3em #3c3c3c;
  443. text-transform: none;
  444. letter-spacing: 1px;
  445. }
  446.  
  447. h1 {
  448. font-size:10px;
  449. line-height:30px;
  450. text-align:center;
  451. text-transform: uppercase;
  452. padding:10px;
  453. font-family: 'Abel', sans-serif;
  454.  
  455. }
  456.  
  457.  
  458. h2 {
  459. font-size:12px;
  460. text-align:center;
  461. line-height:100%;
  462. letter-spacing:-0.5px;
  463. color:#868686;
  464. font-weight:bold;
  465. text-transform:uppercase;
  466. font-family: 'Abel', sans-serif;
  467. padding:5px;
  468. padding-bottom:2px;
  469. letter-spacing: 1px;
  470. }
  471.  
  472. h3 {
  473. font-size:15px;
  474. text-align:left;
  475. line-height:100%;
  476. letter-spacing:-0.5px;
  477. color:{color:title};
  478. font-weight:bold;
  479. text-transform:uppercase;
  480. padding:5px;
  481. padding-bottom:2px;
  482. }
  483.  
  484.  
  485.  
  486.  
  487. /* For the "inset" look only */
  488. html {
  489. overflow: auto;
  490. }
  491. body {
  492. position: absolute;
  493. top: 20px;
  494. left: 20px;
  495. bottom: 20px;
  496. right: 20px;
  497. padding: 30px;
  498. overflow-y: scroll;
  499. overflow-x: hidden;
  500. }
  501.  
  502. /*basic*/
  503.  
  504. ::-webkit-scrollbar-thumb:vertical {
  505.  
  506. border: 1px solid#fff;
  507. background-color: ;
  508.  
  509. }
  510.  
  511. ::-webkit-scrollbar {
  512.  
  513. width: 1px;
  514.  
  515. }
  516.  
  517.  
  518. .posts {
  519. width: 250px;
  520. padding: 10px;
  521. padding-bottom: 10px;
  522. background: ;
  523. margin-bottom: 30px;
  524.  
  525.  
  526.  
  527.  
  528.  
  529. }
  530.  
  531.  
  532.  
  533.  
  534. #container {
  535. position: absolute;
  536. left: 760px;
  537. margin-top:20px;
  538. HEIGHT:400px;
  539. OVERFLOW-Y:SCROLL;
  540. padding: 10px;
  541.  
  542.  
  543.  
  544. }
  545.  
  546. #sidebar {
  547. position:fixed;
  548. left:0px;
  549. top:0px;
  550. height:100%;
  551. width:270px;
  552. background:#000;
  553. border: solid 1px #000;
  554. color: #fff;
  555. padding: 5px;
  556. text-align: center;
  557.  
  558.  
  559. }
  560.  
  561. #title {
  562. display: none;
  563. }
  564.  
  565. #description {
  566. font-size:10px;
  567. color:#fff;
  568. text-align: left;
  569. left:452px;
  570. top:350px;
  571. position:fixed;
  572. width: 140px;
  573. padding:10px;
  574. height:200px;
  575. OVERFLOW-Y:SCROLL;
  576. padding: 10px;
  577.  
  578. }
  579.  
  580.  
  581.  
  582. .links {
  583. font-size: 10px;
  584. padding: 10px;
  585. position: absolute;
  586. left: 730px;
  587. top:400px;
  588. color: {color:otherlinks};
  589. line-height: 250%;
  590. word-spacing: 10px;
  591. }
  592.  
  593. .links a {
  594. color: {color:otherlinks};
  595. display:inline-block;
  596. -webkit-transition: all 0.7s ease;
  597. -moz-transition: all 0.7s ease;
  598. -o-transition: all 0.7s ease;
  599. }
  600.  
  601. .links a:hover {
  602. color: {color:linkshover};
  603.  
  604. }
  605.  
  606. ol.notes {
  607. padding: 0px;
  608. margin: 25px 0px;
  609. list-style-type: none;
  610. border-bottom: solid 1px #ccc;
  611. }
  612.  
  613. ol.notes li.note {
  614. border-top: solid 1px #ccc;
  615. padding: 10px;
  616. }
  617.  
  618. ol.notes li.note img.avatar {
  619. vertical-align: -4px;
  620. margin-right: 10px;
  621. width: 16px;
  622. height: 16px;
  623. }
  624.  
  625. ol.notes li.note span.action {
  626. font-weight: bold;
  627. }
  628.  
  629. ol.notes li.note .answer_content {
  630. font-weight: normal;
  631. }
  632.  
  633. ol.notes li.note blockquote {
  634. border-color: #eee;
  635. padding: 4px 10px;
  636. margin: 10px 0px 0px 25px;
  637. }
  638.  
  639. ol.notes li.note blockquote a {
  640. text-decoration: none;
  641. }
  642.  
  643. /* Chat Posts */
  644. .format-chat .entry-content p{
  645. background: #e0f1f3; /* The background color of first paragraph */
  646. border-left: 7px solid #2ba6cb; /* The setting for border of first paragraph */
  647. margin-bottom: 2px;
  648. padding-left: 13px;
  649. }
  650. .format-chat .entry-content p:nth-child(odd) {
  651. background: #e9e9e9; /* The background color of next paragraph */
  652. border-left-color: #5da423; /* The setting for border of next paragraph */
  653. }
  654.  
  655. #pagination {
  656. position:fixed;
  657. bottom:120px;
  658. left:920px;
  659. }
  660.  
  661. #pagination a {
  662. color:#fff;
  663. font-size:10px;
  664. -webkit-transition: all 0.7s ease;
  665. -moz-transition: all 0.7s ease;
  666. -o-transition: all 0.7s ease;
  667. }
  668.  
  669. #pagination a:hover {
  670. color:#000;
  671. }
  672.  
  673.  
  674. #permalink {
  675.  
  676. text-align: center;
  677. font-size: 8px;
  678. text-decoration: none;
  679. font-family: 'Roboto Condensed', sans-serif;
  680. background-image: url({image:tags});
  681. border: 1px; border-color: #f0f0f0;
  682. border-style: solid;
  683. padding: 15px;
  684. background-color:#;
  685. height:15px;
  686. letter-spacing: 2px;
  687. position: relative;
  688.  
  689. }
  690.  
  691. #permalink a {
  692. color: {color:info};
  693. text-align: center;
  694.  
  695. }
  696.  
  697.  
  698. #permalink a:hover {
  699.  
  700. color: {color:linkshover};
  701. }
  702.  
  703.  
  704. .tags {
  705. text-align: center;
  706. font-family: 'Roboto Condensed', sans-serif;
  707. font-size: 8px;
  708. padding: 5px;
  709.  
  710. }
  711.  
  712. .tags a {
  713. color: {color:tags};
  714. }
  715.  
  716. .tags a:hover {
  717. color: {color:linkshover};
  718.  
  719. }
  720.  
  721.  
  722. .date {
  723. text-align: center;
  724. color: #fff;
  725. }
  726.  
  727. .date a {
  728. text-align: center;
  729. }
  730.  
  731. .reblogs {
  732.  
  733. text-align: center;
  734. }
  735.  
  736.  
  737.  
  738. .asker {
  739. font-size:15px;
  740. font-style: italic;
  741. text-align:center;
  742. border-bottom:1px solid #eee;
  743. margin-bottom:5px;
  744. padding-bottom:3px;
  745.  
  746. }
  747.  
  748. .question {
  749. font-style: italic;
  750. padding-left:50px;
  751. padding-right:50px;
  752. }
  753.  
  754.  
  755. .quote {
  756. font-size:13px;
  757. letter-spacing:1px;
  758. text-align:center;
  759. font-family: 'Pathway Gothic One', sans-serif;
  760. margin-bottom:5px;
  761. padding-bottom:3px;
  762. }
  763.  
  764. .quotesource {
  765. font-size:10px;
  766. letter-spacing:1px;
  767. text-align:center;
  768. border-bottom:1px solid #eee;
  769. margin-bottom:5px;
  770.  
  771. }
  772.  
  773. #credit {
  774.  
  775. bottom:125px;
  776. right:150px;
  777. height:30px;
  778. width:30px;
  779. font-family: 'Oswald', sans-serif;
  780. position:absolute;
  781. padding:5px;
  782. color: white;
  783. font-size:15px;
  784. }
  785.  
  786. </style>
  787.  
  788.  
  789. <body>
  790. <div id="title"><h1>{Title}</h1></div>
  791.  
  792.  
  793.  
  794.  
  795.  
  796. {block:sidebar}<p id="sidebar"></p>{/block:sidebar}
  797.  
  798. {block:Description}
  799. <div id="description"><p><center>
  800.  
  801.  
  802.  
  803. </div> <div class="links">
  804. <a href="{text:Link 1 URL}" title="home">.01</a><br>
  805. <a href="#?w=440" rel="01" class="poplight" title="ask">.02</a><br>
  806. <a href="#?w=440" rel="03" class="poplight" title="about">.03</a><br>
  807. </div>
  808. </div>
  809. {/block:Description}
  810.  
  811.  
  812.  
  813. <div id="pagination">{block:Pagination}
  814. {block:PreviousPage}<a href="{PreviousPage}">prev</a>{/block:PreviousPage} {block:NextPage}<a href="{NextPage}">next</a>
  815. {/block:NextPage}
  816. {/block:Pagination}</div>
  817.  
  818. <div id="container">
  819. {block:Posts}<div class="posts">
  820.  
  821.  
  822. {block:Text}{block:Title}<h3>{Title}</h3>{/block:Title}{Body}{/block:Text}
  823.  
  824. {block:Photo}<img src="{PhotoURL-250}" alt="{PhotoAlt}"/>{block:Caption}
  825. <div class="caption">{Caption}</div>
  826. {/block:Caption}{/block:Photo}
  827.  
  828. {block:Panorama}{LinkOpenTag}<img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Panorama}
  829.  
  830. {block:Photoset}{Photoset-250}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  831.  
  832. {block:Quote}<div class="quote">"{Quote}"<br>{block:Source}{Source}{/block:Source}</div>{/block:Quote}
  833.  
  834. {block:Link}<a href="{URL}" class="link" {Target}>{Name}</a>{block:Description}{Description}{/block:Description}{/block:Link}
  835.  
  836. {block:Chat}{block:Title}<h1>{Title}</h1></a>{/block:Title}
  837. {block:Lines}<li>{block:Label}{Label}{/block:Label}{Line}</li>{/block:Lines}{/block:Chat}
  838.  
  839. {block:Video}{Video-250}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  840.  
  841. {block:Audio}{AudioEmbed}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  842.  
  843. {block:Answer}
  844. <div class="asker">{Asker} asked</div>
  845. <div class="question">{Question}</div>
  846. {Answer}
  847. {/block:Answer}
  848.  
  849. <div id="permalink"><div class="date"><a href="{permalink}">{block:Date}<a href="{permalink}" title="{TimeAgo}">&#10006;</a> {/block:Date}</a><a href="{Permalink}" title="{NoteCountWithLabel}">&#10006; </a>{/block:NoteCount}</a>{block:RebloggedFrom}<a href="{Permalink}"><a title="{ReblogParentName}" href="{ReblogParentURL}">&#10006;</a> {/block:RebloggedFrom}{block:ContentSource} <a title="{SourceTitle}"href="{SourceURL}">&#10006;</a>{/block:ContentSource} {/block:RebloggedFrom}
  850. <a href="{ReblogURL}" title="reblog">reblog</a></div></div>
  851.  
  852.  
  853. <div class="tags">{block:HasTags}
  854. <ul class="tags">
  855. {block:Tags}
  856.  
  857. <a href="{TagURL}">#{Tag}</a>
  858.  
  859. {/block:Tags}
  860. </ul>
  861. {/block:HasTags}</div>
  862. {block:PostNotes}{PostNotes} {/block:PostNotes}
  863.  
  864.  
  865. </div>
  866.  
  867. {/block:Posts}
  868.  
  869.  
  870.  
  871. </div>
  872.  
  873.  
  874.  
  875. {block:ContentSource}
  876. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  877. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  878. {/block:SourceLogo}
  879. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  880. {/block:ContentSource}
  881.  
  882.  
  883.  
  884.  
  885. </body>
  886.  
  887. <div id="01" class="popup_block"><div id="askblock">
  888. <p><iframe frameborder="0" height="250" id="ask_form" scrolling="no" titlle="ask away" src="http://www.tumblr.com/ask_form/thcwxll.tumblr.com" width="100%"></iframe></p>
  889. </div></div></div></div></div></div></div></div></div></div></div></div>
  890.  
  891.  
  892.  
  893. <div id="03" class="popup_block"><div class="text1" div class="container">
  894.  
  895. <ul class="tabs">
  896. <li class="tab-link current" data-tab="tab-1">rules</li>
  897. <li class="tab-link" data-tab="tab-2">about</li>
  898. <li class="tab-link" data-tab="tab-3">links</li>
  899. <li class="tab-link" data-tab="tab-4">credit</li>
  900. </ul>
  901.  
  902. <div id="tab-1" class="tab-content current">
  903.  
  904. <p><h1>Independent Amanda Waller</h1></p>
  905.  
  906. <p><span style="line-height: 19.6px;">Standard rp rules apply.</span></p>
  907. <p>Selective. I do not necessarily rp with everyone who responds to my opens.</p>
  908. <p>Semi-private. Starter calls are for mutuals only. Opens and memes are for all.</p>
  909. <p>Mun and muse are 21+. There may be mature and triggering content, tagged as appropriate.</p>
  910. <p>My personal triggers are daddy kink and suicide. I unfollow for untagged posts.</p>
  911. <p>I am not interested in rping with genderbent characters.</p>
  912. <p>Established April 2016.</p>
  913.  
  914. </div>
  915.  
  916.  
  917. <div id="tab-2" class="tab-content">
  918. <p>Amanda &ldquo;The Wall&rdquo; Waller. Runs the Suicide Squad.&nbsp;</p>
  919. <p>FC: Viola Davis (DCEU), Octavia Spencer (alt/pre-52)</p>
  920. </div>
  921.  
  922.  
  923.  
  924. <div id="tab-3" class="tab-content">
  925.  
  926. <div id="nav">
  927.  
  928. <a href="/rules">rules</a>
  929. <a href="/rules">about</a>
  930. </div>
  931. </div>
  932.  
  933.  
  934. <div id="tab-4" class="tab-content">
  935. <p>Theme code is my creation. All graphics are mine.</p>
  936. </div>
  937. </div>
  938. </div><!-- container --></div>
  939.  
  940.  
  941.  
  942.  
  943.  
  944.  
  945. </html>
  946.  
  947.  
  948.  
  949.  
  950.  
  951. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement