Advertisement
artiecore

peter steele 11 inch cock

Mar 21st, 2020
1,242
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.84 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3.  
  4. <!-----
  5.  
  6. ♡ peter steele theme by boyfriended ♡
  7.  
  8. cat im a kitty cat
  9.  
  10. basecode by animecharacter
  11.  
  12. ----->
  13.  
  14. {block:ifmousecircle}
  15. <style type="text/css">
  16.  
  17. /* Circle Text Styles */
  18.  
  19. #outerCircleText {
  20.  
  21. /* Optional - DO NOT SET FONT-SIZE HERE, SET IT IN THE SCRIPT */
  22.  
  23. font-style: italic;
  24.  
  25. font-family: arial;
  26.  
  27. color: #000;
  28.  
  29. /* End Optional */
  30.  
  31.  
  32.  
  33. /* Start Required - Do Not Edit */
  34.  
  35. position: absolute;top: 0;left: 0;z-index: 3000;cursor: default;}
  36.  
  37. #outerCircleText div {position: relative;}
  38.  
  39. #outerCircleText div div {position: absolute;top: 0;left: 0;text-align: center;}
  40.  
  41. /* End Required */
  42.  
  43. /* End Circle Text Styles */
  44.  
  45. </style>
  46.  
  47. <script type="text/javascript">
  48.  
  49.  
  50.  
  51. /* Circling text trail- Tim Tilton
  52.  
  53. Website: http://www.tempermedia.com/
  54.  
  55. Visit: http://www.dynamicdrive.com/ for Original Source and tons of scripts
  56.  
  57. Modified Here for more flexibility and modern browser support
  58.  
  59. Modifications as first seen in http://www.dynamicdrive.com/forums/
  60.  
  61. username:jscheuer1 - This notice must remain for legal use
  62.  
  63. */
  64.  
  65.  
  66.  
  67. ;(function(){
  68.  
  69.  
  70.  
  71. // Your message here (QUOTED STRING)
  72.  
  73. var msg = "{text:circle txt}";
  74.  
  75.  
  76.  
  77. /* THE REST OF THE EDITABLE VALUES BELOW ARE ALL UNQUOTED NUMBERS */
  78.  
  79.  
  80.  
  81. // Set font's style size for calculating dimensions
  82.  
  83. // Set to number of desired pixels font size (decimal and negative numbers not allowed)
  84.  
  85. var size = 12;
  86.  
  87.  
  88.  
  89. // Set both to 1 for plain circle, set one of them to 2 for oval
  90.  
  91. // Other numbers & decimals can have interesting effects, keep these low (0 to 3)
  92.  
  93. var circleY = 0.75; var circleX = 2;
  94.  
  95.  
  96.  
  97. // The larger this divisor, the smaller the spaces between letters
  98.  
  99. // (decimals allowed, not negative numbers)
  100.  
  101. var letter_spacing = 5;
  102.  
  103.  
  104.  
  105. // The larger this multiplier, the bigger the circle/oval
  106.  
  107. // (decimals allowed, not negative numbers, some rounding is applied)
  108.  
  109. var diameter = 10;
  110.  
  111.  
  112.  
  113. // Rotation speed, set it negative if you want it to spin clockwise (decimals allowed)
  114.  
  115. var rotation = 0.4;
  116.  
  117.  
  118.  
  119. // This is not the rotation speed, its the reaction speed, keep low!
  120.  
  121. // Set this to 1 or a decimal less than one (decimals allowed, not negative numbers)
  122.  
  123. var speed = 0.3;
  124.  
  125.  
  126.  
  127. ////////////////////// Stop Editing //////////////////////
  128.  
  129.  
  130.  
  131. if (!window.addEventListener && !window.attachEvent || !document.createElement) return;
  132.  
  133.  
  134.  
  135. msg = msg.split('');
  136.  
  137. var n = msg.length - 1, a = Math.round(size * diameter * 0.208333), currStep = 20,
  138.  
  139. ymouse = a * circleY + 20, xmouse = a * circleX + 20, y = [], x = [], Y = [], X = [],
  140.  
  141. o = document.createElement('div'), oi = document.createElement('div'),
  142.  
  143. b = document.compatMode && document.compatMode != "BackCompat"? document.documentElement : document.body,
  144.  
  145.  
  146.  
  147. mouse = function(e){
  148.  
  149. e = e || window.event;
  150.  
  151. ymouse = !isNaN(e.pageY)? e.pageY : e.clientY; // y-position
  152.  
  153. xmouse = !isNaN(e.pageX)? e.pageX : e.clientX; // x-position
  154.  
  155. },
  156.  
  157.  
  158.  
  159. makecircle = function(){ // rotation/positioning
  160.  
  161. if(init.nopy){
  162.  
  163. o.style.top = (b || document.body).scrollTop + 'px';
  164.  
  165. o.style.left = (b || document.body).scrollLeft + 'px';
  166.  
  167. };
  168.  
  169. currStep -= rotation;
  170.  
  171. for (var d, i = n; i > -1; --i){ // makes the circle
  172.  
  173. d = document.getElementById('iemsg' + i).style;
  174.  
  175. d.top = Math.round(y[i] + a * Math.sin((currStep + i) / letter_spacing) * circleY - 15) + 'px';
  176.  
  177. d.left = Math.round(x[i] + a * Math.cos((currStep + i) / letter_spacing) * circleX) + 'px';
  178.  
  179. };
  180.  
  181. },
  182.  
  183.  
  184.  
  185. drag = function(){ // makes the resistance
  186.  
  187. y[0] = Y[0] += (ymouse - Y[0]) * speed;
  188.  
  189. x[0] = X[0] += (xmouse - 20 - X[0]) * speed;
  190.  
  191. for (var i = n; i > 0; --i){
  192.  
  193. y[i] = Y[i] += (y[i-1] - Y[i]) * speed;
  194.  
  195. x[i] = X[i] += (x[i-1] - X[i]) * speed;
  196.  
  197. };
  198.  
  199. makecircle();
  200.  
  201. },
  202.  
  203.  
  204.  
  205. init = function(){ // appends message divs, & sets initial values for positioning arrays
  206.  
  207. if(!isNaN(window.pageYOffset)){
  208.  
  209. ymouse += window.pageYOffset;
  210.  
  211. xmouse += window.pageXOffset;
  212.  
  213. } else init.nopy = true;
  214.  
  215. for (var d, i = n; i > -1; --i){
  216.  
  217. d = document.createElement('div'); d.id = 'iemsg' + i;
  218.  
  219. d.style.height = d.style.width = a + 'px';
  220.  
  221. d.appendChild(document.createTextNode(msg[i]));
  222.  
  223. oi.appendChild(d); y[i] = x[i] = Y[i] = X[i] = 0;
  224.  
  225. };
  226.  
  227. o.appendChild(oi); document.body.appendChild(o);
  228.  
  229. setInterval(drag, 25);
  230.  
  231. },
  232.  
  233.  
  234.  
  235. ascroll = function(){
  236.  
  237. ymouse += window.pageYOffset;
  238.  
  239. xmouse += window.pageXOffset;
  240.  
  241. window.removeEventListener('scroll', ascroll, false);
  242.  
  243. };
  244.  
  245.  
  246.  
  247. o.id = 'outerCircleText'; o.style.fontSize = size + 'px';
  248.  
  249.  
  250.  
  251. if (window.addEventListener){
  252.  
  253. window.addEventListener('load', init, false);
  254.  
  255. document.addEventListener('mouseover', mouse, false);
  256.  
  257. document.addEventListener('mousemove', mouse, false);
  258.  
  259. if (/Apple/.test(navigator.vendor))
  260.  
  261. window.addEventListener('scroll', ascroll, false);
  262.  
  263. }
  264.  
  265. else if (window.attachEvent){
  266.  
  267. window.attachEvent('onload', init);
  268.  
  269. document.attachEvent('onmousemove', mouse);
  270.  
  271. };
  272.  
  273.  
  274.  
  275. })();
  276.  
  277.  
  278.  
  279. </script>
  280. {/block:ifmousecircle}
  281.  
  282.  
  283.  
  284.  
  285. <html>
  286.  
  287. <link href="https://fonts.googleapis.com/css?family=Short+Stack&display=swap" rel="stylesheet">
  288. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script><script src="https://static.tumblr.com/rtrqcib/VGGnlh8rf/jquery.style-my-tooltips.min.js"></script><script>(function($){$(document).ready(function(){$("a[title]").style_my_tooltips({tip_follows_cursor:true,tip_delay_time:0,tip_fade_speed:0,attribute:"title"});});})(jQuery);</script>
  289.  
  290. <title>{Title}</title>
  291.  
  292. <link rel="shortcut icon" href="{image:favicon}">
  293. <link rel="alternate" type="application/rss+xml" href="{rss}">
  294.  
  295. <meta name="color:background" content="#ffffff"/>
  296. <meta name="color:posts" content="ffffff"/>
  297. <meta name="color:sidebar" content="ffffff"/>
  298. <meta name="color:container" content="ffffff"/>
  299. <meta name="color:border" content="#000">
  300. <meta name="color:glow" content="#6d6d6d">
  301. <meta name="color:text" content="#000"/>
  302. <meta name="color:link" content="#6d6d6d"/>
  303. <meta name="color:link hover" content="#000"/>
  304. <meta name="color:text glow" content="#6d6d6d"/>
  305. <meta name="color:link glow" content="#6d6d6d"/
  306. <meta name="color:selection bg" content="#fff"/>
  307. <meta name="color:selection text" content="#fff"/>
  308. <meta name="color:tooltip" content="#ffffff"/>
  309. <meta name="color:tooltip text" content="#6d6d6d"/>
  310.  
  311. <meta name="image:sidebar" content=""/>
  312. <meta name="image:background" content="" />
  313. <meta name="image:container" content="">
  314. <meta name="image:favicon" content="">
  315.  
  316. <meta name="if:redirect" content=""/>
  317. <meta name="if:cover bg" content=""/>
  318. <meta name="if:post border" content="" />
  319. <meta name="if:container border" content="" />
  320. <meta name="if:container glow" content="" />
  321. <meta name="if:post glow" content="" />
  322. <meta name="if:glow links" content="" />
  323. <meta name="if:glow text" content="" />
  324. <meta name="if:sidebar glow" content="" />
  325. <meta name="if:sidebar border" content="" />
  326. <meta name="if:title" content="" />
  327. <meta name="if:mouse circle" content="" />
  328.  
  329.  
  330. <meta name="text:font size" content="12px">
  331. <meta name="text:sidebarhover" content="<3">
  332. <meta name="text:description" content=""/>
  333. <meta name="text:redirect" content=""/>
  334. <meta name="text:link divider" content="/"/>
  335. <meta name="text:border size" content="3px" />
  336. <meta name="text:title" content="what in the goddamn." />
  337. <meta name="text:circle txt" content="wheeeeeeeeee" />
  338.  
  339. <meta name="text:link one" content="one">
  340. <meta name="text:link one url" content="/">
  341. <meta name="text:link two" content="two">
  342. <meta name="text:link two url" content="/">
  343. <meta name="text:link three" content="three">
  344. <meta name="text:link three url" content="/">
  345.  
  346. <meta name="select:font" content="arial">
  347. <meta name="select:font" content="georgia">
  348. <meta name="select:font" content="times new roman">
  349. <meta name="select:font" content="ms gothic"/>
  350. <meta name="select:font" content="comic sans ms">
  351. <meta name="select:font" content="verdana">
  352. <meta name="select:font" content="courier">
  353. <meta name="select:font" content="short stack"/>
  354. <meta name="select:font" content="comic sans ms">
  355.  
  356.  
  357. <meta name="select:border type" content="solid" />
  358. <meta name="select:border type" content="double" />
  359. <meta name="select:border type" content="dashed" />
  360. <meta name="select:border type" content="dotted" />
  361. <meta name="select:border type" content="outset">
  362. <meta name="select:border type" content="inset">
  363.  
  364. {block:ifredirect}
  365. {block:IndexPage}<script type="text/javascript">
  366. var url = location.href;
  367. if (url == "{BlogURL}") {
  368. window.location = "{BlogURL}tagged/{text:redirect}";
  369. }
  370. </script>{/block:IndexPage}
  371. {/block:ifredirect}
  372.  
  373.  
  374.  
  375. <script src="https://static.tumblr.com/qxrkgx6/LuRmgn2rm/modernizr-2.6.2.min.js"></script>
  376.  
  377. <style type="text/css">
  378.  
  379. ::-webkit-scrollbar {
  380. width: 16px;
  381. height: 10px;
  382. }
  383. ::-webkit-scrollbar-thumb {
  384. background-color: #fff;
  385. background-image: url(https://i.imgur.com/Qtm9Z60.png);
  386. border-top: 1px solid #bdbdbd;
  387. border-left: 1px solid #bdbdbd;
  388. border-right: 1px solid black;
  389. border-bottom: 1px solid black;
  390. }
  391. ::-webkit-scrollbar-track {
  392. background-color: #fff;
  393. background-image: url(https://i.imgur.com/IGXGYKz.png);
  394. }
  395. ::-webkit-scrollbar-button:vertical:increment {
  396. background-image: url(https://i.imgur.com/WhC8iy3.png);
  397. width: 14px;
  398. height: 16px;
  399. border-top: 1px solid #bdbdbd;
  400. border-left: 1px solid #bdbdbd;
  401. border-right: 1px solid black;
  402. border-bottom: 1px solid black;
  403. }
  404. ::-webkit-scrollbar-button:vertical:decrement {
  405. background-image: url(https://i.imgur.com/fQ18mrR.png);
  406. border-top: 1px solid #bdbdbd;
  407. border-left: 1px solid #bdbdbd;
  408. border-right: 1px solid black;
  409. border-bottom: 1px solid black;
  410. width: 14px;
  411. height: 16px;
  412. }
  413. ::-webkit-scrollbar-button:vertical:decrement {
  414. background-image: url(https://i.imgur.com/fQ18mrR.png);
  415. border-top: 1px solid #bdbdbd;
  416. border-left: 1px solid #bdbdbd;
  417. border-right: 1px solid black;
  418. border-bottom: 1px solid black;
  419. width: 14px;
  420. height: 16px;
  421. }
  422.  
  423. ::selection {
  424. background: {color:selection bg};
  425. color:{color:selection text};
  426. }
  427. ::-moz-selection {
  428. background: {color:selection bg};
  429. color:{color:selection text};
  430. }
  431.  
  432. .tooltip{
  433. display:inline;
  434. position:relative;
  435. }
  436.  
  437. #s-m-t-tooltip{
  438. max-width:300px;
  439. padding:5px;
  440. margin:20px 7px -2px 20px;
  441. background-color:{color:tooltip};
  442. letter-spacing:1px;
  443. text-align:center;
  444. color:{color:tooltip text};
  445. z-index:99999999999999999999;
  446. -o-transition: all 0.3s ease-out;
  447. -webkit-transition: all 0.3s ease-out;
  448. -moz-transition: all 0.3s ease-out;
  449. }
  450.  
  451.  
  452. /*
  453. general text styles, fonts and colours
  454. */
  455.  
  456. body {
  457. margin:0px;
  458. background:{color:background};
  459. color:{color:text};
  460. {block:ifglowtext}
  461. text-shadow: 0 0 3px {color:text glow}, 0 0 15px {color:text glow}, 0 0 3px {color:text glow};
  462. {/block:ifglowtext}
  463. background-image: url('{image:background}');
  464. {block:ifnotcoverbg}
  465. background-repeat: repeat;
  466. background-attachment: fixed;
  467. {/block:ifnotcoverbg}
  468. {block:ifcoverbg}
  469. background-size: cover;
  470. background-attachment: fixed;
  471. {/block:ifcoverbg}
  472. color:{color:text};
  473. font-family: {select:font};
  474. font-size: {text:font size};
  475. }
  476.  
  477. p{
  478. margin:0 0 10px 0;
  479. padding:0;
  480. }
  481.  
  482. pre {
  483. white-space: pre-wrap;
  484. white-space: -moz-pre-wrap;
  485. white-space: -pre-wrap;
  486. white-space: -o-pre-wrap;
  487. word-wrap: break-word;
  488. }
  489.  
  490. a {
  491. color:{color:link};
  492. text-decoration: none;
  493. {block:ifglowlinks}
  494. text-shadow: 0 0 3px {color:link glow}, 0 0 15px {color:link glow}, 0 0 3px {color:link glow};
  495. {/block:ifglowlinks}
  496. -moz-transition-duration:0.4s;
  497. -webkit-transition-duration:0.4s;
  498. -o-transition-duration:0.4s;
  499. }
  500.  
  501. a:hover {
  502. text-decoration: none;
  503. color:{color:link hover};
  504. -moz-transition-duration:0.4s;
  505. -webkit-transition-duration:0.4s;
  506. -o-transition-duration:0.4s;
  507. }
  508.  
  509. /*
  510. containers etc
  511. */
  512.  
  513. #sidebar {
  514. text-align:center;
  515. padding:10px;
  516. position:fixed;
  517. margin-left:-350px;
  518. {block:ifnottitle}
  519. margin-top:120px;
  520. {/block:ifnottitle}
  521. {block:iftitle}
  522. margin-top:50px;
  523. {/block:iftitle}
  524.  
  525. width:245px;
  526. }
  527.  
  528. #sidebar img {
  529. width:245px;
  530. margin-bottom:10px;
  531. {block:ifsidebarborder}
  532. border:{text:border size} {select:border type} {color:border};
  533. {/block:ifsidebarborder}
  534. {block:ifsidebarglow}
  535. -moz-box-shadow: 0px 0px 4px 2px {color:glow};
  536. -webkit-box-shadow: 0px 0px 4px 2px {color:glow};
  537. box-shadow: 0px 0px 4px 2px {color:glow};{/block:ifsidebarglow}
  538. }
  539.  
  540.  
  541. #description {
  542. padding:3px;
  543. text-align:center;
  544. {block:ifsidebarborder}
  545. border:{text:border size} {select:border type} {color:border};
  546. {/block:ifsidebarborder}
  547. {block:ifsidebarglow}
  548. -moz-box-shadow: 0px 0px 4px 2px {color:glow};
  549. -webkit-box-shadow: 0px 0px 4px 2px {color:glow};
  550. box-shadow: 0px 0px 4px 2px {color:glow};{/block:ifsidebarglow}
  551. background-color:{color:sidebar};
  552. }
  553.  
  554. #description img {
  555. width:auto;
  556. }
  557. #content{
  558. width:400px;
  559. margin-left:200px;
  560. overflow:hidden;
  561. }
  562.  
  563. #posts {
  564. width:400px;
  565. margin-left:35px;
  566. margin-top:20px;
  567. position:float;
  568. padding:10px;
  569. overflow:hidden;
  570. background-color:{color:posts};
  571. {block:ifpostborder}
  572. border:{text:border size} {select:border type} {color:border};
  573. {/block:ifpostborder}
  574. {block:ifpostglow}
  575. -moz-box-shadow: 0px 0px 4px 2px {color:glow};
  576. -webkit-box-shadow: 0px 0px 4px 2px {color:glow};
  577. box-shadow: 0px 0px 4px 2px {color:glow};{/block:ifpostglow}
  578. {block:IndexPage}
  579. margin-bottom:20px;
  580. {/block:IndexPage}
  581. {block:PermalinkPage}
  582. margin-bottom:20px;
  583. {/block:PermalinkPage}
  584. }
  585.  
  586.  
  587.  
  588. #posts img {
  589. max-width:100%;
  590. height:auto;
  591.  
  592. }
  593.  
  594. .tags {
  595. max-height:0px;
  596. line-height:130%;
  597. text-align:left;
  598. font-size:{text:font size};
  599. opacity:0;
  600. -webkit-transition: all 0.7s ease;
  601. transition: all 0.7s ease;
  602. -moz-transition: all 0.7s ease;
  603. -o-transition: all 0.7s ease;}
  604.  
  605. #posts:hover .tags{
  606. opacity:1;
  607. max-height:300px;
  608. -webkit-transition: all 0.7s ease;
  609. transition: all 0.7s ease;
  610. -moz-transition: all 0.7s ease;
  611. -o-transition: all 0.7s ease;}
  612.  
  613.  
  614. #nav{
  615. margin:50px 0 0 0;
  616. }
  617.  
  618. #pagination{
  619. margin-top:20px;
  620. position:float;
  621.  
  622. }
  623. /*
  624. content in the body of the posts - quotes, asks, etc
  625. "media" contains photos, photosets, videos, audio posts
  626. */
  627. .media{
  628. margin:0 0 10px 0;
  629. }
  630.  
  631. .title{
  632. font-weight:normal;
  633. font-size:18px;
  634. margin:0 0 10px 0;
  635. }
  636.  
  637. .quote{
  638. font-weight:normal;
  639. font-size:16px;
  640. font-style:italic;
  641. margin:0 0 10px 0;
  642. }
  643.  
  644. .question{
  645. margin-bottom:10px;
  646. }
  647.  
  648. blockquote{
  649. margin:0 0 10px 10px;
  650. padding:0 0 0 10px;
  651. border-left:solid 1px #000;
  652. }
  653.  
  654. /*
  655. post footers - date, tags, via and source
  656. */
  657. .post .footer{
  658. margin:0;
  659. text-align:left;
  660. }
  661.  
  662. /*
  663. post notes
  664. */
  665. ol.notes{
  666. list-style-type:none;
  667. padding:0;
  668. margin:0;
  669. }
  670.  
  671. ol.notes li.note img{
  672. width:16px;
  673. height:16px;
  674. }
  675.  
  676. ol.notes li.note{
  677. margin:0px;
  678. }
  679.  
  680. #con {
  681. left:50%;
  682. margin-left:-140px;
  683. position:absolute;
  684. }
  685.  
  686. #entries {
  687. background:{color:container};
  688. background-image: url('{image:container}');
  689.  
  690. {block:ifnottitle}
  691. margin-top:95px;
  692. {/block:ifnottitle}
  693. {block:iftitle}
  694. margin-top:5px;
  695. {/block:iftitle}
  696. {block:ifcontainerborder}
  697. border:{text:border size} {select:border type} {color:border};
  698. {/block:ifcontainerborder}
  699. {block:ifcontainerglow}
  700. -moz-box-shadow: 0px 0px 4px 2px {color:glow};
  701. -webkit-box-shadow: 0px 0px 4px 2px {color:glow};
  702. box-shadow: 0px 0px 4px 2px {color:glow};{/block:ifcontainerglow}
  703. width:500px;
  704. max-height:550px;
  705. position;fixed;
  706. overflow:auto;
  707. text-align: justify;
  708.  
  709. }
  710.  
  711.  
  712.  
  713. #fuck {
  714. {block:iftitle}
  715. width:490px;
  716. margin-left:5px;
  717. margin-top:90px;
  718. overflow:auto;
  719. text-align: justify;
  720. {/block:iftitle}
  721. }
  722.  
  723.  
  724. {CustomCSS}
  725. </style>
  726. </head>
  727.  
  728. <body>
  729.  
  730. <div id="con">
  731.  
  732.  
  733. {block:iftitle}
  734. <div id="fuck">
  735. <marquee behavior="alternate">{text:title}</marquee></div>
  736. {/block:iftitle}
  737.  
  738.  
  739. <div id="sidebar">
  740.  
  741. <div id="sidebar img"><a href="/" title="{text:sidebarhover}"><img src="{image:sidebar}" width="200px"></a></div>
  742.  
  743.  
  744.  
  745. <div id="description">
  746. <a href="{text:link one url}">{text:link one}</a> {text:link divider}
  747. <a href="{text:link two url}">{text:link two}</a> {text:link divider}
  748. <a href="{text:link three url}">{text:link three}</a>
  749.  
  750.  
  751. {block:ifDescription}<Center>{text:description}<div class="blink_me"></Center>{/block:ifDescription}</div>
  752. </div>
  753.  
  754.  
  755. <div id="entries">
  756.  
  757. {block:Posts}
  758.  
  759. <div id="posts">
  760.  
  761. {block:Quote}
  762. <div id="titlequote"><i class="fa fa-quote-left"></i>&nbsp; {Quote} &nbsp;<i class="fa fa-quote-right"></i></div>
  763. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  764. {/block:Quote}
  765.  
  766. {block:Text}
  767. {block:Title}
  768. <div id="title">{Title}</div>{/block:Title}
  769. {Body}
  770. {/block:Text}
  771.  
  772. {block:link}
  773. <div id="title"><a href="{URL}"><i class="fa fa-link"></i>&nbsp; {Name}</a></div>
  774. {block:Description}{Description}{/block:Description}
  775. {/block:link}
  776.  
  777. {block:Chat}
  778. {block:Title}
  779. <div id="title">{Title}</div>{/block:Title}
  780. {/block:Text}
  781. {block:lines}
  782. {block:label}
  783. <br><b>{label}</b>
  784. {/block:label}
  785. {line}
  786. {/block:lines}
  787. {/block:Chat}
  788.  
  789. {block:Photo}
  790. {linkOpenTag}<img src="{PhotoURL-400}" alt="{PhotoAlt}"/>{linkCloseTag}
  791. {/block:Photo}
  792.  
  793. {block:Photoset}
  794. {Photoset-400}
  795. {/block:Photoset}
  796.  
  797. <div class="video">{Video-400}</div>
  798.  
  799. {block:Audio}
  800. {block:AudioEmbed}{AudioEmbed-400}{/block:AudioEmbed}
  801. {/block:Audio}
  802.  
  803. {block:Answer}
  804. <div class="question">{Asker} said: {Question}</div>
  805. <div class="caption">{Answer}</div>
  806. {/block:Answer}
  807.  
  808. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  809.  
  810. <!-- {block:ContentSource} {SourceURL} {/block:ContentSource} {block:RebloggedFrom} {ReblogRootURL} {ReblogParentURL} {/block:RebloggedFrom} -->
  811.  
  812. {block:Date}
  813. <div class="footer">
  814. <a href="{Permalink}"><a href="{Permalink}" title="{timeago}">{notecount}{text:notes symbol}</a>
  815.  
  816. <!-- {block:NoRebloggedFrom}
  817. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  818. {/block:NoRebloggedFrom} -->
  819. {block:ContentSource}<!-- {SourceURL}
  820. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  821. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  822. {/block:ContentSource}
  823. <br>
  824. <div class="tags"> {block:HasTags}{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</div>
  825.  
  826.  
  827. </div>
  828. {block:PermalinkPage}
  829. {block:NoteCount}
  830. {block:PostNotes}{PostNotes}{/block:PostNotes}
  831. {/block:NoteCount}
  832. {/block:PermalinkPage}
  833. {/block:Date}
  834.  
  835. </div>
  836.  
  837.  
  838. {/block:Posts}
  839.  
  840.  
  841. </div>
  842.  
  843. <div id="pagination">
  844. {block:Pagination}
  845. {block:PreviousPage}
  846. <a href="{PreviousPage}">previous page</a>
  847. {/block:PreviousPage}
  848.  
  849.  
  850. {block:NextPage}
  851. <a href="{NextPage}">next page</a>
  852. {/block:NextPage}
  853. {/block:Pagination}
  854. </div>
  855.  
  856. </div>
  857. </body></html>
  858.  
  859. <a style="position:fixed;left:3px;bottom:3px;" <a href="https://boyfriended.tumblr.com/" title="theme by artie 0.o">♜</a>
  860.  
  861. </body>
  862. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement