Advertisement
andieanjos

be free!

May 13th, 2014
996
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 22.65 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>{Title}{block:PostTitle} | {PostTitle}{/block:PostTitle}</title>
  5.        
  6.         <!--
  7.            Theme by: tanharu.tumblr.com
  8.            Shapes: http://codepen.io/Darsain/details/IqjFe
  9.  
  10.            Don't repost. Don't use it as a base.
  11.            Customize as you wish, but don't redistribute.
  12.        -->
  13.        
  14.         <link rel="shortcut icon" href="{Favicon}"/>
  15.         <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  16.         <meta name="author" content="Andressa Anjos @ tanharu.tumblr.com">
  17.         <link rel="alternate" type="application/rss+xml" href="{RSS}">
  18.         {block:Description}
  19.             <meta name="description" content="{MetaDescription}" />
  20.         {/block:Description}
  21.        
  22.         <meta name="image:Icon" content="{PortraitURL-64}" />
  23.        
  24.         <meta name="color:Text" content="#010101" />
  25.         <meta name="color:Link" content="#310e1b" />
  26.         <meta name="color:Link Hover" content="#c61154" />
  27.         <meta name="color:Title" content="#010101" />
  28.         <meta name="color:Menu" content="#010101" />
  29.         <meta name="color:Lines" content="#ede8ea" />
  30.         <meta name="color:Background" content="#FFFFFF" />
  31.        
  32.         <meta name="text:Link 1" content="" />
  33.         <meta name="text:Link 1 URL" content="" />
  34.         <meta name="text:Link 2" content="" />
  35.         <meta name="text:Link 2 URL" content="" />
  36.         <meta name="text:Link 3" content="" />
  37.         <meta name="text:Link 3 URL" content="" />
  38.         <meta name="text:Link 4" content="" />
  39.         <meta name="text:Link 4 URL" content="" />
  40.         <meta name="text:Link 5" content="" />
  41.         <meta name="text:Link 5 URL" content="" />
  42.         <meta name="text:Link 6" content="" />
  43.         <meta name="text:Link 6 URL" content="" />
  44.        
  45.         <meta name="if:Octagon Icon" content="1"/>
  46.         <meta name="if:Pentagon Icon" content="0"/>
  47.         <meta name="if:Hexagon Icon" content="0"/>
  48.         <meta name="if:Heptagon Icon" content="0"/>
  49.         <meta name="if:Nonagon Icon" content="0"/>
  50.         <meta name="if:Circle Icon" content="0"/>
  51.        
  52.         <meta name="if:Show Date" content="0"/>
  53.         <meta name="if:Show Tags" content="1"/>
  54.         <meta name="if:Show Caption" content="0"/>
  55.        
  56.         <script src="http://use.edgefonts.net/puritan;ubuntu-mono;neuton:n2,n3,n4,i4,n7,n8:all.js"></script>
  57.        
  58.         <style type="text/css">
  59.             body {
  60.                 font-family: 'ubuntu-mono', "Trebuchet MS", sans-serif;
  61.                 font-size: 10pt;
  62.                 background-color: {color:Background};
  63.                 color:{color:Text};
  64.             }
  65.            
  66.             a {
  67.                 color:{color:Link};
  68.                 text-decoration: none;
  69.                 -webkit-transition: all 1s;
  70.                 transition: all 1s;
  71.             }
  72.             a:hover {
  73.                 color:{color:Link Hover};
  74.             }
  75.            
  76.             /*******************************    POSTS */
  77.            
  78.             #conteudo {
  79.                 width:500px;
  80.                 margin:50px auto;
  81.                 padding-top:0px;
  82.                 padding-left:180px;
  83.             }
  84.             #conteudo .titulo {
  85.                 border-bottom:1px solid {color:Lines};
  86.                 width: 500px;
  87.                 margin-top: 15px;
  88.                 padding-bottom: 0px;
  89.                 font-family: 'ubuntu-mono', "Trebuchet MS", sans-serif;
  90.             }
  91.             #conteudo .titulo span {
  92.                 display: inline-block;
  93.                 width:190px;
  94.                 font-weight: bold;
  95.                 text-transform: uppercase;
  96.                 letter-spacing: 2px;
  97.                 font-size: 6pt;
  98.             }
  99.             #conteudo .titulo span.p1 {
  100.                 float:left;
  101.                 text-align: right;
  102.             }
  103.             #conteudo .titulo span.p2 {
  104.                 float:right;
  105.                 text-align: left;
  106.             }
  107.             .nonotes a:before { content: 'permalink'; }
  108.             #conteudo .imagem {
  109.                 border-radius: 100px;
  110.                 width:20px;
  111.                 height:20px;
  112.                 background-size: cover;
  113.                 margin:0 auto;
  114.                 margin-top:-25px;
  115.             }
  116.             #conteudo .texto {
  117.                 width:400px;
  118.                 margin:30px auto;
  119.                 font-family: 'ubuntu-mono', sans-serif;
  120.                 font-size: 10pt;
  121.                 letter-spacing:-1px;
  122.             }
  123.             #conteudo .texto blockquote {
  124.                 padding:3px;
  125.                 margin:0 10px;
  126.                 border-left:1px solid {color:Lines};
  127.             }
  128.             #conteudo .texto p {
  129.                 padding:3px;
  130.                 margin:0;
  131.             }
  132.             #conteudo .qsource {
  133.                 margin:0 auto;
  134.                 text-align: right;
  135.             }
  136.             #conteudo .quote {
  137.                 font-family: 'neuton', serif;
  138.                 font-size: 14pt;
  139.                 font-style: italic;
  140.                 color:#bec1c1;
  141.                 letter-spacing: 1px;
  142.             }
  143.             #conteudo .question {
  144.                 text-align: center;
  145.                 font-size: 10pt;
  146.                 font-style: italic;
  147.                 background-color: {color:Lines};
  148.                 padding:10px;
  149.             }
  150.             #conteudo .curioso {
  151.                 font-size:7pt;
  152.                 text-transform: uppercase;
  153.                 display:block;
  154.                 width:400px;
  155.                 margin-top:5px;
  156.                 text-align: right;
  157.             }
  158.             #conteudo .mainImage {
  159.                 width: 500px;
  160.                 margin:0 auto;
  161.                 margin-bottom: -15px;
  162.                 margin-top:30px;
  163.             }
  164.             #conteudo .mainImagePanorama {
  165.                 width:500px;
  166.                 margin:0 auto;
  167.                 margin-bottom: -15px;
  168.                 margin-top:30px;
  169.                 background-size: cover;
  170.                 background-position: center center;
  171.             }
  172.             #conteudo h2 {
  173.                 font-family: 'neuton', serif;
  174.                 font-style: italic;
  175.                 font-weight: normal;
  176.                 font-size: 12pt;
  177.                 margin-bottom: -15px;
  178.                 margin-top:30px;
  179.             }
  180.             .secao {
  181.                 margin: 150px auto;
  182.             }
  183.            
  184.             #conteudo .postDate {
  185.                 width:500px;
  186.                 font-family: 'neuton', serif;
  187.                 font-style: italic;
  188.                 font-weight: normal;
  189.                 font-size: 12pt;
  190.                 padding-top:10px;
  191.                 margin-top:20px;
  192.                 text-align:center;
  193.                 color:{color:Lines};
  194.                 {block:IfNotShowDate}visibility:hidden;{/block:IfNotShowDate}
  195.             }
  196.             #conteudo .postTags {
  197.                 font-family: 'ubuntu-mono', "Trebuchet MS", sans-serif;
  198.                 text-transform:uppercase;
  199.                 font-size:6pt;
  200.                 font-weight:bold;
  201.                 text-align:center;
  202.                 {block:IfNotShowTags}display:none;{/block:IfNotShowTags}
  203.             }
  204.  
  205.            
  206.             /*******************************    SIDEBAR */
  207.             #sidebarH {
  208.                 position:fixed;
  209.                 top:0px;
  210.                 left:110px;
  211.                 right:0px;
  212.                 height:100px;
  213.                 border-bottom:1px solid {color:Lines};
  214.                 background-color: {color:Background};
  215.                 padding-left:150px;
  216.                 font-size:24pt;
  217.                 font-family: 'neuton', serif;
  218.                 font-style: italic;
  219.                 line-height:170px;
  220.                 color:{color:Title};
  221.             }
  222.             #sidebarV {
  223.                 position:fixed;
  224.                 top:20px;
  225.                 left:0px;
  226.                 bottom:0px;
  227.                 width:180px;
  228.                 border-right:1px solid {color:Lines};
  229.                 padding-top:150px;
  230.             }
  231.             #sidebarV .sideLinks {
  232.                 background-color: {color:Background};
  233.                 list-style: none;
  234.                 margin: 0;
  235.                 padding: 0;
  236.                 margin-bottom: 50px;
  237.                 width:180px;
  238.                 text-align:right;
  239.             }
  240.            
  241.             #sidebarV .sideLinks li {
  242.                 padding:5px;
  243.                 margin:0;
  244.                 letter-spacing: 1px;
  245.                 text-transform: lowercase;
  246.                 font-variant: small-caps;
  247.             }
  248.            
  249.             #sidebarV .sideLinks li>a {
  250.                 text-decoration: none;
  251.                 color:{color:Menu};
  252.                 display: block;
  253.                 font-style: italic;
  254.                 -webkit-transition: all 1s;
  255.                 transition: all 1s;
  256.             }
  257.            
  258.             #sidebarV .sideLinks li>a:first-letter {
  259.                 font-weight: bold;
  260.                 font-style: normal;
  261.             }
  262.            
  263.             #sidebarV .sideLinks li>a:hover {
  264.                 color:{color:Link Hover};
  265.             }
  266.            
  267.             #sideIcon {
  268.                 position:fixed;
  269.                 top:100px;
  270.                 left:180px;
  271.                 width:50px;
  272.                 height:50px;
  273.                 margin-left:-25px;
  274.                 margin-top:-25px;
  275.                 background-image:url({image:Icon});
  276.                 background-size:cover;
  277.                
  278.                 {block:IfOctagonIcon}
  279.                 -webkit-clip-path: polygon( 29% 0, 71% 0, 100% 29%, 100% 71%, 71% 100%, 29% 100%, 0 71%, 0 29% );
  280.                 -moz-clip-path: polygon( 29% 0, 71% 0, 100% 29%, 100% 71%, 71% 100%, 29% 100%, 0 71%, 0 29% );
  281.                 -ms-clip-path: polygon( 29% 0, 71% 0, 100% 29%, 100% 71%, 71% 100%, 29% 100%, 0 71%, 0 29% );
  282.                 clip-path: polygon( 29% 0, 71% 0, 100% 29%, 100% 71%, 71% 100%, 29% 100%, 0 71%, 0 29% );
  283.                 {/block:IfOctagonIcon}
  284.                
  285.                 {block:IfPentagonIcon}
  286.                 -webkit-clip-path: polygon( 50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38% );
  287.                 -moz-clip-path: polygon( 50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38% );
  288.                 -ms-clip-path: polygon( 50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38% );
  289.                 clip-path: polygon( 50% 0, 100% 38%, 81% 100%, 19% 100%, 0 38% );
  290.                 {/block:IfPentagonIcon}
  291.                
  292.                 {block:IfHexagonIcon}
  293.                 -webkit-clip-path: polygon( 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25% );
  294.                 -moz-clip-path: polygon( 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25% );
  295.                 -ms-clip-path: polygon( 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25% );
  296.                 clip-path: polygon( 50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25% );
  297.                 {/block:IfHexagonIcon}
  298.                
  299.                 {block:IfHeptagonIcon}
  300.                 -webkit-clip-path: polygon( 50% 0, 90% 19%, 100% 62%, 72% 100%, 28% 100%, 0 62%, 10% 19% );
  301.                 -moz-clip-path: polygon( 50% 0, 90% 19%, 100% 62%, 72% 100%, 28% 100%, 0 62%, 10% 19% );
  302.                 -ms-clip-path: polygon( 50% 0, 90% 19%, 100% 62%, 72% 100%, 28% 100%, 0 62%, 10% 19% );
  303.                 clip-path: polygon( 50% 0, 90% 19%, 100% 62%, 72% 100%, 28% 100%, 0 62%, 10% 19% );
  304.                 {/block:IfHeptagonIcon}
  305.                
  306.                 {block:IfNonagonIcon}
  307.                 -webkit-clip-path: polygon( 50% 0, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12% );
  308.                 -moz-clip-path: polygon( 50% 0, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12% );
  309.                 -ms-clip-path: polygon( 50% 0, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12% );
  310.                 clip-path: polygon( 50% 0, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12% );
  311.                 {/block:IfNonagonIcon}
  312.                
  313.                 {block:IfCircleIcon}
  314.                 border-radius:50px;
  315.                 {/block:IfCircleIcon}
  316.             }
  317.            
  318.             #tata {
  319.                 position:fixed;
  320.                 bottom:0px; right:15px;
  321.                 padding:10px;
  322.                 font-size:10pt;
  323.                 font-family: monospace;
  324.                 font-weight: bold;
  325.                 background-color: {color:Background};
  326.             }
  327.            
  328.             #description {
  329.                 position:fixed;
  330.                 bottom:20px;
  331.                 left:10px;
  332.                 padding-right:10px;
  333.                 width:160px;
  334.                 text-align:center;
  335.                 font-size:9pt;
  336.                 font-family: 'neuton', serif;
  337.                 font-style: italic;
  338.                 letter-spacing:1px;
  339.             }
  340.            
  341.             /*******************************    PAGINAÇÃO */
  342.            
  343.             #paginacao {
  344.                 width:400px;
  345.                 margin:25px auto;
  346.                 text-align: center;
  347.                 font-family: 'ubuntu-mono', "Trebuchet MS", sans-serif;
  348.                 font-weight: bold;
  349.                 font-size: 6pt;
  350.             }
  351.             #paginacao a {
  352.                 text-decoration: none;
  353.                 font-style: italic;
  354.                 padding:3px 5px;
  355.                 display: inline-block;
  356.                 margin: 3px;
  357.                 text-transform: uppercase;
  358.                 letter-spacing: 2px;
  359.             }
  360.             #paginacao a:first-letter {
  361.                 font-weight: bold;
  362.                 font-style: normal;
  363.             }
  364.            
  365.             {CustomCSS}
  366.         </style>
  367.        
  368.        
  369.        
  370.     </head>
  371.     <body>
  372.         <div id="tata"><a href="http://tanharu.tumblr.com/">&#7789;</a></div>
  373.         <div id="conteudo">
  374.            
  375.             {block:Posts}
  376.            
  377.             {block:ContentSource}<!-- {SourceURL}{block:SourceLogo}<img src=”{BlackLogoURL}” width=”{LogoWidth}” height=”{LogoHeight}” alt=”{SourceTitle}” /> {/block:SourceLogo} {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -—>
  378.  
  379. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  380.            <!--    INICIO POST     -->
  381.             <div class="secao">
  382.                 <div class="titulo">
  383.                     <span class="p1"><a href="{ReblogURL}">reblog</a></span>
  384.                     <span class="p2 {block:NoteCount}no{/block:NoteCount}nonotes"><a href="{Permalink}">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</a></span>
  385.                     <br style="clear:both;"/>
  386.                 </div>
  387.                 <br style="clear:both;"/>
  388.                 {block:RebloggedFrom}
  389.                     <a href="{ReblogRootURL}"><div class="imagem" style="background-image:url({ReblogRootPortraitURL-24});" title="source"></div></a>
  390.                 {/block:RebloggedFrom}
  391.                 {block:NotReblog}
  392.                     <div class="imagem" style="background-image:url({PortraitURL-24});"></div>
  393.                 {/block:NotReblog}
  394.                
  395.                
  396.                
  397.                 <div class="postBody">
  398.                 {block:Text}
  399.                 {block:Title}<h2>{Title}</h2>{/block:Title}
  400.                 <div class="texto">
  401.                     {Body}
  402.                 </div>
  403.                 {/block:Text}
  404.                
  405.                 {block:Photo}
  406.                 {LinkOpenTag}<img src="{PhotoURL-500}" class="mainImage" width="{PhotoWidth-500}" height="{PhotoHeight-500}" />{LinkCloseTag}
  407.                 {block:IfShowCaption}
  408.                 {block:Caption}
  409.                 <div class="texto">
  410.                     {Caption}
  411.                 </div>
  412.                 {/block:Caption}
  413.                 {/block:IfShowCaption}
  414.                 {block:IfNotShowCaption}
  415.                 {block:PermalinkPage}
  416.                 {block:Caption}
  417.                 <div class="texto">
  418.                     {Caption}
  419.                 </div>
  420.                 {/block:Caption}
  421.                 {/block:PermalinkPage}
  422.                 {/block:IfNotShowCaption}
  423.                 {/block:Photo}
  424.                
  425.                 {block:Panorama}
  426.                 {LinkOpenTag}<div class="mainImagePanorama" style="background-image:url({PhotoURL-Panorama}); height:{PhotoHeight-Panorama};"></div>{LinkCloseTag}
  427.                 {block:IfShowCaption}
  428.                 {block:Caption}
  429.                 <div class="texto">
  430.                     {Caption}
  431.                 </div>
  432.                 {/block:Caption}
  433.                 {/block:IfShowCaption}
  434.                 {block:IfNotShowCaption}
  435.                 {block:PermalinkPage}
  436.                 {block:Caption}
  437.                 <div class="texto">
  438.                     {Caption}
  439.                 </div>
  440.                 {/block:Caption}
  441.                 {/block:PermalinkPage}
  442.                 {/block:IfNotShowCaption}
  443.                 {/block:Panorama}
  444.                
  445.                 {block:Photoset}
  446.                 <br />
  447.                 {Photoset}
  448.                 {block:IfShowCaption}
  449.                 {block:Caption}
  450.                 <div class="texto">
  451.                     {Caption}
  452.                 </div>
  453.                 {/block:Caption}
  454.                 {/block:IfShowCaption}
  455.                 {block:IfNotShowCaption}
  456.                 {block:PermalinkPage}
  457.                 {block:Caption}
  458.                 <div class="texto">
  459.                     {Caption}
  460.                 </div>
  461.                 {/block:Caption}
  462.                 {/block:PermalinkPage}
  463.                 {/block:IfNotShowCaption}
  464.                 {/block:Photoset}
  465.                
  466.                 {block:Quote}
  467.                 <div class="texto quote">
  468.                     {Quote}
  469.                 </div>
  470.                 {block:Source}
  471.                 <div class="texto qsource">
  472.                     &mdash; {Source}
  473.                 </div>
  474.                 {/block:Source}
  475.                 {/block:Quote}
  476.                
  477.                 {block:Link}
  478.                 <h2><a href="{URL}" {Target}>{Name}</a></h2>
  479.                 {block:Description}
  480.                 <div class="texto">
  481.                     {Description}
  482.                 </div>
  483.                 {/block:Description}
  484.                 {/block:Link}
  485.                
  486.                 {block:Chat}
  487.                 {block:Title}<h2>{Title}</h2>{/block:Title}
  488.                 <div class="texto">
  489.                     {block:Lines}{block:Label}<strong>{Label}</strong>{/block:Label} {Line}<br />{/block:Lines}
  490.                 </div>
  491.                 {/block:Chat}
  492.                
  493.                 {block:Audio}
  494.                 {block:AudioPlayer}{AudioPlayer}{/block:AudioPlayer}
  495.                 {block:AudioEmbed}{AudioEmbed-500}{/block:AudioEmbed}
  496.                 {block:IfShowCaption}
  497.                 {block:Caption}
  498.                 <div class="texto">
  499.                     {Caption}
  500.                 </div>
  501.                 {/block:Caption}
  502.                 {/block:IfShowCaption}
  503.                 {block:PermalinkPage}
  504.                 {block:Caption}
  505.                 <div class="texto">
  506.                     {Caption}
  507.                 </div>
  508.                 {/block:Caption}
  509.                 {/block:PermalinkPage}
  510.                 {/block:Audio}
  511.                
  512.                 {block:Video}
  513.                 {VideoEmbed-500}
  514.                 {block:IfShowCaption}
  515.                 {block:Caption}
  516.                 <div class="texto">
  517.                     {Caption}
  518.                 </div>
  519.                 {/block:Caption}
  520.                 {/block:IfShowCaption}
  521.                 {block:PermalinkPage}
  522.                 {block:Caption}
  523.                 <div class="texto">
  524.                     {Caption}
  525.                 </div>
  526.                 {/block:Caption}
  527.                 {/block:PermalinkPage}
  528.                 {/block:Video}
  529.                
  530.                 {block:Answer}
  531.                 <div class="texto question">
  532.                     {Question}
  533.                     <span class="curioso">asked {Asker}</span>
  534.                 </div>
  535.                 <div class="texto answer">
  536.                     {Answer}
  537.                 </div>
  538.                 {/block:Answer}
  539.                 </div>
  540.                
  541.                
  542.                 <div class="postDate">
  543.                     24.04.2014
  544.                 </div>
  545.                 {block:HasTags}<div class="postTags"><em>tags:</em> {block:Tags}<a href="{TagURL}">{Tag}</a>,&emsp; {/block:Tags}</div>{/block:HasTags}
  546.                
  547.                
  548.                
  549.             </div>
  550.             <!--    FIM POST     -->
  551.            
  552.             {block:PostNotes}{PostNotes}{/block:PostNotes}
  553.            
  554.             <!-- {block:ContentSource}{SourceURL}, {SourceTitle}{/block:ContentSource} -->
  555.             {/block:Posts}
  556.  
  557.            
  558.             {block:Pagination}
  559.             <div id="paginacao">
  560.                 {block:PreviousPage}<a href="{PreviousPage}">previous</a> / {/block:PreviousPage}
  561.                 {block:NextPage}<a href="{NextPage}">next</a>{/block:NextPage}
  562.             </div>
  563.             {/block:Pagination}
  564.            
  565.            
  566.            
  567.         </div>
  568.        
  569.         <div id="sidebarH">
  570.             {Title}
  571.         </div>
  572.         <div id="sidebarV">
  573.             <ul class="sideLinks">
  574.                 <li><a href="/">home</a></li>
  575.                 {block:AskEnabled}<li><a href="/ask">message</a></li>{/block:AskEnabled}
  576.                 {block:SubmissionsEnabled} <li><a href="/submit">submit</a></li>{/block:SubmissionsEnabled}
  577.                 {block:IfLink1URL}
  578.                     <li><a href="{text:Link 1 URL}">{text:Link 1}</a></li>
  579.                 {/block:IfLink1URL}
  580.                 {block:IfLink2URL}
  581.                     <li><a href="{text:Link 2 URL}">{text:Link 2}</a></li>
  582.                 {/block:IfLink2URL}
  583.                 {block:IfLink3URL}
  584.                     <li><a href="{text:Link 3 URL}">{text:Link 3}</a></li>
  585.                 {/block:IfLink3URL}
  586.                 {block:IfLink4URL}
  587.                     <li><a href="{text:Link 4 URL}">{text:Link 4}</a></li>
  588.                 {/block:IfLink4URL}
  589.                 {block:IfLink5URL}
  590.                     <li><a href="{text:Link 5 URL}">{text:Link 5}</a></li>
  591.                 {/block:IfLink5URL}
  592.                 {block:IfLink6URL}
  593.                     <li><a href="{text:Link 6 URL}">{text:Link 6}</a></li>
  594.                 {/block:IfLink6URL}
  595.             </ul>
  596.         </div>
  597.         <div id="sideIcon"></div>
  598.         <div id="description">{block:Description}{Description}{/block:Description}</div>
  599.     </body>
  600. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement