Emmes

Cherry TumblrTheme

Mar 8th, 2020
467
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 19.00 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.   <!-- COLORES -->
  11.  
  12.   <meta name="color:Fondo" content="#f0f0f0;">
  13.   <meta name="color:Cuadros" content="#FFF;">
  14.   <meta name="color:Fondo Tags" content="#BBB;">
  15.   <meta name="color:Color" content="#cc003d;">
  16.   <meta name="color:Enlaces" content="#ff2454;">
  17.   <meta name="color:Texto" content="#777;">
  18.  
  19.  
  20.   <!-- IMAGENES -->
  21.   <meta name="image:Footer" content="https://66.media.tumblr.com/accca782803ec2f6dbe1214d3a66fa00/6e7a243eced58100-43/s640x960/7c07b9698d17ce696f23ca587f72d09d9909e20e.jpg"/>
  22.  
  23.   <!-- FRUTAS -->
  24.   <meta name="select:Frutas" content="apple" title="Manzana">
  25.   <meta name="select:Frutas" content="lemon" title="Limón">
  26.   <meta name="select:Frutas" content="orange" title="Naranja">
  27.   <meta name="select:Frutas" content="peach" title="Durazno">
  28.   <meta name="select:Frutas" content="pineapple" title="Piña">
  29.   <meta name="select:Frutas" content="strawberry" title="Fresa">
  30.   <meta name="select:Frutas" content="watermelon" title="Sandia">
  31.   <meta name="select:Frutas" content="cherry" title="Cereza">
  32.  
  33.   <!-- Enlaces -->
  34.  
  35.   <meta name="text:Link Nombre 01" content="Home">
  36.   <meta name="text:Link URL 01" content="/">
  37.  
  38.   <meta name="text:Link Nombre 02" content="Ask">
  39.   <meta name="text:Link URL 02" content="/ask">
  40.  
  41.   <meta name="text:Link Nombre 03" content="Submit">
  42.   <meta name="text:Link URL 03" content="/submit">
  43.  
  44.   <meta name="text:Link Nombre 04" content="Archivo">
  45.   <meta name="text:Link URL 04" content="/archive">
  46.  
  47.   <!-- Data -->
  48.   <meta name="text:Edad" content="XX años"/>
  49.   <meta name="text:Nacionalidad" content="País"/>
  50.   <meta name="text:Ocupacion" content="Trabajo"/>
  51.   <meta name="text:Raza" content="Raza"/>
  52.  
  53.  
  54.   <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap" rel="stylesheet">
  55.   <link href="//dl.dropbox.com/s/vpi3f9s7nhpe7v7/honeybee.css" rel="stylesheet" />
  56.   <script src="https://code.jquery.com/jquery-3.4.1.js" integrity="sha256-WpOohJOqMqqyKL9FccASB9O0KwACQJpFTUBLTYOVvVU="  crossorigin="anonymous"></script>
  57.  
  58.   <script type="text/javascript">
  59.   $(function() {
  60.       $("p:has(a.tumblr_blog)").addClass("mm-post-name");
  61.   });
  62.   </script>
  63.  
  64.  
  65.   <script src="//dl.dropbox.com/s/4af36btgfwkb62s/PowerTip.js"></script>
  66.   <script type="text/javascript">
  67.     $(function() {
  68.       $('[title]').powerTip({
  69.         followMouse: 'true'
  70.       });
  71.     });
  72.   </script>
  73.  
  74. <style>
  75. :root {
  76.     --mm-fon-01: {color:Fondo};
  77.     --mm-fon-02: {color:Cuadros};
  78.  
  79.     --mm-uno: {color:Color};
  80.     --mm-dos: {color:Fondo Tags};
  81.     --mm-tre: {color:Enlaces};
  82.  
  83.     --mm-txt: {color:Texto};
  84.   }
  85.  
  86. *,
  87. ::after,
  88. ::before {
  89.     box-sizing: border-box;
  90.     scrollbar-color: var(--mm-uno) var(--mm-fon-01);
  91.     scrollbar-width: thin;
  92.     transition: .3s;
  93. }
  94. ::selection {
  95.     background: var(--mm-txt);
  96.     color: var(--mm-uno);
  97. }
  98.  
  99. ::-webkit-scrollbar {
  100.     width: 5px !important;
  101.     height: 5px !important;
  102.     background: var(--mm-fon-01) !important;
  103. }
  104.  
  105. ::-webkit-scrollbar-thumb {
  106.     background: var(--mm-uno) !important;
  107. }
  108. #powerTip {
  109.     display: none;
  110.     position: absolute;
  111.     white-space: nowrap;
  112.     z-index: 999;
  113.     padding: 8px 8px 8px 10px !important;
  114.     background: var(--mm-fon-02) !important;
  115.     color: var(--mm-cua);
  116.     text-transform: uppercase;
  117.     letter-spacing: 2px;
  118.     font: 10px calibri !important;
  119.     transition: 0s !important;
  120.     box-shadow: 0 0 15px -10px;
  121.     border-radius: 10px;
  122. }
  123. /******************/
  124. html,
  125. body {
  126.     margin: 0;
  127.     padding: 0;
  128.     background-color: var(--mm-fon-01);
  129.     font: 10px Montserrat;
  130.     color: var(--mm-txt);
  131.     min-height: 600px;
  132. }
  133. a {
  134.     text-decoration: none;
  135.     color: var(--mm-tre);
  136.     font-weight: bold;
  137.     letter-spacing: 1px;
  138.  
  139. }
  140. a:hover {
  141.     letter-spacing: 2px;
  142. }
  143.  
  144. b,
  145. i {
  146.     color: var(--mm-uno);
  147.     text-shadow: 1px 1px var(--mm-fon-02), 1px -1px var(--mm-fon-02), -1px 1px var(--mm-fon-02), -1px -1px var(--mm-fon-02);
  148. }
  149. .mm-centro {
  150.     top: 50px;
  151.     bottom: 50px;
  152.     position: absolute;
  153.     width: 600px;
  154.     left: 50%;
  155.     transform: translate(-50%);
  156.     min-height: 500px;
  157. }
  158.  
  159. .mm-scroll,
  160. #mm-foo {
  161.     background: var(--mm-fon-02);
  162.     border-radius: 30px;
  163.     position: absolute;
  164.     overflow: hidden;
  165. }
  166. /***Footer***/
  167. body > iframe {
  168.     transform: scale(.6) translate(30%);
  169. }
  170. #mm-foo {
  171.     bottom: 0;
  172.     left: 0;
  173.     right: 0;
  174.     height: 100px;
  175. }
  176. .mm-img {
  177.     position: absolute;
  178.     top: 6px;
  179.     bottom: 6px;
  180.     left: 6px;
  181.     width: 50%;
  182.     background-position: center;
  183.     background-size: cover;
  184.     border-radius: 24px;
  185.     -webkit-mask-image: linear-gradient(to right, #000 50%, transparent 100%);
  186. }
  187. .mm-data {
  188.     position: absolute;
  189.     top: 10px;
  190.     right: 10px;
  191.     bottom: 10px;
  192.     width: 400px;
  193.     display: flex;
  194.     flex-wrap: wrap;
  195. }
  196. .mm-data > div {
  197.     background: var(--mm-fon-02);
  198.     min-width: 40%;
  199.     flex: 1;
  200.     margin: 2px;
  201.     border-radius: 20px;
  202.     border: 1px dotted var(--mm-uno);
  203.     display: flex;
  204.     padding: 3px;
  205.     align-items: center;
  206. }
  207. .mm-data .th {
  208.     background: var(--mm-uno);
  209.     height: 100%;
  210.     width: 27px;
  211.     text-align: center;
  212.     color: var(--mm-fon-02);
  213.     border-radius: 50%;
  214.     font-size: 12px;
  215. }
  216. .mm-data b {
  217.     flex: 1;
  218.     text-align: right;
  219.     padding: 0 5px;
  220.     letter-spacing: 1px;
  221.     font-weight: normal;
  222. }
  223. /***Sidebar***/
  224. #mm-sidebar {
  225.     right: 0;
  226.     top: 0;
  227.     bottom: 110px;
  228.     width: 190px;
  229.     position: absolute;
  230.     display: flex;
  231.     flex-direction: column;
  232. }
  233. .mm-titu {
  234.     background: var(--mm-uno);
  235.     padding: 15px;
  236.     text-align: center;
  237.     color: var(--mm-fon-02);
  238.     font: bold 12px Montserrat;
  239.     border-radius: 30px;
  240.     letter-spacing: 1px;
  241. }
  242. .mm-blo {
  243.     flex: 1;
  244.     border: 1px solid var(--mm-uno);
  245.     border-radius: 30px;
  246.     background: var(--mm-fon-02);
  247.     margin: 10px 0;
  248.     display: flex;
  249.     flex-direction: column;
  250.     overflow: hidden;
  251. }
  252. .mm-desc {
  253.     height: calc(100% - 168px);
  254.     overflow: auto;
  255.     margin: 0 20px 20px;
  256.     text-align: justify;
  257.     padding-right: 5px;
  258. }
  259. .mm-fruit {
  260.     height: 188px;
  261.     position: relative;
  262. }
  263. .mm-fruit::before,
  264. .mm-fruit::after {
  265.     content: "";
  266.     position: absolute;
  267.     background: var(--mm-uno);
  268.     border-radius: 50%;
  269.     animation: link 2s linear infinite;
  270. }
  271. .mm-fruit::after {
  272.     animation-delay: 1s !important;
  273. }
  274. @keyframes link {
  275.     from {
  276.         width: 50px;
  277.         height: 50px;
  278.         opacity: 1;
  279.     }
  280.  
  281.     to {
  282.         width: 150px;
  283.         height: 150px;
  284.         opacity: 0;
  285.     }
  286. }
  287. .mm-fruit > a {
  288.     width: 80px;
  289.     height: 80px;
  290.     background: var(--mm-uno);
  291.     color: var(--mm-fon-02);
  292.     font-size: 30px;
  293.     display: flex;
  294.     align-items: center;
  295.     justify-content: center;
  296.     border-radius: 50%;
  297.     position: relative;
  298.     z-index: 10;
  299. }
  300. .mm-links {
  301.     display: flex;
  302.     flex-wrap: wrap;
  303.     border-radius: 30px;
  304.     overflow: hidden;
  305.     background: var(--mm-fon-02);
  306. }
  307.  
  308. .mm-links a {
  309.     background: var(--mm-uno);
  310.     padding: 20px;
  311.     flex: 1;
  312.     text-align: center;
  313.     color: var(--mm-fon-02);
  314.     font: bold 8px Montserrat;
  315.     text-transform: uppercase;
  316.     letter-spacing: 1px;
  317.     position: relative;
  318. }
  319. .mm-links a:nth-of-type(2),
  320. .mm-links a:nth-of-type(3) {
  321.     opacity: .8;
  322. }
  323. .mm-links a:hover {
  324.     box-shadow: 0 0 10px -5px var(--mm-txt);
  325.     z-index: 10;
  326. }
  327. /***SCROLL***/
  328. .mm-scroll {
  329.     top: 0;
  330.     bottom: 110px;
  331.     width: 400px;
  332.     padding: 20px;
  333. }
  334.  
  335. #mm-posts {
  336.     height: 100%;
  337.     overflow: auto;
  338. }
  339.  
  340. #mm-posts * {
  341.     max-width: 100%;
  342. }
  343. .mm-post {
  344.     margin-right: 5px;
  345. }
  346. .mm-post ~ .mm-post {
  347.     margin-top: 20px;
  348. }
  349. .mm-post-top {
  350.     background: var(--mm-uno);
  351.     border-radius: 10px 10px 0 0;
  352.     display: flex;
  353.     align-items: center;
  354.     padding: 8px 5px 8px 10px;
  355.     font: bold 8px montserrat;
  356.     text-transform: uppercase;
  357.     letter-spacing: 1px;
  358. }
  359. .mm-post-top > a {
  360.     color: var(--mm-fon-02);
  361.     flex: 1;
  362. }
  363. .mm-post-top > div {
  364.     display: flex;
  365.     height: 10px;
  366.     align-items: center;
  367. }
  368. .mm-post-top > div > * {
  369.     transform: scale(.6);
  370. }
  371. .mm-post-top > div > *:hover {
  372.     transform: scale(.8);
  373. }
  374. .mm-post-in {
  375.     background: var(--mm-fon-01);
  376.     border: 10px solid transparent;
  377.     text-align: justify;
  378. }
  379. .mm-post-bottom {
  380.     background: var(--mm-dos);
  381.     border-radius: 0 0 10px 10px;
  382.     text-align: center;
  383.     padding: 3px;
  384.     font-size: 8px;
  385.     letter-spacing: 1px;
  386. }
  387. .mm-post-tags a {
  388.     color: var(--mm-fon-02);
  389.     padding: 0 5px;
  390. }
  391. .mm-post-top > a:hover,
  392. .mm-post-bottom a:hover {
  393.     font-weight: bold;
  394.     letter-spacing: 2px;
  395. }
  396. .mm-post-tags b {
  397.     margin-right: 3px;
  398. }
  399. blockquote {
  400.     margin: 10px 0 10px 20px;
  401.     background: #0001;
  402.     padding: 10px;
  403.     border-left: 3px solid var(--mm-uno);
  404. }
  405. h3 {
  406.     margin: 10px 0;
  407.     font-size: 14px;
  408. }
  409. h2 {
  410.     margin: 10px 0;
  411.     font-size: 10px;
  412.     text-transform: uppercase;
  413.     letter-spacing: 1px;
  414. }
  415. h1 {
  416.     font-size: 14px;
  417.     margin: 10px 0;
  418.     letter-spacing: 2px;
  419.     text-transform: capitalize;
  420.     color: var(--mm-uno);
  421. }
  422. .mm-prev,
  423. .mm-next {
  424.     position: absolute;
  425.     top: calc(50% - 25px);
  426.     font-size: 40px;
  427.     color: var(--mm-fon-02);
  428. }
  429. .mm-prev {
  430.     right: calc(100% + 15px);
  431.     transform: rotate(90deg);
  432. }
  433. .mm-next {
  434.     left: calc(100% + 15px);
  435.     transform: rotate(-90deg);
  436. }
  437. .mm-prev:hover,
  438. .mm-next:hover {
  439.     color: var(--mm-uno);
  440.     text-shadow: 0 0 5px var(--mm-txt);
  441. }
  442. .mm-cre {
  443.     position: absolute;
  444.     top: calc(100% + 10px);
  445.     text-transform: uppercase;
  446.     font-size: 8px;
  447.     letter-spacing: 5px;
  448.     left: 50%;
  449.     transform: translate(-50%);
  450.     padding-left: 5px;
  451. }
  452. .mm-cre b {
  453.     color: var(--mm-txt);
  454. }
  455. .mm-post-notas {
  456.     background: var(--mm-fon-01);
  457.     padding: 10px;
  458.     border-radius: 0 0 7px 7px;
  459.     margin-top: 3px;
  460. }
  461.  
  462. /******************/
  463. .mm-data .th,
  464. .mm-fruit,
  465. .mm-fruit > a {
  466.     display: flex;
  467.     align-items: center;
  468.     justify-content: center;
  469. }
  470.  
  471. .mm-links,
  472. .mm-scroll,
  473. #mm-foo,
  474. .mm-titu,
  475. .mm-blo {
  476.     border: 1px dotted var(--mm-uno);
  477.     box-shadow: inset 0 0 0 5px var(--mm-fon-02), inset 0 0 0 6px var(--mm-fon-01), 0 10px 10px -10px var(--mm-txt);
  478. }
  479.  
  480. /*****************/
  481. p {
  482.     margin: 10px 0;
  483. }
  484. .mm-p :last-child,
  485. p:last-child {
  486.     margin-bottom: 0;
  487. }
  488. .mm-p :first-child,
  489. blockquote :first-child {
  490.     margin-top: 0;
  491. }
  492. blockquote blockquote {
  493.     margin-left: 0;
  494. }
  495. .answer,
  496. .question {
  497.     position: relative;
  498.     background: var(--mm-fon-02);
  499.     padding: 10px;
  500.     text-align: justify;
  501. }
  502. .question {
  503.     margin: 10px 0 10px 50px;
  504. }
  505. .answer {
  506.     margin: 10px 50px 10px 0;
  507. }
  508. .answer::before,
  509. .question::before {
  510.     content: "";
  511.     position: absolute;
  512.     width: 7px;
  513.     height: 20px;
  514.     top: 10px;
  515.     background: var(--mm-fon-02);
  516. }
  517. .question::before {
  518.     right: 100%;
  519.     clip-path: polygon(100% 0, 0 50%, 100% 100%);
  520. }
  521. .answer::before {
  522.     left: 100%;
  523.     clip-path: polygon(0 0, 0 100%, 100% 50%);
  524. }
  525. .answerer-avatar,
  526. .asker-avatar {
  527.     width: 40px;
  528.     height: 40px;
  529.     position: absolute;
  530.     top: 0;
  531.     border: 3px solid var(--mm-fon-02);
  532. }
  533. .asker-avatar {
  534.     right: calc(100% + 10px);
  535. }
  536. .answerer-avatar {
  537.     left: calc(100% + 10px);
  538. }
  539. .mm-answerer,
  540. .mm-asker {
  541.     display: inline-block;
  542.     border-bottom: 2px solid;
  543.     margin-bottom: 5px;
  544.     padding: 0 5px;
  545. }
  546. .chat-in {
  547.     font-size: 12px;
  548. }
  549. .chat-in > div ~ div {
  550.     margin-top: 5px;
  551. }
  552. .label {
  553.     font-weight: bold;
  554.     letter-spacing: 1px;
  555.     margin: 0 5px 0 20px;
  556. }
  557. cite {
  558.     background:
  559.     #0001;
  560.     display: block;
  561.     text-align: center;
  562.     padding: 10px;
  563.     font: italic 14px serif;
  564.     letter-spacing: 1px;
  565. }
  566. cite:before {
  567.     content:"«";
  568. }
  569. cite:after {
  570.     content:"»";
  571. }
  572. .source {
  573.     text-align: right;
  574.     padding: 5px 10px 0;
  575.     font-style: italic;
  576. }
  577. .notes {
  578.     margin: 0;
  579.     padding: 0;
  580.     text-align: left;
  581. }
  582. .notes > li {
  583.     list-style: none;
  584.     position: relative;
  585.     margin-left: 45px;
  586.     min-height: 40px;
  587. }
  588. .notes > li ~ li {
  589.     margin-top: 10px;
  590. }
  591. .avatar_frame {
  592.     position: absolute;
  593.     top: 0;
  594.     right: calc(100% + 5px);
  595.     width: 40px;
  596. }
  597. .avatar_frame img {
  598.     width: 40px;
  599.     height: 40px;
  600.     border: 3px solid var(--mm-fon-02);
  601. }
  602. .notes blockquote {
  603.     margin: 5px 0;
  604. }
  605. </style>
  606.  
  607. </head>
  608.  
  609. <body>
  610.  
  611.   <div class="mm-centro">
  612.  
  613.     <div id="mm-sidebar">
  614.       <div class="mm-titu">{Title}</div>
  615.      
  616.        <div class="mm-blo">
  617.           <div class="mm-fruit"><a class="th th-{select:Frutas}" href="/" title="Home"></a></div>
  618.           {block:Description}
  619.           <div class="mm-desc">{Description}</div>
  620.           {/block:Description}
  621.          
  622.        </div>
  623.          
  624.          <div class="mm-links">
  625.            <a href="{text:Link URL 01}">{text:Link Nombre 01}</a>
  626.            <a href="{text:Link URL 02}">{text:Link Nombre 02}</a>
  627.            <a href="{text:Link URL 03}">{text:Link Nombre 03}</a>          
  628.            <a href="{text:Link URL 04}">{text:Link Nombre 04}</a>
  629.          </div>
  630.          
  631.     </div>
  632.  
  633.  
  634.  
  635.  
  636.  
  637.     <div class="mm-scroll">
  638.       <div id="mm-posts">
  639.         {block:Posts}
  640.         <div class="mm-post">
  641.        
  642.        
  643.         <div class="mm-post-top">
  644.        
  645.             <a href="{RelativePermalink}">{NoteCountWithLabel}</a>
  646.  
  647.             <div>
  648.               {LikeButton color="white"}
  649.               {ReblogButton color="white"}
  650.             </div>
  651.            
  652.         </div>
  653.        
  654.        
  655.           <div class="mm-post-in">
  656.          
  657.             <div class="mm-p text">
  658.             {block:Answer}
  659.             <div class="question">
  660.               <div class="mm-asker">{Asker}</div>
  661.               <div class="asker-question">{Question}</div>
  662.               <img class="asker-avatar" src="{AskerPortraitURL-96}" alt="">
  663.             </div>
  664.  
  665.             {block:Answerer}
  666.             <div class="answer">
  667.               <div class="mm-answerer">{Answerer}</div>
  668.               <div class="answerer-answer">{Answer}</div>
  669.               <img class="answerer-avatar" src="{AnswererPortraitURL-96}" alt="">
  670.             </div>
  671.             {/block:Answerer}
  672.  
  673.             <div class="replies">
  674.               {Replies}
  675.             </div>
  676.             {/block:Answer}
  677.             </div>
  678.            
  679.  
  680.             {block:Text}
  681.             <div class="mm-p text">
  682.               {block:Title}
  683.               <h3><a href="{Permalink}">{Title}</a></h3>
  684.               {/block:Title}{Body}
  685.             </div>
  686.             {/block:Text}
  687.            
  688.             {block:Photo}
  689.             <div class="mm-p photo">
  690.               <img src="{PhotoURL-500}" alt="{PhotoAlt}" />
  691.  
  692.               {block:Caption}
  693.               <div class="caption">{Caption}</div>
  694.               {/block:Caption}
  695.             </div>
  696.             {/block:Photo}
  697.            
  698.             {block:Panorama}
  699.             <div class="mm-p panorama">
  700.               {LinkOpenTag}
  701.               <img src="{PhotoURL-Panorama}" alt="{PhotoAlt}" />
  702.               {LinkCloseTag}{block:Caption}
  703.               <div class="caption">{Caption}</div>
  704.               {/block:Caption}
  705.             </div>
  706.             {/block:Panorama}
  707.            
  708.             {block:Photoset}
  709.             <div class="mm-p photoset">
  710.               {Photoset-500}{block:Caption}
  711.               <div class="caption">{Caption}</div>
  712.               {/block:Caption}
  713.             </div>
  714.             {/block:Photoset}
  715.            
  716.             {block:Quote}
  717.             <div class="mm-p quote">
  718.               <cite>{Quote}</cite>
  719.  
  720.               {block:Source}
  721.               <div class="source">{Source}</div>
  722.               {/block:Source}
  723.             </div>
  724.             {/block:Quote}
  725.            
  726.             {block:Link}
  727.             <div class="mm-p link">
  728.               <a href="{URL}" class="link" {Target}>{Name}</a>
  729.  
  730.               {block:Description}
  731.               <div class="description">{Description}</div>
  732.               {/block:Description}
  733.             </div>
  734.             {/block:Link}
  735.            
  736.             {block:Chat}
  737.             <div class="mm-p chat">
  738.               {block:Title}
  739.               <h3><a href="{Permalink}">{Title}</a></h3>
  740.               {/block:Title}
  741.  
  742.               <div class="chat-in">
  743.                 {block:Lines}
  744.                 <div class="{Alt} user_{UserNumber}">
  745.                   {block:Label}
  746.                   <span class="label">{Label}</span>
  747.                   {/block:Label}{Line}
  748.                 </div>
  749.                 {/block:Lines}
  750.               </div>
  751.             </div>
  752.             {/block:Chat}
  753.            
  754.             {block:Video}
  755.             <div class="mm-p video">
  756.               {Video-500}{block:Caption}
  757.               <div class="caption">{Caption}</div>
  758.               {/block:Caption}
  759.             </div>
  760.             {/block:Video}
  761.            
  762.             {block:Audio}
  763.             <div class="mm-p post audio">
  764.               {AudioEmbed}{block:Caption}
  765.               <div class="caption">{Caption}</div>
  766.               {/block:Caption}
  767.             </div>
  768.             {/block:Audio}
  769.  
  770.           </div>
  771.  
  772.          
  773.  
  774.           <div class="mm-post-bottom">
  775.  
  776.             {block:HasTags}
  777.             <div class="mm-post-tags">
  778.               {block:Tags}
  779.               <a href="{TagURL}"><b>#</b>{Tag}</a>
  780.               {/block:Tags}
  781.             </div>
  782.             {/block:HasTags}
  783.  
  784.             {block:PostNotes}
  785.             <div class="mm-post-notas">
  786.               {PostNotes-64}
  787.             </div>
  788.             {/block:PostNotes}
  789.  
  790.           </div>
  791.  
  792.         </div>
  793.         {/block:Posts}
  794.  
  795.       </div>
  796.  
  797.     </div>
  798.  
  799. <div id="mm-foo">
  800.  
  801.     <div class="mm-img" style="background-image: url({image:Footer});"></div>
  802.  
  803.     <div class="mm-data">
  804.         <div title="Edad"><span class="th th-calendar-1"></span><b>{text:Edad}</b></div>
  805.         <div title="Nacionalidad"><span class="th th-location-3"></span><b>{text:Nacionalidad}</b></div>
  806.         <div title="Ocupación"><span class="th th-plus-1"></span><b>{text:Ocupacion}</b></div>
  807.         <div title="Raza"><span class="th th-paw"></span><b>{text:Raza}</b></div>
  808.     </div>
  809.    
  810. </div>
  811.  
  812.    {block:Pagination}
  813.       {block:PreviousPage}
  814.       <a href="{PreviousPage}" title="Anterior" class="mm-prev">
  815.         <span class="th th-heart-1"></span>
  816.       </a>
  817.       {/block:PreviousPage}
  818.  
  819.       {block:NextPage}
  820.       <a href="{NextPage}" title="Siguiente" class="mm-next">
  821.         <span class="th th-heart-1"></span>
  822.       </a>
  823.       {/block:NextPage}
  824.     {/block:Pagination}
  825.    
  826.     <a class="mm-cre" href="https://emmescodes.tumblr.com" title="Theme by Emme">{<b>Emme</b>}</a>
  827.  
  828.   </div>
  829.  
  830. </body>
  831.  
  832. </html>
Advertisement
Add Comment
Please, Sign In to add comment