Advertisement
enbythemes

acing it

Jun 9th, 2019
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.85 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.  
  10. <meta name="color:background" content="#ffffff"/>
  11. <meta name="color:sidebar" content="#fafafa"/>
  12. <meta name="color:captions" content="#fafafa"/>
  13. <meta name="color:color 1" content="#000000"/>
  14. <meta name="color:color 2" content="#7e7e7e"/>
  15. <meta name="color:color 3" content="#ffffff"/>
  16. <meta name="color:color 4" content="#250aa2"/>
  17. <meta name="color:links" content="#8d74ff"/>
  18. <meta name="color:links hover" content="#7e7e7e"/>
  19. <meta name="color:bold" content="#433a6d"/>
  20. <meta name="color:selection" content="#7e7e7e"/>
  21. <meta name="color:scrollbar" content="#000000"/>
  22. <meta name="color:borders" content="#dddddd"/>
  23.  
  24. <meta name="text:scrollbar width" content="2px"/>
  25. <meta name="text:gutter size" content="4px"/>
  26. <meta name="text:link one" content="link one"/>
  27. <meta name="text:link one url" content=""/>
  28. <meta name="text:link two" content="link two"/>
  29. <meta name="text:link two url" content=""/>
  30. <meta name="text:link three" content="link three"/>
  31. <meta name="text:link three url" content=""/>
  32.  
  33. <meta name="select:text size" content="12px"/>
  34. <meta name="select:text size" content="13px"/>
  35. <meta name="select:text size" content="14px"/>
  36.  
  37. <meta name="select:scrollbar width" content="0px"/>
  38. <meta name="select:scrollbar width" content="1px"/>
  39. <meta name="select:scrollbar width" content="2px"/>
  40. <meta name="select:scrollbar width" content="3px"/>
  41. <meta name="select:scrollbar width" content="4px"/>
  42. <meta name="select:scrollbar width" content="5px"/>
  43.  
  44. <meta name="select:photoset gutter" content="1px"/>
  45. <meta name="select:photoset gutter" content="2px"/>
  46. <meta name="select:photoset gutter" content="3px"/>
  47. <meta name="select:photoset gutter" content="4px"/>
  48. <meta name="select:photoset gutter" content="5px"/>
  49.  
  50. <meta name="if:Hover Navigation" content="1"/>
  51. <meta name="if:400px Posts" content="1"/>
  52.  
  53. <!-- SCRIPTS -->
  54. <link href="https://fonts.googleapis.com/css?family=Montserrat|Open+Sans" rel="stylesheet"><link href="//dl.dropbox.com/s/vpi3f9s7nhpe7v7/honeybee.css" rel="stylesheet"><script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script><script src="https://static.tumblr.com/wgg6svp/OoTofxa0c/unnest.min.js"></script><link href="https://static.tumblr.com/0podkko/oDSpg7y88/photosets.css" rel="stylesheet">
  55. <script src="https://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script><script src ="//static.tumblr.com/fwgzvyf/Oj1o08f6h/shythemes.vr.js"></script>
  56.  
  57. <!----- style my tooltip by malihu ---->
  58. <script>
  59. (function($){
  60. $(document).ready(function(){
  61. $("a[title]").style_my_tooltips({
  62. tip_follows_cursor:true,
  63. tip_delay_time:90,
  64. tip_fade_speed:600,
  65. attribute:"title"
  66. });
  67. });
  68. })(jQuery);
  69. </script>
  70.  
  71. <!-- unnest captions by neothm and magnusthemes -->
  72. <script> $(function(){ $('article').unnest({
  73. yourCaption: ".captions",
  74. wrapName: ".cap_wrap",
  75. newCaptionUsername: true,
  76. originalPostCaptionUsername: false,
  77. tumblrAvatars: false,
  78. tumblrAvatarClass: ".cap_avatar",
  79. usernameColon: false
  80. }); }); </script>
  81.  
  82. <!-- photosets and lightboxes by annasthms and espoirthemes -->
  83. <script>
  84. function gatherData(images, arr) {
  85. for (let i = 0; i < images.length; i++) {
  86. let currentData = {
  87. "width": images[i].getAttribute('data-width'),
  88. "height": images[i].getAttribute('data-height'),
  89. "low_res": images[i].getAttribute('data-lowres'),
  90. "high_res": images[i].getAttribute('data-highres')
  91. };
  92. arr.push(currentData);
  93. }
  94. }
  95. function getIndex(elem) {
  96. let i = 0;
  97. while( (elem = elem.previousElementSibling) != null ) i++;
  98. return i;
  99. }
  100. function lightbox(elem) {
  101. let currentPhotoset = elem.parentNode;
  102. let photosetPhotos = currentPhotoset.getElementsByTagName('div');
  103. let data = [];
  104. gatherData(photosetPhotos, data);
  105. Tumblr.Lightbox.init(data, getIndex(elem) + 1);
  106. }
  107. </script>
  108. </head>
  109.  
  110. <style type="text/css">
  111. * {
  112. margin: 0;
  113. padding: 0;
  114. }
  115.  
  116. body {
  117. background: {color:background};
  118. font-family: 'Open Sans', sans-serif;
  119. font-size: {select:text size};
  120. }
  121.  
  122. a {
  123. text-decoration: none;
  124. color:{color:links};
  125. transition: all 0.5s ease;
  126. -webkit-transition: all 0.5s ease;
  127. -moz-transition: all 0.5s ease;
  128. -o-transition: all 0.5s ease;
  129. }
  130.  
  131. a:hover {
  132. color: {color:links hover};
  133. transition: all 0.5s ease;
  134. -webkit-transition: all 0.5s ease;
  135. -moz-transition: all 0.5s ease;
  136. -o-transition: all 0.5s ease;
  137. }
  138.  
  139. blockquote {
  140. margin: 8px 0;
  141. padding-left: 8px;
  142. border-left: 1px solid {color:borders};
  143. }
  144.  
  145. blockquote img, .posts img, .captions img {
  146. max-width: 100%;
  147. height: auto;
  148. }
  149.  
  150. small, big, sub, sup {
  151. font-size: {select:text size};
  152. }
  153.  
  154. b, strong {
  155. color: {color:bold};
  156. }
  157.  
  158. #s-m-t-tooltip {
  159. max-width: 300px;
  160. margin-top: -30px;
  161. margin-left: -25px;
  162. font-size: 8px;
  163. letter-spacing: 1px;
  164. text-align: center;
  165. text-transform: uppercase;
  166. padding: 5px;
  167. background-color: #fff;
  168. z-index: 999999;
  169. border: 1px solid {color:borders};
  170. }
  171.  
  172. ::selection {
  173. background: {color:selection};
  174. color: #fff;
  175. }
  176.  
  177. ::webkit-selection {
  178. background: {color:selection};
  179. color: #fff;
  180. }
  181.  
  182. ::-webkit-scrollbar {
  183. width: {select:scrollbar width};
  184. }
  185.  
  186. ::-webkit-scrollbar-thumb {
  187. background: {color:Scrollbar};
  188. }
  189.  
  190. [photoset-layout] {
  191. grid-gap: {select:photoset gutter};
  192. }
  193.  
  194. [photoset-layout] img {
  195. cursor: pointer;
  196. }
  197.  
  198. .posts ul li {
  199. list-style: none;
  200. }
  201.  
  202. .posts ul li:before {
  203. content: "›";
  204. font-size: 1em;
  205. padding-right: .5em;
  206. position: relative;
  207. top: .1em;
  208. }
  209.  
  210. .posts ol, .captions ol {
  211. list-style: none;
  212. counter-reset: my-awesome-counter;
  213. }
  214.  
  215. .posts ol li, .captions ol li {
  216. counter-increment: my-awesome-counter;
  217. }
  218.  
  219. .posts ol li:before, .captions ol li::before {
  220. content: counter(my-awesome-counter) ". ";
  221. padding-right: .2em;
  222. font-size: 10px;
  223. }
  224.  
  225. .container {
  226. width:calc(400px + 150px + 80px);
  227. margin: 50px auto;
  228. }
  229.  
  230. .sidebar {
  231. width: 150px;
  232. text-align: center;
  233. position: fixed;
  234. }
  235.  
  236. {block:IfHoverNavigation}
  237. .sidebar:hover .links {
  238. opacity: 1;
  239. transition: all 0.5s ease;
  240. -webkit-transition: all 0.5s ease;
  241. -moz-transition: all 0.5s ease;
  242. -o-transition: all 0.5s ease;
  243. }
  244. {/block:IfHoverNavigation}
  245.  
  246. .sbpic {
  247. width: fit-content;
  248. margin: 0 auto;
  249. }
  250.  
  251. .border {
  252. width: 100px;
  253. height: 100px;
  254. position: relative;
  255. border: 4px solid transparent;
  256. border-radius: 100%;
  257. background: linear-gradient(150deg, {color:color 1} 0%, {color:color 2} 25%, {color:color 3} 60%, {color:color 4} 100%);
  258. background-clip: padding-box;
  259. padding: 4px;
  260. }
  261.  
  262. .border::after {
  263. position: absolute;
  264. top: -4px; bottom: -4px;
  265. left: -4px; right: -4px;
  266. content: '';
  267. z-index: -1;
  268. border-radius: 100%;
  269. }
  270.  
  271. .border img {
  272. width: 94px;
  273. border-radius: 100%;
  274. padding: 3px;
  275. background: #fff;
  276. }
  277.  
  278. .about, .links {
  279. width: 140px;
  280. padding: 5px;
  281. background: {color:sidebar};
  282. }
  283.  
  284. .ttl {
  285. font-weight: bold;
  286. }
  287.  
  288. .ttl, .desc, .links {
  289. margin-top: 10px;
  290. }
  291.  
  292. {block:IfHoverNavigation}
  293. .links {
  294. opacity: 0;
  295. transition: all 0.5s ease;
  296. -webkit-transition: all 0.5s ease;
  297. -moz-transition: all 0.5s ease;
  298. -o-transition: all 0.5s ease;
  299. }
  300. {/block:IfHoverNavigation}
  301.  
  302. .links ul {
  303. list-style: none;
  304. }
  305.  
  306. .links ul li {
  307. margin: 5px 0;
  308. }
  309.  
  310. .pagination {
  311. width: 150px;
  312. text-align: center;
  313. position: fixed;
  314. bottom: 20px;
  315. word-spacing: 5px;
  316. }
  317.  
  318. {block:If400pxPosts}
  319. .postcontainer {
  320. width: 400px;
  321. margin-left:calc(150px + 80px);
  322. }
  323.  
  324. .posts {
  325. width: 400px;
  326. margin-bottom: 80px;
  327. }
  328.  
  329. .postinfo {
  330. white-space: nowrap;
  331. overflow: hidden;
  332. width: 400px;
  333. margin-bottom: 10px;
  334. }
  335.  
  336. .postinfo:before, .postinfo:after {
  337. background-color: {color:borders};
  338. content: "";
  339. display: inline-block;
  340. height: 1px;
  341. position: relative;
  342. vertical-align: middle;
  343. }
  344.  
  345. .postinfo:before {
  346. right: 0.3em;
  347. width: 180px;
  348. }
  349.  
  350. .postinfo:after {
  351. left: 0.3em;
  352. width: 100%;
  353. }
  354.  
  355. .captions {
  356. width: calc(400px - 8px)
  357. margin-left: 0px;
  358. }
  359. {/block:If400pxPosts}
  360.  
  361. {block:IfNot400pxPosts}
  362. .postcontainer {
  363. width: 500px;
  364. margin-left:calc(150px + 80px);
  365. }
  366.  
  367. .posts {
  368. width: 500px;
  369. margin-bottom: 80px;
  370. }
  371.  
  372. .postinfo {
  373. white-space: nowrap;
  374. overflow: hidden;
  375. width: 500px;
  376. margin-bottom: 10px;
  377. }
  378.  
  379. .postinfo:before, .postinfo:after {
  380. background-color: {color:borders};
  381. content: "";
  382. display: inline-block;
  383. height: 1px;
  384. position: relative;
  385. vertical-align: middle;
  386. }
  387.  
  388. .postinfo:before {
  389. right: 0.3em;
  390. width: 230px;
  391. }
  392.  
  393. .postinfo:after {
  394. left: 0.3em;
  395. width: 100%;
  396. }
  397.  
  398. .captions {
  399. width: calc(540px - 8px);
  400. margin-left: 0px;
  401. }
  402. {block:IfNot400pxPosts}
  403.  
  404. .captions {
  405. padding: 5px;
  406. margin-top: 10px;
  407. background: {color:captions};
  408. }
  409.  
  410. .txt, .asks {
  411. padding: 5px;
  412. }
  413.  
  414. .t {
  415. font-size: 13px;
  416. margin-left: 5px;
  417. margin-bottom: 8px;
  418. }
  419.  
  420. .question {
  421. font-weight: bold;
  422. font-size: calc({select:text size} - 1px);
  423. }
  424.  
  425. .answer {
  426. margin-top: 5px;
  427. }
  428.  
  429. .playbutton {
  430. position: relative;
  431. margin-top: 25px;
  432. margin-left: 24px;
  433. z-index: 9;
  434. width: 33px;
  435. height: 30px;
  436. overflow: hidden;
  437. }
  438.  
  439. .albumart img {
  440. position: relative;
  441. margin-top: -55px;
  442. margin-left: 0px
  443. height: 80px;
  444. width: 80px;
  445. }
  446.  
  447. .trackinfo {
  448. position: relative;
  449. margin-left: 80px;
  450. height: 70px;
  451. margin-top: -84px;
  452. padding: 5px 10px;
  453. }
  454.  
  455. .trackinfo b {
  456. color: #505050;
  457. text-transform: uppercase;
  458. font-size: 11px;
  459. }
  460.  
  461. .chat span {
  462. margin-right: 3px;
  463. text-transform: uppercase;
  464. color: #505050;
  465. font-size: 11px;
  466. }
  467.  
  468. .quote {
  469. font-family: 'Montserrat', sans-serif;
  470. text-align: center;
  471. font-size:calc({select:text size} + 1px);
  472. }
  473.  
  474. .source {
  475. margin-top: 6px;
  476. text-align: right;
  477. font-size:calc({select:text size} - 2px);
  478. }
  479.  
  480. {block:IndexPage}
  481. .like-reblog {
  482. margin-top: -70px;
  483. margin-bottom: 80px;
  484. text-align: center;
  485. }
  486.  
  487. svg {
  488. width: 10px;
  489. height: auto;
  490. opacity: .5;
  491. padding: 1px;
  492. display: block;
  493. overflow: visible;
  494. }
  495.  
  496. .controls a {
  497. position: relative;
  498. display: inline-block;
  499. overflow: hidden;
  500. padding: 5px;
  501. width: 12px;
  502. height: 12px;
  503. }
  504.  
  505. .controls .reblog {
  506. opacity: .93;
  507. }
  508.  
  509. .controls .reblog svg {
  510. width: 9px;
  511. margin-top: 1px;
  512. }
  513.  
  514. .controls .like .liked + svg {
  515. opacity: 1;
  516. }
  517.  
  518. .controls .like .liked + svg path {
  519. fill: #ec5a5a;
  520. }
  521.  
  522. .controls .like .like_button {
  523. position: relative;
  524. }
  525.  
  526. .controls .like .like_button iframe {
  527. position: absolute;
  528. top: 0;
  529. left: 0;
  530. bottom: 0;
  531. right: 0;
  532. z-index: 2;
  533. opacity: 0.000001;
  534. }
  535. {/block:IndexPage}
  536.  
  537. {block:PermalinkPage}
  538. .tags {
  539. margin-top: -70px;
  540. margin-bottom: 80px;
  541. font-size:calc({select:text size} - 1px);
  542. }
  543.  
  544. .tags .th {
  545. font-size: calc({select:text size} - 5px);
  546. color: #ccc;
  547. margin-left: 5px;
  548. }
  549.  
  550. .tags .th:first-of-type {
  551. margin-left: 0px;
  552. }
  553. {/block:PermalinkPage}
  554.  
  555. ol.notes {
  556. padding: 0px;
  557. list-style-type: none;
  558. border-top: solid 1px {color:borders};
  559. font-size: 11px;
  560. }
  561.  
  562. ol.notes li.note {
  563. padding: 8px;
  564. }
  565.  
  566. ol.notes li.note img.avatar {
  567. vertical-align: -4px;
  568. margin-right: 10px;
  569. width: 16px;
  570. height: 16px;
  571. }
  572.  
  573. ol.notes li.note .answer_content {
  574. font-weight: normal;
  575. }
  576.  
  577. ol.notes li.note blockquote {
  578. border-color: #eee;
  579. padding: 4px 10px;
  580. margin: 10px 0px 0px 25px;
  581. }
  582.  
  583. ol.notes li.note blockquote a {
  584. text-decoration: none;
  585. }
  586.  
  587. .cr {
  588. border-radius: 10px;
  589. bottom: 8px;
  590. display: inline;
  591. font-size: 10px;
  592. padding: 6px;
  593. position: fixed;
  594. right: 8px;
  595. background: {color:background};
  596. padding: 6px;
  597. border: 1px #ccc solid;
  598. }
  599.  
  600. .cr:hover {
  601. border-radius: 5px;
  602. transition: all 0.3s ease;
  603. -webkit-transition: all 0.3s ease;
  604. -moz-transition: all 0.3s ease;
  605. -o-transition: all 0.3s ease;
  606. }
  607. .cr a {color: {color:links};}
  608. .cr a:hover {color: #bb7ccb;}
  609.  
  610. /* CUSTOM CONTROLS BY CYANTISTS */
  611.  
  612. iframe.tmblr-iframe {
  613. z-index:99999999999999!important;
  614. top:0!important;
  615. right:0!important;
  616. opacity:0.4;
  617. /* delete invert(1) from here */
  618. filter:invert(1) contrast(150%);
  619. -webkit-filter:invert(1) contrast(150%);
  620. -o-filter:invert(1) contrast(150%);
  621. -moz-filter:invert(1) contrast(150%);
  622. -ms-filter:invert(1) contrast(150%);
  623. /* to here if your blog has a dark background */
  624. transform:scale(0.65);
  625. transform-origin:100% 0;
  626. -webkit-transform:scale(0.65);
  627. -webkit-transform-origin:100% 0;
  628. -o-transform:scale(0.65);
  629. -o-transform-origin:100% 0;
  630. -moz-transform:scale(0.65);
  631. -moz-transform-origin:100% 0;
  632. -ms-transform:scale(0.65);
  633. -ms-transform-origin:100% 0;}
  634.  
  635. iframe.tmblr-iframe:hover {
  636. opacity:0.6!important;}
  637. </style>
  638.  
  639. <body>
  640. <!-- PLEASE KEEP INTACT -->
  641. <div class="cr"><a href="https://enybyresources.tumblr.com" title="theme by xchelspaige"><span class="th th-unicorn-o"></span></a></div>
  642. <!-- PLEASE KEEP INTACT -->
  643.  
  644. <div class="container"><div class="sidebar">
  645. <div class="about"><div class="sbpic"><div class="border"><img src="https://i.imgur.com/TRhfllr.png"></div></div>
  646. <div class="ttl">{Title}</div>{block:Description}<p class="desc">{Description}</p>{/block:Description}</div>
  647.  
  648. <div class="links"><ul><li><a href="/">home</a></li><li><a href="/ask">message</a></li><li><a href="{text:link one url}">{text:link one}</a></li><li><a href="{text:link two url}">{text:link two}</a></li><li><a href="{text:link three url}">{text:link three}</a></li></ul></div>
  649.  
  650. {block:Pagination}<div class="pagination">{block:PreviousPage}<a href="{PreviousPage}">prev</a>{/block:PreviousPage}{block:NextPage}<a href="{NextPage}">next</a>{/block:NextPage}</div>{/block:Pagination}
  651. </div> <!-- sidebar ends -->
  652.  
  653. <div class="postcontainer">{block:Posts}<article class="posts" id="{PostID}">
  654. <div class="postinfo"><a href="{Permalink}" title="posted {TimeAgo}">{MonthNumber}.{DayOfMonthWithZero}.{ShortYear}</a></div>
  655.  
  656. {block:Text}{block:Title}<div class="t"><a href="{PermalinkPage}">{Title}</a></div>{/block:Title}<div class="txt">{Body}</div>{/block:Text}
  657.  
  658. {block:Photo}<a href="{PhotoURL-HighRes}"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/></a>{block:Caption}<div class="captions">{Caption}{/block:Caption}{/block:Photo}
  659.  
  660. {block:Panorama}{LinkOpenTag}<img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>{LinkCloseTag}{block:Caption}<div class="captions">{Caption}</div>{/block:Caption}{/block:Panorama}
  661.  
  662. {block:Photoset}<div class="photoset-grid" photoset-layout="{PhotosetLayout}">{block:Photos}<div data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}" data-lowres="{PhotoURL-500}" data-highres="{PhotoURL-HighRes}" onclick="lightbox(this)"><img src="{PhotoURL-HighRes}" /></div>{/block:Photos}</div>{block:Caption}<div class="captions">{Caption}</div>{/block:Caption}{/block:Photoset}
  663.  
  664. {block:Quote}<div class="quote">{Quote}</div>{block:Source}<div class="source">-- {Source}{/block:Source}</div>{/block:Quote}
  665.  
  666. {block:Link}<div class="t" style="margin-left:0px;"><a href="{URL}" class="link" {Target}>{Name}</a></div>{block:Description}{Description}{/block:Description}{/block:Link}
  667.  
  668. {block:Chat}<div class="chat"><ul>
  669. {block:Lines}<div class="{Alt} user_{UserNumber}">{block:Label}<span>{Label}</span>{/block:Label}{Line}</div>{/block:Lines}</ul>
  670. {/block:Chat}
  671.  
  672. {block:Video}<div class="video">{Video-500}</div>{block:Caption}<div class="captions">{Caption}</div>{/block:Caption}{/block:Video}
  673.  
  674. {block:Audio}{block:AudioPlayer}
  675. <div class="playbutton">{AudioPlayerGrey}</div>{block:AlbumArt}<div class="albumart"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}
  676. <div class="trackinfo">{block:TrackName}<b>track: </b>{TrackName}{/block:TrackName} <br>{block:Artist}<b>artist: </b>{Artist}{/block:Artist} <br>{block:Album}<b>album: </b>{Album}{/block:Album} <br>{block:PlayCount}<b>plays: </b>{PlayCount}{/block:PlayCount}</div>
  677. {block:Caption}<div class="captions">{Caption}</div>{/block:Caption}
  678. {/block:AudioPlayer}{/block:Audio}
  679.  
  680. {block:Answer}<div class="asks"><div class="question">{Asker}: {Question}</div><div class="answer">{Answer}</div></div>{/block:Answer}
  681. </article>
  682.  
  683. {block:PermalinkPage}{block:HasTags}
  684. <div class="tags">{block:Tags}<span class="th th-chevron-right"></span> <a href="{TagURL}">{Tag}</a>{/block:Tags}</div>
  685. {/block:HasTags}{/block:PermalinkPage}
  686.  
  687. {block:Date}{block:IndexPage}
  688. <div class="like-reblog"><div class="controls">
  689. <a href="{ReblogURL}" title="reblog this post" target="_blank" class="reblog">
  690. <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" viewBox="0 0 361.095 361.095" style="enable-background:new 0 0 361.095 361.095;" xml:space="preserve"><g><g><path d="M182.595,325.678c-63.183,0-120.133-42.217-138.267-102.567c-2.833-9.067-12.183-14.167-21.25-11.333 c-9.067,2.833-14.167,12.183-11.333,21.25c22.95,75.933,91.517,126.65,170.85,126.65c98.317,0,178.5-80.183,178.5-178.5 s-80.183-178.5-178.5-178.5c-55.817,0-108.233,26.633-141.667,69.7l-7.083-56.1c-1.133-9.35-9.633-15.867-18.983-14.733 C5.511,2.678-1.005,11.178,0.128,20.528l13.317,103.7c1.133,8.5,8.5,14.733,16.717,14.733c0.567,0,1.417,0,1.983,0l102.567-11.617 c9.35-1.133,16.15-9.35,15.017-18.7s-9.35-16.15-18.7-15.017l-68.85,7.65c26.633-39.95,71.683-64.6,120.417-64.6 c79.617,0,144.5,64.883,144.5,144.5S262.211,325.678,182.595,325.678z"/></g></g></svg></a>
  691. <a href="#" class="like" title="like this post">{LikeButton}
  692. <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Capa_1" x="0px" y="0px" viewBox="0 0 442.403 442.403" style="enable-background:new 0 0 442.403 442.403;" xml:space="preserve"><g><g><path d="M213.05,422.652c2.833,1.7,5.95,2.833,9.35,2.833c3.117,0,6.517-0.85,9.35-2.833c7.65-5.1,187.283-123.533,207.683-243.95 c10.483-62.333-8.783-100.867-26.633-122.117c-20.967-24.933-52.133-39.667-83.017-39.667c-10.2,0-20.117,1.7-28.9,5.1 c-43.067,16.15-72.25,44.767-88.117,64.317c-15.583-19.267-42.217-47.033-74.517-58.083c-9.917-3.4-20.683-5.1-32.017-5.1 c-28.9,0-56.383,11.9-75.367,32.867c-16.717,18.417-35.7,53.55-29.75,114.75C13.016,291.185,204.833,417.268,213.05,422.652z M56.083,78.685c17.283-18.983,38.817-21.817,50.15-21.817c7.367,0,14.45,1.133,20.967,3.4 c39.383,13.317,70.833,63.467,71.4,63.75c3.117,5.1,8.783,8.217,14.733,7.933c5.95,0,11.333-3.4,14.45-8.5 c0.283-0.567,28.617-48.733,85.283-69.983c4.817-1.7,10.767-2.833,16.717-2.833c20.967,0,42.217,10.483,56.95,27.767 c19.267,22.667,25.783,55.533,18.983,94.633c-7.367,43.067-42.5,94.633-101.717,149.317c-33.433,30.883-66.3,54.683-81.6,65.45 c-16.15-11.05-51-36.55-86.417-68.85C74.216,262.285,39.366,209.868,35.116,167.368C31.433,128.552,38.516,97.952,56.083,78.685z"/></g></g></svg></a></div></div>
  693. {/block:Date}{/block:IndexPage}
  694. {/block:Posts}
  695. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:Posts}
  696.  
  697. {block:NoRebloggedFrom}
  698. <!--{block:RebloggedFrom}
  699. {ReblogParentName}
  700. {/block:RebloggedFrom}-->
  701. {/block:NoRebloggedFrom}
  702.  
  703. {block:ContentSource}
  704. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoUrl}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  705. {/block:SourceLogo}
  706. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  707. {/block:ContentSource}
  708. </div> <!-- post container ends -->
  709. </div> <!-- container ends -->
  710. </body>
  711. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement