Advertisement
enbythemes

theme 05: cold

Oct 29th, 2020 (edited)
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.74 KB | None | 0 0
  1. <!--
  2. cold © xroub.tumblr.com
  3.  
  4. credits:
  5. base codes by egg.design and annasthms.tumblr.com
  6. change audio player color by shudesigns.tumblr.com
  7. responise videos by nouvae.tumblr.com
  8. honeybee font icons by suiomi.com
  9. -->
  10.  
  11. <!DOCTYPE html>
  12. <html>
  13. <head>
  14. <link rel="shortcut icon" href="{Favicon}" />
  15. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  16. <title>cold by enbythemes</title>
  17. {block:Description}
  18. <meta name="description" content="{MetaDescription}" />
  19. {/block:Description}
  20.  
  21. <!-- meta tags -->
  22. <meta name="image:sidebar" content="{HeaderImage}">
  23.  
  24. <meta name="color:background" content="#ffffff">
  25. <meta name="color:header" content="#f0f0f0">
  26. <meta name="color:sidebar" content="#f0f0f0">
  27. <meta name="color:posts" content="#f0f0f0">
  28.  
  29. <meta name="color:font color" content="#222222">
  30. <meta name="color:links" content="#92d1f4">
  31. <meta name="color:links hover" content="#222222">
  32. <meta name="color:bold" content="#2373a4">
  33. <meta name="color:headings" content="#2373a4">
  34. <meta name="color:audio player" content="#92d1f4">
  35.  
  36. <meta name="color:gradient color 1" content="#92d1f4">
  37. <meta name="color:gradient color 2" content="#2373a4">
  38.  
  39. <meta name="text:google font" content="Karla">
  40. <meta name="text:font size" content="14px">
  41.  
  42. <meta name="text:subtitle" content="Leonard Snart, robbert of ATM's.">
  43.  
  44. <meta name="text:link one" content="link one">
  45. <meta name="text:link one url" content="">
  46. <meta name="text:link two" content="link two">
  47. <meta name="text:link two url" content="">
  48. <meta name="text:link three" content="link three">
  49. <meta name="text:link three url" content="">
  50.  
  51. <!-- scripts -->
  52. <link href="https://fonts.googleapis.com/css?family={text:Google Font}:700,400" rel="stylesheet">
  53.  
  54. <link href="//solrainha.github.io/honeybee/honeybee.css" rel="stylesheet">
  55.  
  56. <meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
  57.  
  58. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  59.  
  60. <script src="https://rawgit.com/robinpx/tumblr/master/scripts/flexibleFrames/flexibleFrames.min.js"></script>
  61.  
  62.  
  63. <script>
  64. // change audio player color by shudesigns.tumblr.com
  65. $(document).ready(function() {
  66. var $audio = $('iframe.tumblr_audio_player');
  67. $audio.load(function() {
  68. $(this).contents().find('head').append('<style type="text/css">' +
  69. '.audio-player { background: {color:audio player}; color: #fff !important; }' +
  70. '.audio-player .audio-info .track-artist { color: #fff !important; }' +
  71. '</style>');
  72. });
  73. });
  74.  
  75. // responsive videos by nouvae.tumblr.com
  76. function flexFrame() {
  77. $(".caption").each(function() {
  78. $(this).find("iframe").wrap("<div class='capframe'></div>"); // wrap iframe
  79. flexibleFrames($(".capframe"));
  80. });
  81. flexibleFrames($(".video"));
  82. }
  83.  
  84. $(document).ready(flexFrame);
  85. </script>
  86.  
  87.  
  88. <style>
  89. body {
  90. margin: 0;
  91. background: {color:background};
  92. font-family: {text:google font};
  93. font-size: {text:font size};
  94. color: {color:font color};
  95. word-wrap: break-word;
  96. }
  97.  
  98. a {
  99. text-decoration: none;
  100. color: {color:links};
  101. cursor: help;
  102. transition: all .5s ease-in-out;
  103. }
  104.  
  105. a:hover {color: {color:font color};}
  106.  
  107. h1, h2, h3, h4, h5, big, small {font-size: 1em;}
  108. h1, h2, h3, h4, h5 {color: {color:headings};}
  109. b, strong {color: {color:bold};}
  110. ol, ul {padding: 0;margin: .5em 20px .5em 16px;}
  111. ul {list-style: circle;}
  112. ol {list-style: upper-roman;}
  113.  
  114. blockquote {
  115. margin: 1em 0;
  116. padding-left: .5em;
  117. border-left: 2px solid {color:bold};
  118. }
  119.  
  120. pre {
  121. word-wrap:break-word!Important;
  122. white-space: pre-wrap;
  123. }
  124.  
  125. /* header */
  126. header {
  127. background: {color:header};
  128. position: fixed;
  129. width: 100vw;
  130. /*height: 25px;*/
  131. top: 0;
  132. left: 0;
  133. z-index: 99;
  134. /*padding: 15px;*/
  135. }
  136.  
  137. .gradient {
  138. width: 100%;
  139. height: 8px;
  140. background-image: linear-gradient(to right, {color:gradient color 1}, {color:gradient color 2});
  141. }
  142.  
  143. .topbar {
  144. padding: 0;
  145. display: flex;
  146. justify-content: center;
  147. align-items: center;
  148. }
  149.  
  150. img.avtr {
  151. width: 50px;
  152. /*height: 50px;*/
  153. border-radius: 100%;
  154. margin: 5px 10px -18px;
  155. border: 5px solid {color:header};
  156. }
  157.  
  158. h1.blogttl {
  159. font-size: 1.25em;
  160. margin: 0;
  161. display: inline-block;
  162. }
  163.  
  164. .hdrlinks a {
  165. color: {color:font color};
  166. margin: 0 .25em;
  167. position: relative;
  168. }
  169.  
  170. .hdrlinks a:hover {color: {color:links};}
  171.  
  172. .hdrlinks a:not(:last-of-type)::after {
  173. content: "\eb57";
  174. font-family: 'honeybee';
  175. font-size: 1em;
  176. color: {color:links};
  177. vertical-align: middle;
  178. margin-left: 10px;
  179. }
  180.  
  181. /* content */
  182. section.content {
  183. width: 98%;
  184. margin: 125px auto 50px;
  185. }
  186.  
  187. /* sidebar */
  188. aside {
  189. width: 300px;
  190. min-width: 150px;
  191. background: {color:sidebar};
  192. padding: 20px 15px;
  193. text-align: justify;
  194. position: fixed;
  195. left: 5%;
  196. }
  197.  
  198. img.sbimg {
  199. width: calc(100% + 30px);
  200. height: auto!important;
  201. margin: -20px 0 0 -15px;
  202. }
  203.  
  204. h1.subttl {
  205. font-size: 1.25em;
  206. }
  207.  
  208. .links {
  209. width: 100%;
  210. margin: 15px 0 0 -15px;
  211. padding: 15px 15px 0;
  212. text-align: center;
  213. position: relative;
  214. }
  215.  
  216. .links::before {
  217. content: "";
  218. position: absolute;
  219. left: 0;
  220. top: 0;
  221. width: 100%;
  222. height: 2px;
  223. background-image: linear-gradient(to right, {color:gradient color 1}, {color:gradient color 2});
  224. }
  225.  
  226. .links a:not(:last-of-type) {
  227. margin-right: 6px;
  228. }
  229.  
  230. /* posts */
  231. section.postcontainer {
  232. width: calc(100% - 350px - 5%);
  233. margin: auto;
  234. margin-left: calc(5% + 300px);
  235. }
  236.  
  237. article.posts {
  238. width: 100%;
  239. max-width: 700px;
  240. background: {color:posts};
  241. margin: 50px auto 100px;
  242. }
  243.  
  244. /* text posts */
  245. h1.ttl {
  246. font-size: 1.5em;
  247. margin: 0;
  248. padding: 20px;
  249. text-align: center;
  250. color: {color:headings};
  251. text-transform: uppercase;
  252. letter-spacing: 1px;
  253. position: relative;
  254. }
  255.  
  256. h1.ttl::after {
  257. content: "";
  258. position: absolute;
  259. width: 100%;
  260. height: 2px;
  261. bottom: 0;
  262. left: 0;
  263. background: linear-gradient(to right, {color:gradient color 1}, {color:gradient color 2});
  264. }
  265.  
  266. p.read_more_container {
  267. text-align: center;
  268. margin: 20px 0 10px;
  269. }
  270.  
  271. a.read_more {
  272. padding: 8px 10px;
  273. background-color: {color:gradient color 1};
  274. background-image: linear-gradient(to right, {color:gradient color 1}, {color:gradient color 2});
  275. color: {color:background};
  276. font-weight: 700;
  277. text-transform: uppercase;
  278. letter-spacing: 1px;
  279. }
  280.  
  281. a.read_more:hover {color: {color:font color};}
  282.  
  283. /* photo posts */
  284. .photo {
  285. width: 100%;
  286. height: auto!important;
  287. }
  288.  
  289. /* quote posts */
  290. .qu {
  291. font-size: 1.5em;
  292. font-weight: 700;
  293. }
  294.  
  295. .qu .th {
  296. vertical-align: middle;
  297. font-size: .9em;
  298. margin-right: 5px;
  299. margin-bottom: 3px;
  300. }
  301.  
  302. .src {
  303. font-style: italic;
  304. margin-top: 8px;
  305. text-align: right;
  306. }
  307.  
  308. /* chat posts */
  309. ul.chat {
  310. list-style: none;
  311. margin: 0;
  312. }
  313.  
  314. ul.chat li {
  315. margin: .75em 0;
  316. }
  317.  
  318. ul.chat .label {
  319. font-weight: 700;
  320. font-size: 1.1em;
  321. color: {color:bold};
  322. }
  323.  
  324. /* link posts */
  325. .link a {
  326. display: block;
  327. font-size: 1.5em;
  328. text-align: center;
  329. }
  330.  
  331. /* audio posts */
  332. iframe.tumblr_audio_player {
  333. height: 85px;
  334. width: 100%;
  335. }
  336.  
  337. /* ask posts */
  338. .question_container {
  339. padding: 20px;
  340. background: {color:background};
  341. }
  342.  
  343. .question_text {margin-top: 10px;}
  344.  
  345. /* captions */
  346. .caption {padding: 20px;}
  347.  
  348. .caption img {
  349. max-width: 100%;
  350. height: auto!important;
  351. }
  352.  
  353. .caption h1,
  354. .caption h2,
  355. .caption h3,
  356. .caption h4,
  357. .caption h5 {
  358. text-align: center;
  359. font-size: 1.25em;
  360. }
  361.  
  362. .reblog-header a {font-weight: 700;}
  363.  
  364. .cpavtr {
  365. display: inline-block;
  366. width: 24px;
  367. height: 24px;
  368. vertical-align: middle;
  369. margin-right: 4px;
  370. padding: 4px;
  371. background: {color:posts};
  372. border: 1px solid {color:gradient color 1};
  373. border-radius: 100%;
  374. }
  375.  
  376. .cpavtr img {
  377. width: 24px;
  378. border-radius: 100%;
  379. transition: all 0.3s ease;
  380. }
  381.  
  382. .cpavtr:hover img {
  383. filter: grayscale(.8);
  384. transform: scale(.9);
  385. }
  386.  
  387. /* permalinks */
  388. .permalinks {
  389. padding: 20px;
  390. background-color: {color:gradient color 2};
  391. background-image: linear-gradient(to right, {color:gradient color 1}, {color:gradient color 2});
  392. }
  393.  
  394. .pinned {
  395. margin-right: 6px;
  396. font-size: 0.8em;
  397. }
  398.  
  399. .permalinks, .permalinks a, .tags a {
  400. color: {color:background};
  401. font-weight: 700;
  402. }
  403.  
  404. .permalinks a:hover, .tags a:hover {
  405. color: {color:font color};
  406. }
  407.  
  408. .permalinks li {
  409. list-style-type: none;
  410. display: inline-block;
  411. position: relative;
  412. }
  413.  
  414. .permalinks li:not(:last-of-type) {
  415. margin-right: 12px;
  416. }
  417.  
  418. /* like and reblog buttons */
  419. .reblog-b::after, .permalinks li:not(:last-of-type)::after {
  420. position: absolute;
  421. content: "";
  422. display: inline-block;
  423. width: 4px;
  424. height: 4px;
  425. background: {color:background};
  426. border-radius: 100%;
  427. top: 7px;
  428. right: -10px;
  429. }
  430.  
  431. .like-reblog {float: right;}
  432. .reblog-b {position: relative;}
  433.  
  434. .like-b {
  435. position:relative;
  436. display:inline-block;
  437. height:1em;
  438. line-height:1em;
  439. overflow:hidden;
  440. margin-bottom:-4px;
  441. margin-left: 12px;
  442. }
  443.  
  444. .like-b .like_button iframe {
  445. position:absolute;
  446. top:0;
  447. left:0;
  448. bottom:0;
  449. right:0;
  450. z-index:2;
  451. opacity:0;
  452. }
  453.  
  454. .like-b .liked + .b {color:inherit;}
  455. .like-b .liked + .b:after {content:'d';}
  456.  
  457. /* tags */
  458. .tags {
  459. background-color: {color:gradient color 2};
  460. background-image: linear-gradient(to right, {color:gradient color 1}, {color:gradient color 2});
  461. color: {color:background};
  462. padding: 15px 20px;
  463. }
  464.  
  465. .tags a:not(:last-of-type) {margin-right: 5px;}
  466.  
  467. .tags .th {
  468. font-size: .7em;
  469. vertical-align: middle;
  470. margin-right: 4px;
  471. opacity: .8;
  472. }
  473.  
  474. /* footer */
  475. {block:PermalinkPage}
  476. footer {display: none;}
  477. {/block:PermalinkPage}
  478.  
  479. footer {
  480. padding: 20px;
  481. background-color: {color:gradient color 2};
  482. background-image: linear-gradient(to right, {color:gradient color 1}, {color:gradient color 2});
  483. color: {color:background};
  484. text-align: center;
  485. overflow: hidden;
  486. }
  487.  
  488. footer a {
  489. color: {color:background};
  490. margin: 0 .25em;
  491. }
  492.  
  493. footer a:hover {color: {color:font color};}
  494.  
  495. /*permalink post notes */
  496. ol.notes {
  497. max-width: 660px;
  498. padding: 0px;
  499. margin: 0 auto;
  500. list-style: none;
  501. background: {color:posts};
  502. }
  503.  
  504. ol.notes li.note {
  505. padding: 0.5em;
  506. }
  507.  
  508. ol.notes li.note img.avatar {
  509. vertical-align: -4px;
  510. margin-right: 10px;
  511. width: 16px;
  512. height: 16px;
  513. border-radius: 100%;
  514. }
  515.  
  516. /*credit */
  517. .crd {
  518. position: fixed;
  519. bottom: 15px;
  520. right: 15px;
  521. font-size: .9em;
  522. background: {color:posts};
  523. padding: .5em .75em;
  524. }
  525.  
  526. .crd a {color: {color:font color};}
  527.  
  528. /* tumblr controls */
  529. .iframe-controls--desktop {
  530. position:fixed;
  531. top: 10px;
  532. right: 5px;
  533. z-index: 214748364789123456789;
  534. filter:invert(100%);
  535. -webkit-filter:invert(100%);
  536. -webkit-transform:scale(0.6,0.6);
  537. -webkit-transform-origin: 100% 0%;
  538. -ms-transform-origin:100% 0%;
  539. -ms-transform:scale(0.6,0.6);
  540. transform:scale(0.6,0.6);
  541. transform-origin:100% 0%;
  542. }
  543.  
  544. .iframe-controls--phone-mobile {display:none!important;}
  545. .tmblr-iframe-pushdown {padding-top:0!important;}
  546. .tmblr-iframe--app-cta-button {display:none!important;}
  547.  
  548. /* desktop and mobile responsive */
  549. @media only screen and (max-width: 1160px) {
  550. aside {
  551. width: 25%;
  552. max-width: 300px;
  553. min-width: 100px;
  554. }
  555. }
  556.  
  557. @media only screen and (max-width: 900px) {
  558. aside {
  559. position: relative;
  560. width: 90%;
  561. max-width: 670px;
  562. left: auto;
  563. margin: 50px auto 100px;
  564. }
  565.  
  566. .topbar {padding: 12px;}
  567. img.avtr, img.sbimg {display: none;}
  568. h1.blogttl {margin-right: 5px;}
  569. h1.subttl, .desc {display: inline;}
  570. .links {text-align: left;}
  571.  
  572. section.postcontainer {
  573. width: 95%;
  574. max-width: 700px;
  575. margin: 0 auto;
  576. }
  577. }
  578.  
  579. @media only screen and (max-width: 495px) {
  580. img.avtr, h1.blogttl {display: none;}
  581. }
  582.  
  583. {CustomCSS}
  584. </style>
  585. </head>
  586. <body>
  587.  
  588. <header>
  589. <div class="gradient"></div>
  590.  
  591. <div class="topbar">
  592. <h1 class="blogttl">{Title}</h1>
  593. <img src="{PortraitURL-128}" class="avtr">
  594.  
  595. <div class="hdrlinks">
  596. <a href="/">refresh</a>
  597. <a href="/ask">message</a>
  598. {block:SumbitEnabled}<a href="/submit">submit</a>{/block:SumbitEnabled}
  599. <a href="/archive">archive</a>
  600. </div>
  601. </div>
  602. </header>
  603.  
  604. <section class="content">
  605. <aside>
  606. <div class="user">
  607. <img src="{image:sidebar}" class="sbimg">
  608. <h1 class="subttl">{text:subtitle}</h1>
  609.  
  610. {block:Description}
  611. <div class="desc">
  612. {Description}
  613. </div>
  614. {/block:Description}
  615. </div>
  616.  
  617. <div class="links">
  618. <a href="/">{text:link one}</a>
  619. <a href="/">{text:link two}</a>
  620. <a href="/">{text:link three}</a>
  621. {block:HasPages}
  622. {block:Pages}
  623. <a href="{URL}">{Label}</a>
  624. {/block:Pages}
  625. {/block:HasPages}
  626. </div>
  627. </aside>
  628.  
  629. <section class="postcontainer">
  630. {block:Posts}
  631. <!-- {block:NoRebloggedFrom}
  632. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  633. {/block:NoRebloggedFrom} -->
  634. {block:ContentSource}<!-- {SourceURL}
  635. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  636. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  637. {/block:ContentSource}
  638. <article class="{posttype}post posts" id="{PostID}">
  639.  
  640. <!-- permalinks -->
  641. {Block:Date}
  642. <div class="permalinks">
  643. {block:PinnedPostLabel}<span class="pinned th th-push-pin" title="pinned post"></span>{/block:PinnedPostLabel}
  644. <li><a href="{Permalink}">{DayOfMonthWithZero}.{MonthNumberWithZero}.{ShortYear}</a></li>
  645. {block:RebloggedFrom}<li><a href="{ReblogParentURL}">via</a></li>{/block:RebloggedFrom}
  646. {block:ContentSource}<li><a href="{ReblogRootURL}">source</a></li>{/block:ContentSource}
  647.  
  648. <div class="like-reblog">
  649. <a class="reblog-b" href="{ReblogURL}" target="_blank" >reblog</a>
  650. <a class="like-b" href="#">{LikeButton}<span class="b">like</span></a>
  651. </div>
  652. </div>
  653. {/block:Date}
  654.  
  655. <!-- text posts -->
  656. {block:Text}
  657. {block:Title}
  658. <h1 class="ttl">{Title}</h1>
  659. {/block:Title}
  660.  
  661. {block:Notreblog}
  662. <div class="caption">
  663. {Body}
  664. </div>
  665. {/block:Notreblog}
  666.  
  667. {block:Rebloggedfrom}
  668. <div class="caption">
  669. <div class="reblog-list">
  670. {block:Reblogs}
  671. <div class="reblogs">
  672. <div class="reblog-header">
  673. {block:IsActive}
  674. <a class="{block:isNotOriginalEntry}sub-reblog{/block:isNotOriginalEntry}" href="{Permalink}" target="_blank">
  675. <div class="cpavtr"><img src="{PortraitURL-64}"></div>
  676. </a>
  677. {/block:IsActive}
  678. {block:IsDeactivated}
  679. <span class="inactive {block:isNotOriginalEntry}sub-reblog{/block:isNotOriginalEntry}">
  680. <div class="cpavtr"><img src="{PortraitURL-64}"></div>
  681. </span>
  682. {/block:IsDeactivated}
  683. {block:isactive}
  684. <a href="{permalink}">{username}</a>
  685. {/block:isactive}
  686. {block:isdeactivated}
  687. <a href="{permalink}" class="inactive">{username}</a>
  688. {/block:isdeactivated}
  689. </div>
  690. <div class="reblog-content">
  691. {Body}
  692. </div>
  693. </div>
  694. {/block:Reblogs}
  695. </div>
  696. </div>
  697. {/block:RebloggedFrom}
  698. {/block:Text}
  699.  
  700. <!-- photo posts -->
  701. {block:Photo}
  702. <img src="{PhotoURL-HighRes}" class="photo" alt="{PhotoAlt}">
  703. {/block:Photo}
  704.  
  705. <!-- photoset posts -->
  706. {block:Photoset}
  707. {Photoset}
  708. {/block:Photoset}
  709.  
  710. <!-- quote posts -->
  711. {block:Quote}
  712. <div class="caption">
  713. <div class="qu"><span class="th th-quote-up"></span>{Quote}</div>
  714. <div class="src">- {Source}</div>
  715. </div>
  716. {/block:Quote}
  717.  
  718. <!-- link posts -->
  719. {block:Link}
  720. <div class="caption">
  721. <div class="link">
  722. <a href="{URL}">{Name}</a>
  723. </div>
  724. </div>
  725. {/block:Link}
  726.  
  727. <!-- chat posts -->
  728. {block:Chat}
  729. <div class="caption">
  730. <ul class="chat">
  731. {block:Lines}
  732. <li>{block:Label}<div class="label">{Label}</div>{/block:Label} {Line}</li>
  733. {/block:Lines}
  734. </ul>
  735. </div>
  736. {/block:Chat}
  737.  
  738. {block:Audio}
  739. {AudioEmbed}
  740. {/block:Audio}
  741.  
  742. <!-- video posts -->
  743. {block:Video}
  744. <div class="video">{Video-500}</div>
  745. {/block:Video}
  746.  
  747. <!-- ask posts -->
  748. {block:Answer}
  749. <div class="caption">
  750. <div class="question_container">
  751. <div class="asker">
  752. <b>{Asker}</b> sent a message
  753. </div>
  754. <div class="question_text">{Question}</div>
  755. </div>
  756. </div>
  757.  
  758. {block:Answerer}
  759. <div class="caption" style="margin-top:-20px;">
  760. <div class="answer_container">
  761. <div class="answerer">
  762. {Answerer}
  763. </div>
  764. <div class="answer_text">{Answer}</div>
  765. </div>
  766. {block:Reblogs}
  767. <div class="reply_container">
  768. <div class="replier">
  769. <div class="cpavtr"><img src="{PortraitURL-64}" style="border-radius: 100%; vertical-align: middle"></div>
  770. {block:HasPermalink}<a href="{Permalink}">{/block:HasPermalink}{Username}{block:HasPermalink}</a> {/block:HasPermalink}
  771. </div>
  772. <div class="reply">{Body}</div>
  773. </div>
  774. </div>
  775. {/block:Reblogs}
  776. {/block:Answerer}
  777.  
  778. {block:NotReblog}
  779. <div class="caption" style="margin-top:-20px;">
  780. <div class="answer_container">
  781. <div class="answer_text">{Answer}</div>
  782. </div>
  783. </div>
  784. {/block:NotReblog}
  785. {/block:Answer}
  786.  
  787. <!-- captions -->
  788. {block:Caption}
  789. <div class="caption">
  790. {block:notreblog}
  791. {Caption}
  792. {/block:notreblog}
  793. {block:Rebloggedfrom}
  794. <div class="reblog-list">
  795. {block:Reblogs}
  796. <div class="reblogs">
  797. <div class="reblog-header">
  798. {block:IsActive}
  799. <a class="{block:isNotOriginalEntry}sub-reblog{/block:isNotOriginalEntry}" href="{Permalink}" target="_blank">
  800. <div class="cpavtr"><img src="{PortraitURL-64}"></div>
  801. </a>
  802. {/block:IsActive}
  803. {block:IsDeactivated}
  804. <span class="inactive {block:isNotOriginalEntry} sub-reblog{/block:isNotOriginalEntry}">
  805. <div class="cpavtr"><img src="{PortraitURL-64}"></div>
  806. </span>
  807. {/block:IsDeactivated}
  808. {block:isactive}
  809. <a href="{permalink}">{username}</a>
  810. {/block:isactive}
  811. {block:isdeactivated}
  812. <a href="{permalink}" class="inactive">{username}</a>
  813. {/block:isdeactivated}
  814. </div>
  815. <div class="reblog-content">
  816. {Body}
  817. </div>
  818. </div>
  819. {/block:Reblogs}
  820. </div>
  821. {/block:RebloggedFrom}
  822. </div>
  823. {/block:Caption}
  824.  
  825. <!-- tags -->
  826. {block:HasTags}
  827. <div class="tags">
  828. {block:Tags}
  829. <a href="{TagURL}"><span class="th th-hashtag"></span>{Tag}</a>
  830. {/block:Tags}
  831. </div>
  832. {/block:HasTags}
  833. </article>
  834.  
  835. {block:PostNotes}
  836. <div class="caption">
  837. {PostNotes}
  838. </div>
  839. {/block:PostNotes}
  840.  
  841. {/block:Posts}
  842. </section> <!-- post container ends -->
  843. </section> <!-- content ends -->
  844.  
  845. {block:Pagination}
  846. <footer>
  847. <div class="pagination">
  848. {block:PreviousPage}<a href="{PreviousPage}">backward</a>{/block:PreviousPage}
  849. {block:NextPage}<a href="{NextPage}">forward</a>{block:NextPage}
  850. </div>
  851. </footer>
  852. {/block:Pagination}
  853.  
  854. <!-- credit -->
  855. <!-- if you ever want to move my credit, please send me an ask or message to let me know -->
  856. <div class="crd"><a href="https://enbythemes.tumblr.com" title="code by rou">ENBY</a></div>
  857.  
  858. </body>
  859. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement