Advertisement
Laighlin

#20: RGBA(1) (Custom colors)

Jul 19th, 2017
5,549
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 22.79 KB | None | 0 0
  1. <!--
  2.  
  3.  
  4. Red, Green, Blue, Alpha by @Laighlin
  5.  
  6. 1. leave the credit intact
  7. 2. don't redistribute or lift large chunks of code
  8. 3. send me a message if you need any help! (an example of
  9.   your problem would be preferred)
  10. 4. check my faq if you have questions about adding custom links!
  11.  
  12.  
  13. -->
  14.  
  15. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  16. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  17.  
  18. <meta name="image:Favicon" content=""/>
  19.  
  20. <meta name="if:Custom favicon" content="0"/>
  21. <meta name="if:Gradient background" content="1"/>
  22. <meta name="if:Plain background" content="0"/>
  23. <meta name="if:Borders" content="1"/>
  24. <meta name="if:Rounded corners" content="1"/>
  25. <meta name="if:Search bar" content="1"/>
  26.  
  27. <meta name="color:Background" content="#fff"/>
  28. <meta name="color:Text" content="#444"/>
  29. <meta name="color:Accent" content="#999"/>
  30.  
  31. <!-- text fields -->
  32. <meta name="text:Post width" content="400px"/>
  33. <meta name="text:Accent font" content="Overpass"/>
  34. <meta name="text:Body font" content="Inconsolata"/>
  35. <meta name="text:Body font size" content="13px"/>
  36.  
  37.  
  38. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  39. <head><title>{Title}{block:PostSummary} &mdash; {PostSummary}{/block:PostSummary}{block:SearchPage} &mdash; {lang:Search results for SearchQuery}{/block:SearchPage}</title>
  40.  
  41. {block:ifCustomFavicon}
  42. <link rel="shortcut icon" href="{image:favicon}"/>
  43. {/block:ifCustomFavicon}
  44. {block:ifNotCustomFavicon}
  45. <link rel="shortcut icon" href="{Favicon}"/>
  46. {/block:ifNotCustomFavicon}
  47.  
  48. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  49. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  50.  
  51. <link href="https://fonts.googleapis.com/css?family={text:Accent font}:400,700|{text:Body font}:400,400i,700,700i" rel="stylesheet">
  52. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
  53. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  54. <script src="https://static.tumblr.com/pqsvrdz/rKBmvnjxz/jquery.fitvids.js"></script>
  55. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/>
  56. <script src="https://static.tumblr.com/yxfeliq/hHwojmt8m/bctphotoset.min.js"></script>
  57. <link href="#s-m-t-tooltip" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="https://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
  58.  
  59. <style type="text/css">
  60.  
  61. .tmblr-iframe {
  62.     position:absolute;
  63. }
  64.  
  65. body, html { margin:0; padding:0; }
  66.  
  67. body {
  68.     color:{color:text};
  69.     font-family:'{text:body font}',sans-serif;
  70.     font-size:{text:body font size};
  71.     background-color:{color:background};
  72.     word-wrap:break-word;
  73.     overflow-y:auto;
  74.     overflow-x:hidden;
  75.     line-height:1.5em;
  76. }
  77.  
  78. .background { z-index:-99999; }
  79.  
  80. {block:ifNotPlainBackground}
  81. .background:before {
  82.     content:'';
  83.     position:fixed;
  84.     top:0; left:0; bottom:0; right:0;
  85.     {block:ifGradientBackground}
  86.     background-image:linear-gradient(rgba({RGBcolor:accent},.7) 0,rgba({RGBcolor:accent},.2) 100%);
  87.     {/block:ifGradientBackground}
  88.     {block:ifNotGradientBackground}
  89.     background-color:rgba({RGBcolor:accent},.6);
  90.     {/block:ifNotGradientBackground}
  91. }
  92. {/block:ifNotPlainBackground}
  93.  
  94. #cred {
  95.     position:fixed;
  96.     bottom:20px;
  97.     left:20px;
  98.     font-weight:bold;
  99.     font-size:20px;
  100.     padding:5px;
  101.     color:rgba({RGBcolor:text},.7);
  102.     z-index:999999;
  103. }
  104.  
  105. #cred:hover { color:{color:accent}; }
  106.  
  107. p:first-child, p>p:first-child { margin-top:2px; }
  108. p:last-child, p>p:last-child { margin-bottom:2px; }
  109.  
  110. a, .links, .tags, .pag {
  111.     transition:.15s ease-in-out;
  112. }
  113.  
  114. a {
  115.     text-decoration:none;
  116.     outline:none;
  117.     -moz-outline-style:none;
  118.     color:rgba({RGBcolor:accent},.8);
  119.     padding:0;
  120. }
  121.  
  122. a:hover {
  123.     color:rgba({RGBcolor:text},.7);
  124. }
  125.  
  126. .caption a:hover:not(.more), #desc a:hover, .question a:hover, .answer a:hover {
  127.     border-bottom:1px solid {color:text};
  128. }
  129.  
  130. .caption a, #desc a, .question a, .answer a {
  131.     color:{color:text};
  132.     border-bottom:1px solid rgba({RGBcolor:accent},.5);
  133. }
  134.  
  135. .caption hr, #desc hr {
  136.     border:none;
  137.     border-top:1px solid rgba({RGBcolor:accent},.5);
  138.     margin:.5em 20%;
  139. }
  140.  
  141. img {
  142.     border:none;
  143.     max-width:100%;
  144. }
  145.  
  146. blockquote, blockquote blockquote {
  147.     padding:4px 4px 4px 10px;
  148.     margin:0;
  149.     margin-left:1px;
  150.     border-left:2px solid rgba({RGBcolor:accent},.5);
  151.     background:rgba({RGBcolor:accent},.05);
  152. }
  153.  
  154. h1 i { font-size:110%; }
  155.  
  156. ::selection {
  157.     background:rgba({RGBcolor:accent},.7);
  158.     color:{color:background};
  159. }
  160.  
  161. ::moz-selection {
  162.     background:rgba({RGBcolor:accent},.7);
  163.     color:{color:background};
  164. }
  165.  
  166. ::-webkit-scrollbar {
  167.     width:8px;
  168.     height:8px;
  169. }
  170.  
  171. ::-webkit-scrollbar-thumb {
  172.     background:{color:accent} padding-box;
  173.     {block:ifRoundedCorners}
  174.     border-radius:10px;
  175.     {/block:ifRoundedCorners}
  176.     border:2px solid transparent;
  177. }
  178.  
  179. /* Track */
  180. ::-webkit-scrollbar-track {
  181.     border:solid rgba({RGBcolor:accent},.3);
  182.     border-width:0 2px;
  183.     background:{color:background};
  184. }
  185.  
  186. ::-webkit-scrollbar-corner {
  187.     background:transparent;
  188. }
  189.  
  190. #s-m-t-tooltip, #side-content, #link-menu, .post, .nav, #cred, #search {
  191.     {block:ifRoundedCorners}
  192.     border-radius:7px;
  193.     {/block:ifRoundedCorners}
  194.     {block:ifBorders}
  195.     border:3px solid rgba({RGBcolor:accent},.3);
  196.     {/block:ifBorders}
  197.     background:{color:background};
  198. }
  199.  
  200. #s-m-t-tooltip {
  201.     margin:0 15px;
  202.     padding:.5em;
  203.     font-size:95%;
  204.     line-height:1em;
  205.     z-index:9999999;
  206.     pointer-events:none;
  207. }
  208.  
  209. #sidebar {
  210.     width:250px;
  211.     position:fixed;
  212.     top:0;
  213.     bottom:0;
  214.     left:calc(50% - ({text:post width})/2 - 250px);
  215.     display:flex;
  216.     flex-flow:column nowrap;
  217.     align-items:center;
  218.     justify-content:center;
  219. }
  220.  
  221. #side-content {
  222.     box-sizing:border-box;
  223.     width:250px;
  224.     padding:10px;
  225.     text-align:center;
  226.     position:relative;
  227. }
  228.  
  229. #side-img {
  230.     background:{color:background};
  231.     height:100px;
  232.     width:100px;
  233.     margin:-70px auto 5px;
  234.     padding:5px;
  235.     {block:ifBorders}
  236.     border:3px solid rgba({RGBcolor:accent},.3);
  237.     {/block:ifBorders}
  238. }
  239.  
  240. #side-img.circle { border-radius:50%; }
  241. #side-img.square {
  242.     {block:ifRoundedCorners}
  243.     border-radius:7px;
  244.     {/block:ifRoundedCorners}
  245. }
  246.  
  247. #navbar {
  248.     position:fixed;
  249.     left:calc(50% + ({text:post width})/2 + 100px);
  250.     top:0;
  251.     bottom:0;
  252.     display:flex;
  253.     flex-flow:column nowrap;
  254.     justify-content:center;
  255. }
  256.  
  257. #nav-measure {
  258.     position:relative;
  259.     display:flex;
  260.     flex-flow:column nowrap;
  261.     justify-content:center;
  262. }
  263.  
  264. .nav {
  265.     text-transform:uppercase;
  266.     margin:10px 0;
  267.     color:{color:text};
  268.     text-align:center;
  269.     padding:5px;
  270.     width:55px;
  271.     height:55px;
  272. }
  273.  
  274. .nav .fa {
  275.     font-size:24px;
  276.     margin-top:5px;
  277.     color:rgba({RGBcolor:accent},.7);
  278. }
  279.  
  280. .nav .fa-home {
  281.     font-size:28px;
  282.     margin-top:3px;
  283.     margin-bottom:-3px;
  284. }
  285.  
  286. .lbl {
  287.     line-height:10px;
  288.     font-size:12px;
  289. }
  290.  
  291. #blog-name {
  292.     display:block;
  293.     font-size:1.5em;
  294.     margin-top:5px;
  295. }
  296.  
  297. #title, .title, #menu-lbl, .lbl {
  298.     font-family:'{text:accent font}','{text:body font}',sans-serif;
  299.     font-weight:bold;
  300. }
  301.  
  302. #title {
  303.     font-size:1.1em;
  304.     font-weight:bold;
  305.     color:rgba({RGBcolor:text},.8);
  306. }
  307.  
  308. #desc {
  309.     margin-top:10px;
  310.     text-align:left;
  311. }
  312.  
  313. #search {
  314.     display:block;
  315.     margin:10px 0 0;
  316.     {block:ifBorders}width:234px;{/block:ifBorders}
  317.     {block:ifNotBorders}width:240px;{/block:ifNotBorders}
  318.     padding:5px;
  319. }
  320.  
  321. #search input, #search button {
  322.     outline:none;
  323.     border:none;
  324.     background:none;
  325. }
  326.  
  327. #search input { font:inherit; color:inherit; }
  328. #search button { color:rgba({RGBcolor:accent},.7); }
  329.  
  330. #link-menu {
  331.     margin:10px 0 0;
  332.     position:relative;
  333.     width:250px;
  334.     box-sizing:border-box;
  335.     font-size:1.1em;
  336. }
  337.  
  338. #dropdown {
  339.     border-top:3px solid rgba({RGBcolor:accent},.3);
  340.     display:none;
  341. }
  342.  
  343. .links {
  344.     padding:5px;
  345.     text-transform:uppercase;
  346.     display:block;
  347.     text-align:right;
  348. }
  349.  
  350. #menu-lbl {
  351.     color:rgba({RGBcolor:text},.8);
  352.     cursor:pointer;
  353.     text-align:left;
  354. }
  355.  
  356. #menu-lbl .fa {
  357.     float:right;
  358.     margin-right:3px;
  359. }
  360.  
  361. /* Post styling */
  362. #content {
  363.     left:calc(50% - ({text:post width})/2 + 50px);
  364.     position:absolute;
  365.     z-index:999;
  366.     width:{text:post width};
  367.     min-width:300px;
  368. }
  369.  
  370. .post {
  371.     margin:50px 0;
  372.     position:relative;
  373.     background:{color:background};
  374.     overflow:hidden;
  375. }
  376.  
  377. .rb-from {
  378.     padding:10px;
  379.     line-height:1em;
  380.     border-bottom:3px solid rgba({RGBcolor:accent},.3);
  381. }
  382.  
  383. .rb-from a { font-size:1.2em; }
  384. .rb-from .post-type { float:right; }
  385.  
  386. .title {
  387.     line-height:1.2em;
  388.     font-size:1.7em;
  389.     margin:0;
  390.     text-align:center;
  391.     color:{color:accent};
  392. }
  393.  
  394. .media-wrap { line-height:0; }
  395.  
  396. .chat { padding:.2em .5em; }
  397. .chat.even { background:rgba({RGBcolor:accent},.1) }
  398.  
  399. .caption { padding:10px; }
  400. .caption:empty { display:none; }
  401. .caption a.tumblr_blog { font-weight:bold; }
  402. .caption .read-more {
  403.     display:inline-block;
  404.     margin:auto;
  405.     text-transform:uppercase;
  406.     text-decoration:none;
  407.     padding:7px;
  408.     border:1px solid rgba({RGBcolor:link},.5);
  409. }
  410.  
  411. .caption h1, .caption h2, .caption h3, .caption h4, .caption h5 {
  412.     margin:0;
  413.     color:rgba({RGBcolor:accent},.8);
  414.     font-family:{text:accent font};
  415.     text-align:center;
  416. }
  417.  
  418. .caption h1 { font-size:1.5em; }
  419.  
  420. .caption ul li {
  421.     list-style-type:none;
  422.     position:relative;
  423. }
  424.  
  425. .caption ul li:before {
  426.     content:'\2014';
  427.     position:absolute;
  428.     left:-15px;
  429.     color:{color:accent};
  430. }
  431.  
  432. .caption ol li {
  433.     margin-left:10px;
  434. }
  435.  
  436. .caption ol {
  437.     list-style-type:decimal-leading-zero;
  438. }
  439.  
  440. .caption ol li:before, .caption ul li:before {
  441.     font-weight:bold;
  442. }
  443.  
  444. .quest, .rb-ans {
  445.     padding:10px 10px 0;
  446. }
  447.  
  448. .quest { text-align:right; }
  449.  
  450. .avi {
  451.     border-radius:50%;
  452.     width:35px;
  453. }
  454.  
  455. .quest .avi {
  456.     float:right;  
  457. }
  458. .rb-ans .avi {
  459.     float:left;
  460. }
  461.  
  462. .question, .answer {
  463.     {block:ifRoundedCorners}
  464.     border-radius:4px;
  465.     {/block:ifRoundedCorners}
  466.     position:relative;
  467.     padding:7px;
  468.     background:rgba({RGBcolor:accent},.1);
  469. }
  470.  
  471. .question:before, .answer:before {
  472.     content:'';
  473.     position:absolute;
  474.     height:0;
  475.     width:0;
  476.     border:8px solid transparent;
  477.     background-color:rgba({RGBcolor:accent},.1);
  478.     background-clip:padding-box;
  479.     top:10px;
  480. }
  481.  
  482. .question:before {
  483.     right:-16px;
  484.     border-left-color:rgba({RGBcolor:accent},.1);
  485. }
  486.  
  487. .answer:before {
  488.     left:-16px;
  489.     border-right-color:rgba({RGBcolor:accent},.1);
  490. }
  491.  
  492. .question {
  493.     margin-right:50px;
  494. }
  495.  
  496. .answer {
  497.     margin-left:50px;
  498. }
  499.  
  500. .quote {
  501.     padding:10px;
  502.     font:1.4em '{text:accent font}';
  503.     color:{color:text};
  504.     text-indent:10px;
  505.     position:relative;
  506. }
  507.  
  508. .quote .fa {
  509.     position:absolute;
  510.     font-size:40px;
  511.     color:rgba({RGBcolor:accent},.15);
  512.     left:0;
  513.     top:5px;
  514. }
  515.  
  516. .more {
  517.     text-transform:uppercase;
  518.     padding:10px;
  519.     border:1px solid rgba({RGBcolor:accent},.5);
  520.     display:inline-block;
  521. }
  522.  
  523. .more:hover {
  524.     border-color:rgba({RGBcolor:text},.5);
  525. }
  526.  
  527. .tag-wrap {
  528.     padding:10px;
  529. }
  530.  
  531. .tag-wrap .fa-tags, .rb-from .fa {
  532.     color:rgba({RGBcolor:text},.5);
  533. }
  534.  
  535. .tags { color:{color:accent}; }
  536. .tags:hover { text-decoration:underline; }
  537.  
  538. .info {
  539.     padding:10px;
  540.     border-top:3px solid rgba({RGBcolor:accent},.3);
  541. }
  542.  
  543. .controls {
  544.     float:right;
  545.     position:relative;
  546.     font-size:16px;
  547. }
  548.  
  549. .controls a {
  550.    position:relative;
  551.    display:inline-block;
  552. }
  553.  
  554. .controls .fa-retweet {
  555.     font-size:20px;
  556.     line-height:20px;
  557. }
  558.  
  559. .like-wrap {
  560.     position:relative;
  561.     width:30px;
  562.     height:30px;
  563. }
  564.  
  565. .like_button {
  566.     position: absolute;
  567.     z-index:5;
  568.     top:-2px;
  569.     left:0;
  570.     opacity:0;
  571.     width:16px;
  572.     height:16px;
  573. }
  574.  
  575. .like_button iframe {
  576.     width:100% !important;
  577.     height:100% !important;
  578. }
  579.  
  580. .like-btn {
  581.     position:absolute;
  582.     top:-2px;
  583.     z-index:1;
  584. }
  585.  
  586. .like_button.liked + .like-btn {
  587.     color:#f55;
  588. }
  589.  
  590. #note {
  591.     margin-bottom:50px;
  592.     padding:10px;
  593. }
  594.  
  595. #note blockquote { margin-left:9px; }
  596.  
  597. #note ol.notes {
  598.     list-style-type:none;
  599.     padding:0;
  600.     margin:0;
  601. }
  602.  
  603. li.note {
  604.     border-bottom:1px solid rgba({RGBcolor:borders},.5);
  605.     padding:5px;
  606. }
  607.  
  608. #note ol.notes li:last-child { border-bottom:none; }
  609.  
  610. #note ol.notes img.avatar {
  611.     margin-right:7px;
  612.     margin-top:calc(1em - 15px);
  613.     width:20px;
  614.     height:20px;
  615.     float:left;
  616.     border-radius:50%;
  617. }
  618.  
  619. @media all and (max-height:630px) {
  620.     #top { display:none; }
  621. }
  622.  
  623. #top.inactive {
  624.     opacity:0;
  625.     pointer-events:none;
  626. }
  627.  
  628. {CustomCSS}
  629.  
  630. </style>
  631.  
  632. <script>
  633. $(document).ready(function() {
  634.     $('.media-wrap').fitVids(); // video resizing script
  635.     $('.photo-slideshow').pxuPhotoset({
  636.        lightbox: true,
  637.        rounded: false,
  638.        gutter: '4px',
  639.        borderRadius: '0px',
  640.        photoset: '.photo-slideshow',
  641.        photoWrap: '.photo-data',
  642.        photo: '.pxu-photo'
  643.     }); // photoset resizing script
  644.     $('[title]').style_my_tooltips({
  645.         tip_follows_cursor:true,
  646.         tip_delay_time:100,
  647.         tip_fade_speed:300
  648.     }); // tooltip script
  649.     $('#menu-lbl').click(function() {
  650.         $('#dropdown').slideToggle(200);
  651.         $('#menu-lbl .fa-caret-down').toggleClass('fa-rotate-180');
  652.     });
  653.     $('iframe.tumblr_audio_player').load( function() {
  654.         $('iframe.tumblr_audio_player').height(85).contents().find("head")
  655.            .append($("<style type='text/css'> .audio-player { background:rgba({RGBcolor:accent},.3) !important; width:calc({text:post width} - 6px) !important } .audio-player * { color:{color:text} !important } </style>"));
  656.     }); //changes music player colors
  657.     $(window).scroll(function() {
  658.         if($(this).scrollTop() > 400) {
  659.             $("#top").removeClass("inactive");
  660.     }
  661.         else {
  662.             $("#top").addClass("inactive");
  663.         }
  664.     }); //renders the scroll to top button initially invisible
  665.     $("#top").click(function() {
  666.         $("html, body").animate({ scrollTop: 0 }, 400);
  667.         return false;
  668.     });
  669. });
  670. </script>
  671.    
  672. </head>
  673.  
  674. <body class="background">
  675.  
  676. <a id="cred" title="Theme by Laighlin" href="http://linthm.tumblr.com/thm">@L</a>
  677.  
  678. <div id="sidebar">
  679.     <div id="side-content">
  680.         <a href="/">
  681.             <img id="side-img" class="{AvatarShape}" src="{PortraitURL-128}">
  682.         </a>
  683.         <a id="blog-name" href="/">@{Name}</a>
  684.         <div id="title">{Title}</div>
  685.         {block:Description}
  686.         <div id="desc">{Description}</div>
  687.         {/block:Description}
  688.     </div>
  689.     {block:ifSearchBar}
  690.     <form id="search" action="/search" method="get">
  691.         <button type="submit" value="search" title="{lang:Search}"><span class="fa fa-search"></span></button>
  692.         <input type="text" name="q" value="{URLSafeSearchQuery}"/>
  693.     </form>
  694.     {/block:ifSearchBar}
  695.     {block:HasPages}
  696.     <div id="link-menu">
  697.         <div id="menu-lbl" class="links"><span class="fa fa-caret-down" aria-label="hidden"></span>Navigation</div>
  698.         <div id="dropdown">
  699.             {block:Pages}<a class="links" href="{URL}" target="_blank">{Label}</a>{/block:Pages}
  700.         </div>
  701.     </div>
  702.     {/block:HasPages}
  703. </div> <!-- End of sidebar -->
  704.  
  705. <!-- Posts -->
  706. <div id="content">
  707.     {block:SearchPage}
  708.     <article class="post">
  709.         <div class="caption">
  710.             <h2 class="title">
  711.                 {block:SearchResults}
  712.                     {lang:SearchResultCount results for SearchQuery 2}
  713.                 {/block:SearchResults}
  714.                 {block:NoSearchResults}
  715.                     {lang:No search results for SearchQuery 2}
  716.                 {/block:NoSearchResults}
  717.             </h2>
  718.         </div>
  719.     </article>
  720.     {/block:SearchPage}
  721.     {block:TagPage}
  722.     <article class="post">
  723.         <div class="caption">
  724.             <h2 class="title">
  725.                 {lang:Posts tagged Tag 3}
  726.             </h2>
  727.         </div>
  728.     </article>
  729.     {/block:TagPage}
  730.     {block:Posts inlineMediaWidth="400" inlineNestedMediaWidth="370"}
  731.     <article class="post">
  732.         {block:RebloggedFrom}
  733.         <div class="rb-from">
  734.             <span class="fa fa-retweet" aria-label="Reblogged from"></span> <a href="{ReblogParentURL}">{ReblogParentName}</a>
  735.             <span class="fa
  736.            {block:Text}fa-align-left{/block:Text}
  737.            {block:Answer}fa-question{/block:Answer}
  738.            {block:Chat}fa-comments-o{/block:Chat}
  739.            {block:Quote}fa-quote-right{/block:Quote}
  740.            {block:Link}fa-link{/block:Link}
  741.            {block:Photo}fa-camera{/block:Photo}
  742.            {block:Photoset}fa-camera{/block:Photoset}
  743.            {block:Audio}fa-music{/block:Audio}
  744.            {block:Video}fa-video-camera{/block:Video}
  745.            fa-fw post-type" aria-label="{PostTypeNoun}"></span>
  746.         </div>
  747.         {/block:RebloggedFrom}
  748.         {block:Text}
  749.         <div class="caption">
  750.             {block:Title}<h2 class="title">{Title}</h1>{/block:Title}
  751.             {Body}
  752.         </div>
  753.         {/block:Text}
  754.        
  755.         {block:Answer}
  756.         <div class="quest">
  757.             <img class="avi" src="{AskerPortraitURL-40}">
  758.             <div class="question">
  759.                 <p>{Question}</p>&mdash; {Asker}
  760.             </div>
  761.         </div>
  762.         {block:Answerer}
  763.         <div class="rb-ans">
  764.             <img class="avi" src="{AnswererPortraitURL-40}">
  765.             <div class="answer">
  766.                 {Answerer} replied &mdash;<p>{Answer}
  767.             </div>
  768.         </div>
  769.         {/block:Answerer}
  770.         <div class="caption">{Replies}</div>
  771.         {/block:Answer}
  772.        
  773.         {block:Chat}
  774.         {block:Title}<h2 class="title">{Title}</h1>{/block:Title}
  775.         {block:Lines}
  776.         <div class="chat {Alt}">{block:Label}<b>{Label} </b>{/block:Label}{Line}</div>
  777.         {/block:Lines}
  778.         {/block:Chat}
  779.        
  780.         {block:Quote}
  781.         <div class="quote">
  782.             <i class="fa fa-quote-left" aria-hidden="true"></i>
  783.             {Quote}
  784.         </div>
  785.         {block:Source}
  786.         <div class="caption" style="text-align:right">&mdash; {Source}</div>
  787.         {/block:Source}
  788.         {/block:Quote}
  789.        
  790.         {block:Link}
  791.         <div class="caption">
  792.             <a href="{URL}"><h2 class="title"><span class="fa fa-external-link"></span> {Name}</h2></a>
  793.             {block:Excerpt}<blockquote>{Excerpt}</blockquote>{/block:Excerpt}
  794.             {block:Description}{Description}{/block:Description}
  795.         </div>
  796.         {/block:Link}
  797.        
  798.         {block:Photo}
  799.         <div class="media-wrap">
  800.             {LinkOpenTag}<center><img src="{PhotoURL-500}"></center>{LinkCLoseTag}
  801.         </div>
  802.         {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  803.         {/block:Photo}
  804.        
  805.         {block:Photoset}
  806.         <div class="media-wrap">
  807.             <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">
  808.             {block:Photos}
  809.             <div class="photo-data">
  810.                 <div class="pxu-photo"><img src="{PhotoURL-HighRes}" width="{PhotoWidth-HighRes}" height="{PhotoHeight-HighRes}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}"></div>
  811.                 <a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}"></a>
  812.             </div>
  813.             {/block:Photos}
  814.             </div>
  815.         </div>
  816.         {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  817.         {/block:Photoset}
  818.        
  819.         {block:Audio}
  820.         <div class="media-wrap">
  821.             {AudioEmbed-500}
  822.         </div>
  823.         {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  824.         {/block:Audio}
  825.        
  826.         {block:Video}
  827.         <div class="media-wrap">{VideoEmbed-500}</div>
  828.         {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  829.         {/block:Video}
  830.        
  831.         {block:More}
  832.         <div class="caption"><center><a class="more lbl" href="{Permalink}">{lang:Read more}</a></center></div>
  833.         {/block:More}
  834.        
  835.         {block:HasTags}
  836.         <div class="tag-wrap">
  837.             <span class="fa fa-tags"></span>
  838.             {block:Tags}#<a href="{TagURL}" class="tags">{Tag}</a> {/block:Tags}
  839.         </div>
  840.         {/block:HasTags}
  841.        
  842.         {block:Date}
  843.         <footer class="info">
  844.             {block:ContentSource}
  845.             {lang:Source}: <a href="{SourceURL}" style="line-height:1em">{SourceTitle}</a><br/>
  846.             {/block:ContentSource}
  847.             <a href="{ShortURL}" title="{TimeAgo}">{DayOfMonth}.{MonthNumber}.{Year}</a>
  848.             {block:NoteCount} // <a href="{Permalink}">{NoteCountWithLabel}</a>{/block:NoteCount}
  849.             <span class="controls">
  850.                 <a class="fa fa-retweet" title="Reblog" href="{ReblogURL}"></a>
  851.                 <span class="like-wrap" title="Like">{LikeButton}<a class="like-btn"><i class="fa fa-heart"></i></a></span>
  852.             </span>
  853.         </footer>
  854.         {/block:Date}
  855.     </article>
  856.    
  857.     {block:PostNotes}
  858.     <footer class="post" id="note">
  859.         <div class="note-border">
  860.             {PostNotes-64}
  861.         </div>
  862.     </footer>
  863.     {/block:PostNotes}
  864.     {/block:Posts}
  865. </div>
  866.  
  867.        
  868. <div id="navbar">
  869.     <div id="nav-measure">
  870.     <a class="nav" href="/">
  871.         <i class="fa fa-home fa-fw"></i>
  872.         <h3 class="lbl">{lang:Home}</h3>
  873.     </a>
  874.     {block:AskEnabled}
  875.     <a class="nav" href="/ask" target="_blank">
  876.         <i class="fa fa-pencil fa-fw"></i>
  877.         <h3 class="lbl">{lang:Mail}</h3>
  878.     </a>
  879.     {/block:AskEnabled}
  880.     {block:SubmissionsEnabled}
  881.     <a class="nav" href="/submit" target="_blank">
  882.         <i class="fa fa-envelope fa-fw"></i>
  883.         <h3 class="lbl">Submit</h3>
  884.     </a>
  885.     {/block:SubmissionsEnabled}
  886.     <a class="nav" href="/archive" target="_blank">
  887.         <i class="fa fa-calendar fa-fw"></i>
  888.         <h3 class="lbl">{lang:Archive}</h3>
  889.     </a>
  890.     {block:PreviousPage}
  891.     <a class="nav" href="{PreviousPage}">
  892.         <i class="fa fa-arrow-left fa-fw"></i>
  893.         <h3 class="lbl">{lang:Prev}</h3>
  894.     </a>
  895.     {/block:PreviousPage}
  896.     {block:NextPage}
  897.     <a class="nav" href="{NextPage}">
  898.         <i class="fa fa-arrow-right fa-fw"></i>
  899.         <h3 class="lbl">{lang:Next}</h3>
  900.     </a>
  901.     {/block:NextPage}
  902.     <a class="nav inactive" href="#" id="top">
  903.         <i class="fa fa-arrow-up fa-fw"></i>
  904.         <h3 class="lbl">To Top</h3>
  905.     </a>
  906.     </div>
  907. </div>
  908.  
  909. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement