Advertisement
Carolaine_Vieira

Collection

Mar 31st, 2016
755
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.35 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <title>{Title}</title>
  6. <link rel="shortcut icon" href="{Favicon}">
  7. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  8. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  9.  
  10. <meta name="color:Background" content="#f6f6f6"/>
  11. <meta name="color:Text" content="#999"/>
  12. <meta name="color:Link" content="#999"/>
  13. <meta name="color:Link hover" content="#ccc"/>
  14. <meta name="color:Accent" content="#548"/>
  15. <meta name="color:Accent2" content="#548"/>
  16. <meta name="color:Post bg" content="#fff"/>
  17. <meta name="color:Post borders" content="#eee"/>
  18. <meta name="color:Perma link" content="#999"/>
  19. <meta name="color:Sidebar text" content="#fff"/>
  20. <meta name="color:Sidebar link" content="#fff"/>
  21. <meta name="color:Sidebar bg" content="#fff"/>
  22.  
  23. <meta name="if:InfiniteScroll" content="0"/>
  24.  
  25. <meta name="image:Background" content=""/>
  26. <meta name="image:Sidebar" content=""/>
  27.  
  28. <meta name="text:Subtitle" content="esse é o tempo"/>
  29. <meta name="text:Link1Title" content="link"/>
  30. <meta name="text:Link1Url" content="/"/>
  31. <meta name="text:Link2Title" content="link"/>
  32. <meta name="text:Link2Url" content="/"/>
  33. <meta name="text:Link3Title" content="link"/>
  34. <meta name="text:Link3Url" content="/"/>
  35. <meta name="text:Link4Title" content="link"/>
  36. <meta name="text:Link4Url" content="/"/>
  37.  
  38. <link href='https://fonts.googleapis.com/css?family=Roboto|Open+Sans|Lato|Raleway|PT+Sans|Droid+Sans' rel='stylesheet' type='text/css'>
  39. <link href='https://fonts.googleapis.com/css?family=Quicksand:400,700,300' rel='stylesheet' type='text/css'>
  40. <link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
  41. <link href="//maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css" rel="stylesheet">
  42.  
  43. <script>
  44. window.onload = function () {
  45. document.body.insertAdjacentHTML( 'beforeEnd', '<iframe id="my-like-frame" style="display:none;"></iframe>' );
  46. document.addEventListener( 'click', function ( event ) {
  47. var myLike = event.target;
  48. if( myLike.className.indexOf( 'my-like' ) > -1 ) {
  49. var frame = document.getElementById( 'my-like-frame' ),
  50. liked = ( myLike.className == 'my-liked' ),
  51. command = liked ? 'unlike' : 'like',
  52. reblog = myLike.getAttribute( 'data-reblog' ),
  53. id = myLike.getAttribute( 'data-id' ),
  54. oauth = reblog.slice( -8 );
  55. frame.src = 'http://www.tumblr.com/' + command + '/' + oauth + '?id=' + id;
  56. liked ? myLike.className = 'my-like' : myLike.className = 'my-liked';
  57. };
  58. }, false );
  59. };
  60. </script>
  61.  
  62. <script type="text/javascript"
  63. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  64. <script type="text/javascript" src="http://static.tumblr.com/7qjmkr5/IUmmdsy41/jquery.style-my-tooltips.js"></script>
  65. <script>
  66. (function($){
  67.  
  68. $(document).ready(function(){
  69. $("[title]").style_my_tooltips();
  70. });
  71. })(jQuery);
  72. </script>
  73.  
  74. <style type="text/css">
  75.  
  76. #s-m-t-tooltip {
  77.  
  78. max-width:300px;
  79. padding:6px;
  80. padding-left:8px;
  81. padding-right:8px;
  82. margin:15px 20px;
  83. font-size:9px;
  84. letter-spacing:1px;
  85. text-transform:uppercase;
  86. color:{color:post bg};
  87. background:{color:accent};
  88. z-index:9999999;
  89.  
  90. }
  91.  
  92. .my-like {
  93. cursor:pointer;
  94. display:inline-block;
  95. vertical-align:top;
  96. background:transparent;
  97. color:{color:perma link};
  98. }
  99. .my-liked, .my-like:hover {
  100. background:transparent;
  101. color: red;
  102. cursor:pointer;
  103. display:inline-block;
  104. vertical-align:top;
  105. }
  106.  
  107. hr {
  108. border:1px solid #eee;
  109. width:180px;
  110. margin-top:20px;
  111. margin-bottom:20px;
  112. }
  113.  
  114. body {
  115. background: {color:background} url("{image:background}") fixed;
  116. color:{color:text};
  117. font-size:12px;
  118. font-family:Roboto;
  119. }
  120.  
  121. a {
  122. text-decoration:none;
  123. color:{color:link};
  124. -webkit-transition: all 0.5s ease-out;
  125. -moz-transition: all 0.5s ease-out;
  126. -ms-transition: all 0.5s ease-out;
  127. -o-transition: all 0.5s ease-out;
  128. transition: all 0.5s ease-out;
  129. }
  130. a:hover {
  131. color:{color:link hover};
  132. -webkit-transition: all 0.5s ease-out;
  133. -moz-transition: all 0.5s ease-out;
  134. -ms-transition: all 0.5s ease-out;
  135. -o-transition: all 0.5s ease-out;
  136. transition: all 0.5s ease-out;
  137.  
  138. }
  139.  
  140. #post {
  141. width:500px;
  142. background:transparent;
  143. margin-left:550px;
  144. }
  145.  
  146. .entry {
  147. border-radius:4px;
  148. float:left;
  149. width:500px;
  150. padding:0px;
  151. margin:50px;
  152. background:{color:post bg};
  153. border:1px solid {color:post borders};
  154. }
  155.  
  156. .entry .permpm {
  157. border:1px solid {color:post borders};
  158. border-left-color:transparent;
  159. width:60px;
  160. height:auto;
  161. position:absolute;
  162. margin-left:500px;
  163. margin-top:-1px;
  164. background:{color:post bg};
  165. text-transform:lowercase;
  166. opacity:0.0;
  167. padding:15px;
  168. font-size:10px;
  169. text-align:left;
  170. {block:PermalinkPage}
  171. display:none;
  172. {/block:PermalinkPage}
  173. -webkit-transition: all 0.5s ease-out;
  174. -moz-transition: all 0.5s ease-out;
  175. -ms-transition: all 0.5s ease-out;
  176. -o-transition: all 0.5s ease-out;
  177. transition: all 0.5s ease-out;
  178.  
  179. }
  180.  
  181. .entry:hover .permpm {
  182.  
  183. opacity:1;
  184. -webkit-transition: all 0.5s ease-out;
  185. -moz-transition: all 0.5s ease-out;
  186. -ms-transition: all 0.5s ease-out;
  187. -o-transition: all 0.5s ease-out;
  188. transition: all 0.5s ease-out;
  189.  
  190. }
  191.  
  192. #page4 {
  193. height:auto;
  194. width:auto;
  195. letter-spacing:1px;
  196. margin-left:auto;
  197. margin-right:auto;
  198. margin-top:20px;
  199. margin-bottom:70px;
  200. font-size:10px;
  201. text-transform:uppercase;
  202. z-index:4;
  203. text-align:center;
  204. background:transparent;
  205. }
  206.  
  207. #page4 a{
  208. margin-left:1px;
  209. background:{color:post bg};
  210. border:1px solid {color:post borders};
  211. border-radius:3px;
  212. padding:10px;
  213. color:{color:text};
  214. text-decoration:none;
  215. -webkit-transition:all 0.8s ease-out;
  216. -moz-transition:all 0.8s ease-out;
  217. transition:all 0.8s ease-out;
  218. }
  219. #page4 a:hover{
  220. color:{color:post bg};
  221. background:{color:accent};
  222. border:1px solid {color:accent};
  223. -webkit-transition:all 0.8s ease-out;
  224. -moz-transition:all 0.8s ease-out;
  225. transition:all 0.8s ease-out;
  226. }
  227.  
  228. #top1 { position:fixed; width:auto; height:auto; letter-spacing: 1px; right:10px; bottom:10px; padding:8px; font-size:10px; line-height:12px; text-align:center; z-index:99; text-transform:uppercase; font-family:montserrat;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;transition:all 0.3s ease-out;text-shadow:none;}#top1 a{text-shadow:none;}#top1 a:hover {text-shadow:none;}#top1:hover {
  229. -webkit-transition:all 0.3s ease-out;
  230. -moz-transition:all 0.3s ease-out;
  231. transition:all 0.3s ease-out;
  232. -moz-transform: scale(1.5);
  233. -webkit-transform: scale(1.5);
  234. -o-transform: scale(1.5);
  235. -ms-transform: scale(1.5);
  236. transform: scale(1.5);
  237. text-shadow:none;
  238. }
  239.  
  240. #notas {
  241. margin-top:0px;
  242. width:95%;
  243. height:200px;
  244. overflow-y:auto;
  245. padding:20px;
  246. text-transform:lowercase;
  247. margin-left:auto;
  248. margin-right:auto;
  249. float:center;
  250. }
  251.  
  252. .notes img {
  253. width: 15px;
  254. border-radius:2px;
  255. float:right;
  256. list-style:none;
  257. -webkit-transition: all 0.5s linear;
  258. -moz-transition: all 0.5s linear;
  259. transition: all 0.5s linear;}
  260. ol.notes, .notes li {
  261. border-bottom:1px solid {color:post borders};
  262. list-style:none;
  263. width: 100%;
  264. padding:10px;
  265. font-size:10px;
  266. margin-top: 5px;
  267. margin-left:0px;
  268. padding-left: 0px}
  269. .notes li:hover img {
  270. list-style:none;
  271. -webkit-transition: all 0.5s linear;
  272. -moz-transition: all 0.5s linear;
  273. transition: all 0.5s linear;}
  274.  
  275. /*tumblr controls*/
  276. #tumblr_controls, .tmblr-iframe{ z-index:9999999 !important;
  277. -webkit-filter:invert(100%); -moz-filter:invert(100%); -o-filter:invert(100%); -ms-filter:invert(100%); filter:invert(100%); position:fixed!important;
  278. right:0px!important; opacity:.5; top:0px !important; margin-top:0px !important;
  279. -webkit-transition:all 0.6s ease-out;-webkit-transition: opacity 0.7s linear;opacity: 0.2;-webkit-transition: all 0.8s ease-out;-moz-transition: all 0.8s ease-out;transition: all 0.8s ease-out}
  280.  
  281. #tumblr_controls, .tmblr-iframe:hover{ z-index:9999999 !important;
  282. opacity:.9;webkit-transition: all 0.4s ease-out;-moz-transition: all 0.4s ease-out;transition: all 0.4s ease-out;
  283. -webkit-transition:all 0.6s ease-out;-webkit-filter:invert(80%); -moz-filter:invert(80%); -o-filter:invert(80%); -ms-filter:invert(80%); filter:invert(80%);}
  284.  
  285. ol, ul {padding:0px;list-style-type:none;}
  286. ul li {position:relative;padding-left:20px;}
  287. ul li:before {
  288. content:'';
  289. position:absolute;
  290. display:block;
  291. top:8px;
  292. left:0px;
  293. width:10px;
  294. height:1px;
  295. background:{color:accent};
  296. }
  297.  
  298. ::-webkit-scrollbar {height:5px; width:2px;}
  299.  
  300. ::-webkit-scrollbar-track-piece {
  301. background-color:{color:background};
  302. }
  303.  
  304. ::-webkit-scrollbar-thumb {
  305. background-color:{color:accent};
  306. }
  307.  
  308. .quote {
  309.  
  310. font-size:18px;
  311. text-align:center;
  312. padding-left:35px;
  313. padding-right:35px;
  314. padding:20px;
  315. padding-top:15px;
  316.  
  317. }
  318. .qsub {
  319.  
  320. font-size:13px;
  321.  
  322. }
  323.  
  324. .ch {
  325. padding:20px;
  326. background:transparent;
  327. }
  328. .ch .ch1 {
  329. padding:10px;
  330. margin-bottom:5px;
  331. }
  332. .ch1:nth-child(2n+1){
  333. background:#fbfbfb;
  334. border:1px solid {color:post borders};
  335. }
  336. .ch1:nth-child(2n+2){
  337. background:#fbfbfb;
  338. border:1px solid {color:post borders};
  339. padding-left:20px;
  340. }
  341. .ch .ch1 b:nth-child(2n+1){
  342. color:{color:accent};
  343. text-transform:uppercase;
  344. font-size:11px;}
  345. .ch .ch1 b:nth-child(2n+2){
  346. color:{color:accent2};
  347. text-transform:uppercase;
  348. font-size:11px;}
  349.  
  350. h1 {
  351.  
  352. text-align:center;
  353. font-size:17px;
  354. text-transform:uppercase;
  355. margin-top:15px;
  356.  
  357. }
  358.  
  359. blockquote {
  360.  
  361. margin-left:15px;
  362. padding-left:10px;
  363. border-left:2px solid {color:post borders};
  364.  
  365. }
  366. blockquote img{max-width:300px !important; width:300px !important;}
  367.  
  368. .caption {padding:20px; padding-top:0px;}
  369. .tcaption {padding:20px; padding-top:0px;}
  370. .caption a{border-bottom:1px solid {color:accent};}
  371. .caption a:hover {border-bottom:1px solid;}
  372.  
  373. .albumfoto{
  374.  
  375. float:left;
  376. width:80px;
  377. margin-top:5px;
  378. margin-left:10px;
  379.  
  380. }
  381. .albumfoto img{
  382.  
  383. width:80px;
  384. padding:7px;
  385. background:transparent;
  386. border-radius:100%;
  387.  
  388. }
  389. .audiodesc {
  390.  
  391. margin-left:100px;
  392. padding:10px;
  393. background:transparent;
  394. margin-top:15px;
  395. min-height:64px;
  396. font-weight:bold;
  397. margin-bottom:10px;
  398. font-size:9.5px;
  399. text-transform:uppercase;
  400.  
  401. }
  402. .audioplay {
  403.  
  404. position:absolute;
  405. overflow:hidden;
  406. max-width:30px;
  407. height:28px;
  408. background:transparent;
  409. margin-left:33px;
  410. margin-top:-65px;
  411.  
  412. }
  413.  
  414. .pessoap a{
  415. color:{color:post bg};
  416. text-transform:uppercase;
  417. font-size:13px;
  418. font-weight:bold;
  419.  
  420. }
  421. .pessoapfoto img{
  422.  
  423. float:left;
  424. border-radius:100%;
  425. margin-top:-25px;
  426. margin-left:198px;
  427. padding:4px;
  428. background:{color:post borders};
  429.  
  430. }
  431. .pergunta {
  432. background:{color:accent};
  433. color:{color:post bg};
  434. padding:15px;
  435. padding-bottom:38px;
  436. margin-left:0px;
  437. border-bottom:2px solid {color:post borders};
  438. text-align:center;
  439. }
  440. .sresposta {
  441. text-align:center;
  442. padding:15px;
  443. padding-top:25px;
  444. background:transparent;
  445. border-top:2px solid {color:post borders};
  446.  
  447. }
  448. .srespostafoto img{
  449. border-radius:100%;
  450. float:right;
  451. margin-top:-25px;
  452. margin-right:188px;
  453. padding:4px;
  454. background:{color:post borders};
  455.  
  456. }
  457. .seureblog {
  458. padding:15px;
  459. margin-left:0px;
  460. border-top:1px solid {color:post borders};
  461. text-align:left;
  462. text-transform:uppercase;
  463. font-size:10px;
  464. {block:PermalinkPage}
  465. display:none;
  466. {/block:PermalinkPage}
  467. }
  468. .seureblog2 {
  469. height:16px;
  470. padding:15px;
  471. margin-left:0px;
  472. border-bottom:1px solid {color:post borders};
  473. background:#fbfbfb;
  474. text-align:left;
  475. text-transform:uppercase;
  476. font-size:10px;
  477. {block:PermalinkPage}
  478. display:none;
  479. {/block:PermalinkPage}
  480. }
  481. .seureblog a {
  482.  
  483. margin-right:8px;
  484. color:{color:perma link};
  485.  
  486. }
  487. .si {
  488.  
  489. float:left;
  490. width:24px;
  491. max-width:24px;
  492. border-radius:100%;
  493. margin-top:-8px;
  494. margin-left:-7px;
  495. z-index:0;
  496. position:relative;
  497. padding:3px;
  498. background:transparent;
  499.  
  500. }
  501.  
  502. .si img{
  503.  
  504. max-width:24px;
  505. z-index:0;
  506. position:relative;
  507. float:left;
  508. width:24px;
  509.  
  510. }
  511.  
  512. .sit {
  513.  
  514. float:left;
  515. margin-left:6px;
  516. text-transform:lowercase;
  517. margin-top:1px;
  518. font-size:11px;
  519.  
  520.  
  521. }
  522. .sit a{color:{color:perma link};}
  523.  
  524. .pagination {display:none;}
  525.  
  526. #navigation{
  527. background:transparent;
  528. text-align:left;
  529. margin-top:5px;
  530. margin-bottom:5px;
  531. padding:15px;
  532. padding-top:5px;
  533. width:229px;
  534. margin-left:auto;
  535. margin-right:auto;
  536. }
  537. #navigation a {
  538. position:relative;
  539. cursor:pointer;
  540. text-shadow:none;
  541. padding:5px;
  542. padding-top:10px;
  543. padding-bottom:10px;
  544. display:inline-block;
  545. color:{color:sidebar link};
  546. width:220px;
  547. background:transparent;
  548. border-bottom:1px solid {color:post borders};
  549. -webkit-transition:all 0.3s ease-out;
  550. -moz-transition:all 0.3s ease-out;
  551. transition:all 0.3s ease-out;
  552. }
  553. #navigation a:hover:nth-child(2n+1) {
  554. text-shadow:none;
  555. color:{color:accent};
  556. border-bottom:1px solid;
  557. -webkit-transition:all 0.3s ease-out;
  558. -moz-transition:all 0.3s ease-out;
  559. transition:all 0.3s ease-out;
  560. }
  561. #navigation a:hover:nth-child(2n+2) {
  562. text-shadow:none;
  563. color:{color:accent2};
  564. border-bottom:1px solid;
  565. -webkit-transition:all 0.3s ease-out;
  566. -moz-transition:all 0.3s ease-out;
  567. transition:all 0.3s ease-out;
  568. }
  569.  
  570. .link {
  571.  
  572. width:470px;
  573. padding:15px;
  574. margin-left:0px;
  575. margin-top:0px;
  576. background:{color:accent};
  577. color:{color:post bg};
  578. text-align:center !important;
  579.  
  580. }
  581. .linktitle a{
  582.  
  583. font-size:25px;
  584. font-weight:bold;
  585. text-transform:uppercase;
  586. text-align:center !important;
  587. color:{color:post bg};
  588.  
  589. }
  590.  
  591. #sidebar {
  592.  
  593. position:fixed;
  594. left:250px;
  595. top:80px;
  596. padding:0px;
  597. text-align:center;
  598. background: {color:sidebar bg};
  599. border:1px solid {color:post borders};
  600. border-radius:3px;
  601. width:270px;
  602. height:auto;
  603. font-size:11px;
  604.  
  605. }
  606.  
  607. .sidetitle {
  608. text-align:left;
  609. text-transform:lowercase;
  610. font-weight:bold;
  611. font-size:15px;
  612. margin-bottom:0px;
  613. padding:15px;
  614. padding-bottom:0px;
  615. padding-left:5px;
  616. padding-right:5px;
  617. border-bottom:1px solid {color:post borders};
  618. background:transparent;
  619. letter-spacing:.5px;
  620.  
  621. }
  622. .sidetitle a{color:{color:sidebar text}; padding:15px; background:{color:sidebar bg}; }
  623. .sidedesc {
  624.  
  625. text-align:center;
  626. text-transform:lowercase;
  627. font-style:italic;
  628. color:{color:sidebar text};
  629. margin-top:0px;
  630. padding:20px;
  631. padding-left:30px;
  632. padding-right:30px;
  633. border-bottom:1px solid {color:post borders};
  634. margin-left:auto;
  635. margin-right:auto;
  636. font-size:11px;
  637.  
  638. }
  639. .sidefoto {
  640. width:270px;
  641. border-radius:0px;
  642. margin-top:0px;
  643. margin-left:auto;
  644. margin-right:auto;
  645. }
  646.  
  647. #dnav {
  648.  
  649. position:fixed;
  650. background:{color:nav bg};
  651. -webkit-box-shadow: 2px 2px 0 0 {color:post borders};
  652. box-shadow: 2px 2px 0 0 {color:post borders};
  653. width:60px;
  654. height:100%;
  655. left:300px;
  656. top:0px;
  657.  
  658. }
  659.  
  660. .icon {
  661.  
  662. background:{color:accent2};
  663. color:{color:post bg};
  664. float:left;
  665. padding:20px;
  666. text-align:center;
  667. margin-left:-5px;
  668. margin-top:-15px;
  669. border-top-left-radius:3px;
  670.  
  671. }
  672.  
  673. .subtitle {
  674.  
  675. font-size:12px;
  676. margin-left:45px;
  677. background:{color:sidebar bg};
  678. width:200px;
  679. font-weight:normal;
  680. margin-bottom:-2px;
  681. padding-left:20px;
  682. }
  683.  
  684. {CustomCSS}
  685.  
  686. </style>
  687. <body>
  688.  
  689. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  690. <script src="http://static.tumblr.com/6hsqxdt/vmwm2rb4g/infinitescrolling.js"></script><script src="http://static.tumblr.com/6hsqxdt/QBym35odk/jquery.masonry.js"></script>
  691.  
  692. <script>
  693. $(function(){
  694. var $container = $('#post');
  695. $container.imagesLoaded(function(){
  696. $container.masonry({
  697. itemSelector: '.entry',
  698. });
  699. });
  700. $container.infinitescroll({
  701. itemSelector : ".entry",
  702. navSelector : "div.pagination",
  703. nextSelector : ".pagination a#next",
  704. loadingImg : "http://static.tumblr.com/nnc3xz0/eYDo4b927/loading5.gif",
  705. loadingText : "<em></em>",
  706. bufferPx : 10000,
  707. extraScrollPx: 12000,
  708. },
  709. // trigger Masonry as a callback
  710. function( newElements ) {
  711. var $newElems = $( newElements ).css({ opacity: 0 });
  712. // ensure that images load before adding to masonry layout
  713. $newElems.imagesLoaded(function(){
  714. $newElems.animate({ opacity: 1 });
  715. $container.masonry( 'appended', $newElems, true );
  716. });
  717. }
  718. );
  719. });
  720. </script>
  721.  
  722. <div id="sidebar">
  723. <div class="sidetitle">
  724. <div class="icon"><li class="fa fa-home"></li></div>
  725. <a href="/">{Title}</a>
  726. <div class="subtitle">{text:subtitle}</div></div>
  727. <img class="sidefoto" src="{image:sidebar}" />
  728. <div class="sidedesc">{Description}</div>
  729. <div id="navigation">
  730. <a href="{text:Link1Url}"><li style="text-align:right; margin-top:3px; float:right;" class="fa fa-th-large"></li>&nbsp;&nbsp;{text:Link1Title}</a>
  731. <a href="{text:Link2Url}"><li style="text-align:right; margin-top:3px; float:right;" class="fa fa-leaf"></li>&nbsp;&nbsp;{text:Link2Title}</a>
  732. <a href="{text:Link3Url}"><li style="text-align:right; margin-top:3px; float:right;" class="fa fa-paper-plane"></li>&nbsp;&nbsp;{text:Link3Title}</a>
  733. <a href="{text:Link4Url}"><li style="text-align:right; margin-top:3px; float:right;" class="fa fa-bars"></li>&nbsp;&nbsp;{text:Link4Title}</a>
  734. </div>
  735.  
  736. </div>
  737.  
  738.  
  739. <div id="post">
  740.  
  741. {block:Posts}
  742.  
  743. <div class="entry">
  744.  
  745. <div class="seureblog2">
  746.  
  747. {block:RebloggedFrom}
  748. <a href="{ReblogParentURL}"><img class="si" src="{ReblogParentPortraitURL-24}"> </a>
  749. <div class="sit"><a title="via" style="font-weight:bold;" href="{ReblogParentURL}">{ReblogParentName}</a></div>
  750. <div class="sit"><li class="fa fa-retweet"></li>&nbsp;&nbsp;<a title="source" href="{ReblogRootURL}">{ReblogRootName}</a></div>
  751. {/block:RebloggedFrom}
  752.  
  753. </div>
  754.  
  755. <div class="permpm">
  756.  
  757. {block:HasTags}{block:Tags}<a href="{TagURL}"><li style="font-size:9px;" class="fa fa-tag"></li>&nbsp;{Tag}</br></a>{/block:Tags}{/block:HasTags}
  758.  
  759. </div>
  760.  
  761. {block:Title} <h1>{TItle}</h1> {/block:Title}
  762.  
  763. {block:Text}
  764. <div class="tcaption"> {Body} {block:Caption} {Caption} {block:Caption}</div>
  765. {/block:Text}
  766.  
  767. {block:Photo}
  768. <img src="{PhotoURL-500}" width="500" />
  769. <div class="caption">{block:Caption} {Caption} {block:Caption}</div>
  770. {/block:Photo}
  771.  
  772. {block:Photoset}
  773. {Photoset-500}
  774. <div class="caption">{block:Caption} {Caption} {block:Caption}</div>
  775. {/block:Photoset}
  776.  
  777. {block:Quote}
  778. <div class="quote">
  779. "{Quote}"
  780. <div class="qsub">— {block:Source} {Source} {/block:Source} {block:Caption} {Caption} {block:Caption}</div>
  781. </div>
  782. {/block:Quote}
  783.  
  784. {block:Link}
  785. <div class="link">
  786. <div class="linktitle"><a href="{URL}"{Target}>{Name}</a></div>
  787. <div class="linkdesc">{block:Description} {Description} {/block:Description}</div></div>
  788. {/block:Link}
  789.  
  790. {block:Chat}
  791. <div class="ch">{block:Lines}<div class="ch1">{block:Label}<b>{Label}</b>
  792. {/block:Label}{Line}</div>{/block:Lines}</div>
  793. <div class="caption">{block:Caption} {Caption} {block:Caption}</div>
  794. {/block:Chat}
  795.  
  796. {block:Audio}
  797. <div class="albumfoto">
  798. {block:AlbumArt}<img src="{AlbumArtURL}" />{/block:AlbumArt}
  799. <div class="audioplay">{block:AudioPlayer}{AudioPlayerWhite}{/block:AudioPlayer} </div></div>
  800.  
  801. <div class="audiodesc">
  802. {block:Artist}{Artist}{/block:Artist}</br>
  803. {block:Album}{Album}{/block:Album}</br>
  804. {block:TrackName}{TrackName}{/block:TrackName}</br>
  805. {block:PlayCount}{PlayCountWithLabel}{/block:PlayCount}
  806. </div>
  807.  
  808. <div class="caption">{block:Caption} {Caption} {block:Caption}</div>
  809. {/block:Audio}
  810.  
  811. {block:Video}
  812. {Video-500}
  813. {PlayCountWithLabel}
  814. <div class="caption">{block:Caption} {Caption} {block:Caption}</div>
  815. {/block:Video}
  816.  
  817. {block:Answer}
  818. <div class="pergunta">
  819. <div class="pessoap">{Asker}</div>
  820. {Question}
  821. </div>
  822. <div class="pessoapfoto"><img src="{AskerPortraitURL-40}" /></div>
  823. {block:Answerer}<div class="pessoarfoto"><img src="{AnswererPortraitURL-40}" /></div>{/block:Answerer}
  824. <div class="srespostafoto"><img src="{PortraitURL-40}" /></div>
  825. <div class="sresposta">{Answer}</div>
  826. <div class="caption">{block:Caption} {Caption} {block:Caption}</div>
  827.  
  828. {/block:Answer}
  829.  
  830. <div class="seureblog">
  831.  
  832. {block:Date}<a style="color:{color:accent};" href="{Permalink}">{DayOfMonthWithZero} {ShortMonth}</a>{/block:Date}
  833. <a href="{ReblogUrl}">Reblog</a>
  834. <div class="my-like" data-reblog="{ReblogURL}" data-id="{PostID}">like</div>
  835. <a style="margin-left:8px;" href="{Permalink}">{NoteCount} N</a>
  836.  
  837. </div>
  838.  
  839. {block:PermalinkPage}
  840.  
  841. <div style="padding:15px;">
  842.  
  843. {block:Date}<b><li class="fa fa-clock-o"></li>&nbsp;&nbsp;Posted:</b> {DayOfMonthWithZero} {Month}, {TimeAgo} {/block:Date}</br>
  844.  
  845. {block:RebloggedFrom}
  846. <b><li class="fa fa-retweet"></li>&nbsp;&nbsp;Via:</b> <a href="{ReblogParentURL}">{ReblogParentName}</a></br>
  847.  
  848. <b><li class="fa fa-globe"></li>&nbsp;&nbsp;Source:</b> <a href="{ReblogRootURL}">{ReblogRootName}</a></br>
  849. {/block:RebloggedFrom}
  850.  
  851. {block:NoteCount}<b><li class="fa fa-heart"></li>&nbsp;&nbsp;Notes:</b> {NoteCount}{/block:NoteCount}
  852. </br>
  853. {block:HasTags}
  854. <b><li class="fa fa-tags"></li>&nbsp;&nbsp;Tags:</b>
  855. {block:Tags}
  856. <a href="{TagURL}">#{Tag}</a>
  857. {/block:Tags}{/block:HasTags}
  858.  
  859. </div>
  860.  
  861. {block:PostNotes}<div id="notas">{PostNotes}</div>{/block:PostNotes}</div>
  862. {/block:PermalinkPage}
  863.  
  864. </div>
  865.  
  866. {/block:Posts}
  867. </div>
  868.  
  869. {block:IfNotInfiniteScroll}
  870. <div id="page4">
  871.  
  872. {block:Pagination}
  873. {block:PreviousPage}
  874. <a href="{PreviousPage}">Back</a>
  875. {/block:PreviousPage}
  876.  
  877. {block:JumpPagination length="5"}
  878.  
  879. {block:CurrentPage}
  880. <a href="#" style="background:{color:accent2}; border:1px solid {color:accent2}; color:{color:post bg};"><span class="current_page">{CurrentPage}</a></span></a>
  881. {/block:CurrentPage}
  882.  
  883. {block:JumpPage}
  884. <a class="jump_page" href="{URL}">{PageNumber}</a>
  885. {/block:JumpPage}
  886. {/block:JumpPagination}
  887.  
  888. {block:NextPage}
  889. <a href="{NextPage}">Next</a>
  890. {/block:NextPage}
  891.  
  892. {/block:Pagination}
  893.  
  894. </div>
  895. {/block:IfNotInfiniteScroll}
  896.  
  897.  
  898. <div id="top1"><a href="http://amplamente.tumblr.com/" title="tema feito por amplamente"><div style="font-size:7px;"> Thm </div><div style="font-weight:bold;">Am</a></div></div>
  899.  
  900. {block:IfInfiniteScroll}
  901. <div class="pagination">
  902. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">previous</a> &middot;{/block:PreviousPage} {block:NextPage}
  903. <a href="{NextPage}" id="next">next</a>{/block:NextPage}{/block:Pagination}
  904. </div>
  905. {/block:IfInfiniteScroll}
  906.  
  907. </body>
  908. </head>
  909. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement