23-32pm

#31

Apr 17th, 2012
203
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 20.75 KB | None | 0 0
  1. <THEME TUMBLR POR 23-32PM. NÃO RETIRE OS CRÉDITOS.>
  2.  
  3.  
  4.  
  5.  
  6. <head>
  7.  
  8. <meta name="color:bgmenu" content="#eee" />
  9. <meta name="color:colormenu" content="#696969" />
  10. <meta name="color:bgmenuhover" content="#fff" />
  11. <meta name="color:colormenuhover" content="#000" />
  12. <meta name="color:barraescura" content="#d3d3d3" />
  13. <meta name="color:barramedia" content="#e2e2e2" />
  14. <meta name="color:barraclara" content="#eeeeee" />
  15. <meta name="color:pagg" content="#fff" />
  16. <meta name="color:pagt" content="#969696" />
  17. <meta name="color:border" content="#eee" />
  18. <meta name="color:frase" content="#fff" />
  19. <meta name="color:sidebar" content="#fff" />
  20. <meta name="color:title" content="#000" />
  21. <meta name="color:link" content="#D42061" />
  22. <meta name="color:link hover" content= "#9D72B6"/>
  23. <meta name="color:background" content="#F5f5f5" />
  24. <meta name="color:font" content="#999999" />
  25. <meta name="color:entry" content="#ffffff" />
  26. <meta name="color:links" content="#999999" />
  27. <meta name="color:link" content="#ffffff" />
  28.  
  29. <meta name="image:sidebar" content="http://27.media.tumblr.com/tumblr_m286jyTrDc1r74sxlo3_250.jpg"/>
  30. <meta name="image:Background" content=""/>
  31.  
  32.  
  33. <meta name="text:frase" content="frase aqui..." />
  34.  
  35. <meta name="if:Sombreado" content="0"/>
  36. <meta name="if:Barra" content="1"/>
  37. <meta name="if:Font Feminina" content="1"/>
  38.  
  39.  
  40. <meta name="text:Link1" content="/" />
  41. <meta name="text:Link1 Title" content="link" />
  42. <meta name="text:Link2" content="/" />
  43. <meta name="text:Link2 Title" content="link" />
  44. <meta name="text:Link3" content="/" />
  45. <meta name="text:Link3 Title" content="link" />
  46. <meta name="text:Link4" content="/" />
  47. <meta name="text:Link4 Title" content="link" />
  48. <meta name="text:Link5" content="/" />
  49. <meta name="text:Link5 Title" content="link" />
  50.  
  51. <meta name="text:Sidebar Font Size" content="9px" />
  52. <meta name="text:Navigation Font Size" content="9px" />
  53. <meta name="text:BlogTitle Font Size" content="30px" />
  54.  
  55.  
  56. <script type="text/javascript">
  57.  
  58. // <![CDATA[
  59.  
  60. var bgcolour="#ffffff"; // background colour
  61.  
  62. var fgcolour="#000000"; // foreground colour
  63.  
  64. var speed=100; // speed of bubbling, lower is faster
  65.  
  66.  
  67. var shades=10; // number of shades of bubble
  68.  
  69. /****************************
  70.  
  71. * Bubbling Text Effect *
  72.  
  73.  
  74. *(c) 2003-6 mf2fm web-design*
  75.  
  76. * http://www.mf2fm.com/rv *
  77.  
  78. * DON'T EDIT BELOW THIS BOX *
  79.  
  80.  
  81. ****************************/
  82.  
  83. var bubbcol=new Array();
  84.  
  85. var bubbler, bubbtxt;
  86.  
  87. var bubbchr=new Array();
  88.  
  89. window.onload=function() { if (document.getElementById) {
  90.  
  91. for (bubbler=0; bubbler<=shades; bubbler++) {
  92.  
  93. bubbtxt="#";
  94.  
  95. for (var i=1; i<6; i+=2) {
  96.  
  97. var bg=parseInt(bgcolour.substring(i,i+2),16);
  98.  
  99. bubbtxt+=dechex(Math.floor(bg+(parseInt(fgcolour.substring(i,i+2),16)-bg)*(bubbler/shades)));
  100.  
  101. }
  102.  
  103.  
  104. bubbcol[bubbler+1]=bubbtxt;
  105.  
  106. }
  107.  
  108.  
  109. bubbler=document.getElementById("bubble");
  110.  
  111. bubbtxt=bubbler.firstChild.nodeValue;
  112.  
  113. while (bubbler.childNodes.length) bubbler.removeChild(bubbler.childNodes[0]);
  114.  
  115. for (var i=0; i<bubbtxt.length; i++) {
  116.  
  117. var bubbi=document.createElement("span");
  118.  
  119. bubbi.setAttribute("id", "bubb"+i);
  120.  
  121. bubbi.appendChild(document.createTextNode(bubbtxt.charAt(i)));
  122.  
  123. bubbler.appendChild(bubbi);
  124.  
  125. }
  126.  
  127. bubbler=setInterval ("bubbling()", speed);
  128.  
  129.  
  130. }}
  131.  
  132. function dechex(dec) {
  133.  
  134. var hex=dec.toString(16);
  135.  
  136. if (dec<16) return "0"+hex;
  137.  
  138. else return hex;
  139.  
  140.  
  141. }
  142.  
  143.  
  144. function bubbling() {
  145.  
  146. for (var i=0; i<bubbtxt.length; i++) {
  147.  
  148. var bubbme=document.getElementById("bubb"+i);
  149.  
  150. if (bubbchr[i]) {
  151.  
  152.  
  153. bubbme.style.color=bubbcol[bubbchr[i]];
  154.  
  155. bubbchr[i]=(bubbchr[i]+1)%bubbcol.length;
  156.  
  157. }
  158.  
  159. else if (Math.random()<0.75/bubbchr.length) bubbchr[i]=1;
  160.  
  161.  
  162. }
  163.  
  164.  
  165. }
  166.  
  167.  
  168. // ]]>
  169.  
  170. </script>
  171.  
  172.  
  173. <title>{Title}</title>
  174. <link rel="shortcut icon" href="{Favicon}">
  175. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  176. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  177. </head>
  178.  
  179.  
  180. <style type="text/css">
  181.  
  182. body{color:{color:Font}; background-color:{color:Background}; background-image:url("{image:Background}"); background-position:top right; background-repeat: no-repeat; background-attachment:fixed; font-family:verdana; font-size:11px; line-height: 120%; text-align:justify;}
  183.  
  184. a:link, a:active, a:visited{ color: {color:links}; text-decoration:none; -webkit-transition-duration: 0.4s; background-color:;}
  185.  
  186. a:hover{color:{color:Link Hover};}
  187.  
  188.  
  189. ::-webkit-scrollbar {width: 10px; height: 6px;}
  190. ::-webkit-scrollbar-track-piece {background-color: #f5f5f5; repeat scroll 0 0 transparent;}
  191. ::-webkit-scrollbar-thumb:vertical {height: 5px;background-color: #fff; border-right: 0px solid #eee}
  192. ::-webkit-scrollbar-thumb:horizontal {width: 5px;background-color: #000;}
  193.  
  194.  
  195.  
  196. #container {overflow: hidden;width:736px;margin-right: auto; margin-left: 180px; margin-bottom:auto;}
  197.  
  198. #entry { width:505px; margin-bottom:1px; background-color:; padding:15px; top:0px; border: 0px solid #E1CCB9; background-color: {color:entry}; float:right; border-top:1px solid {color:border} }
  199.  
  200. #entry img{opacity:1; -webkit-transition-duration:.5s;}
  201.  
  202. #entry img:hover{opacity:1; -webkit-transition: 0.5s ease-in;}
  203.  
  204. #titlee {font-family: georgia; font-size: 16px; font-weight:; font-style: none; letter-spacing:0px; text-transform: ; line-height: 18px;text-align: center;}
  205.  
  206. #titlee a{background-color:transparent;}
  207.  
  208.  
  209. .bigquote{font-size: 60px; color: transparent; line-height: 90px; font-family: georgia; margin-left: 85px; margin-top: -50px}
  210. .pquote{font-size: 13px; font-family: georgia; letter-spacing: 0px; serif; line-height: 18px;
  211. text-transform: none; margin-top: -70px; text-indent: 6px; text-align: center; font-style: none; padding-left: 0px}
  212. .source{margin-top: 5px; text-align: right;}
  213.  
  214.  
  215. blockquote {padding-left:2px;border-left:1px solid #ddd;}
  216.  
  217.  
  218. .notes {width: 524px; padding: 0px; margin-top: 1px; margin-bottom: 1px; font-size: 9px; text-align: left; float:right}
  219.  
  220. ol.notes {list-style: none; margin: 0 0px 0 0px; padding: 0px; z-index: 11;}
  221. ol.notes li {background-color: #fff; margin-bottom: 2px; padding: 5px; }
  222. .notes img{display: none; border:0px}
  223.  
  224.  
  225. iframe input, iframe submit, iframe textarea, iframe div, iframe table {background-color:transparent!important;}
  226.  
  227. .info{ font-size:9px; margin-top: 22px; }
  228. .tags{font-size: 9px; display: inline; text-align: left; margin-left: -0px; text-transform: lowercase; color: #000}
  229. .tags a{font-size: 9px; text-transform: lowercase;}
  230. .origin{font-size: 9px; text-align: left; margin-left: -6px}
  231. .ibottom{margin: 5px 0 2px 0; font-family: verdana; margin-top: 5px; font-family: 9px}
  232. .ibottom a{ padding: 1px 0 1px 0; font-family: 9px; margin-bottom:-20px}
  233. .date{float:left; text-transform: lowercase; font-size: 9px}
  234. .ff {font-size: 9px}
  235. .right {float: right;}
  236.  
  237.  
  238. /* ANSWER */
  239. .question {color: {color:PostFont}; padding: 6px; font-size: 10px; background-color: #ff; margin-bottom: -10px; font-family: verdana; font-style: none; border-bottom: 0px solid #ddd; margin-left: 0px; margin-top: 3px;}
  240.  
  241. .asker {text-transform: lowercase; font-family: verdana; font-style: none; line-height: 16px; font-size: 11px; font-family: verdana;}
  242.  
  243. .asker a:link, .asker a:visited, .asker a:active {margin-left: 0px; color: {color:font}; text-decoration: none;}
  244. .asker a:hover {background-color: {colorbackground};}
  245. .tip {color: {color:background}; font-size: 20px; padding-left: 40px;}
  246.  
  247.  
  248. .chat{line-height: 12px; list-style: none }
  249. .chat ul {line-height: 15px; list-style: none; padding: 0px; line-height: 20px;}
  250. .person1 {background-color: {color:entry}; color: {color:text} }
  251. .person1 .label { font-weight: bold; padding: 0px; margin-left: 5px; color: {color:text} }
  252. .person2 {background-color: {color:entry}; color: {color:text} }
  253. .person2 .label { font-weight: bold; padding: 0px; margin-left: 5px; color: {color:text} }
  254.  
  255.  
  256. #pic {width:160px; height:175px; overflow:hidden; margin-top: 0px; margin-left:30px; border:3px solid {color:sidebar}; position:fixed; background-color:{color:sidebar}; -webkit-border-top-left-radius: 90px; border:1px solid {color:border}}
  257. #pic img { width:160px; height:175px;-webkit-border-top-left-radius: 90px;}
  258.  
  259.  
  260.  
  261. #sside {height:100px;top:529px;position:fixed}
  262. #side {margin-top:-169px; background-color:{color:side}; width:300px; height:52px; text align:center; font-size:{text:Navigation Font Size}; margin-left:-270px; letter-spacing:1px; position:fixed important!; z-index:1;}
  263.  
  264. #nav {margin-top:20px; margin-left:30px; position:fixed; }
  265.  
  266. #nav a { padding:5px; color:{color:navigation}; font-weight:bold; font-family: consolas; text-transform:uppercase; font-size:{text:Navigation Font Size}; }
  267.  
  268. #nav a:hover { background-color:{color:background}; color:{color:link}; -moz-border-bottom-right-radius: 30px; border-bottom-right-radius: 30px; -moz-border-bottom-left-radius: 0px; border-bottom-left-radius: 0px; -moz-border-top-right-radius: 30px; border-top-right-radius: 30px; -moz-border-top-left-radius: 30px; border-top-left-radius: 30px;}
  269.  
  270. #descr{opacity:0; width:150px; height:85px; margin-left:743px; position: fixed; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; margin-top:422px; font-size: 9px; padding:5px; }
  271. #descr:hover{opacity:0.7; padding: 3px; background-color:{color:sidebar}; width:152px; height:85px; position: fixed; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out; margin-top:422px; font-size: 9px; color:{color:text};}
  272.  
  273.  
  274. @font-face {
  275. font-family: 'Give You Glory';
  276. font-style: normal;
  277. font-weight: normal;
  278. src: local('Give You Glory'), local('GiveYouGlory'), url('http://themes.googleusercontent.com/font?kit=DFEWZFgGmfseyIdGRJAxuJre1ArFO0nxyUXZnjCjpOg') format('woff');
  279. }
  280.  
  281. #baselinks {background-color: {color:sidebar}; width: 207px; float: left; margin-left:210px; margin-top: -45px; padding: 1px; text-align: center; position: absolute; -moz-transition: all 1.5s ease-in-out!important; -o-transition: all 1.5s ease-in-out!important; transition: all 1.5s ease-in-out!important; -webkit-transition: all 1.5s ease-in-out!important; z-index: 999; -moz-transition: all 1.2s ease-in-out!important; -o-transition: all 1.2s ease-in-out!important; transition: all 1.2s ease-in-out!important; -webkit-transition: all 1.2s ease-in-out!important; }
  282.  
  283.  
  284. #baselinks a {float: left; margin-left: 1px; display: block; font-family: tahoma; font-size: 9px; text-align: center; width: 67px; background-color: {color:bg link s}; color:{color:link s}; line-height: 20px; overflow: hidden; margin-top: 0px; margin-bottom: 1px; }
  285.  
  286. .ttle {margin-top: 300px; margin-left:35px; text-align: center; font-family: gabriola; {block:IfFontFeminina}font-family: Give You Glory; {/block:IfFontFeminina} font-size: 16px; color: {color:title}; position: fixed; z-index: 3; width: 150px; {block:IfSombreado} text-shadow: 1px 0px 1px {color:title};{/block:IfSombreado}}
  287.  
  288. #sid3 {width: 135px; margin-left: 30px; height: 10px; margin-top: 243px; float:left; text-align: justify; background-color:{color:pagg}; position:fixed; padding:5px; font-size: 9px; border-bottom:1px solid {color:border}}
  289.  
  290. div#pgs {text-align: center; font-family: verdana; font-size: 8px; line-height: 8px;}
  291.  
  292. div#pgs a {background:{color:background}; padding: 2px 4px; color: {color:pagt}; text-decoration: none; -webkit-transition: all 0.4s ease-out; -moz-transition: all 0.4s ease-out;}
  293.  
  294. div#pgs a:hover {background: {color:sidebar}; color: {color:text}; border: none;}
  295.  
  296. div#pgs span.pagina_atual {background: {color:background}; margin: 0px 0 0; padding: 2px 4px; color: {color:text}; font-weight: bold; text-decoration: none;}
  297.  
  298. #pages{ font-family:verdana; margin-top:0px;font-size:23px; text-transform:lowercase; padding:0px; text-align: center;}
  299.  
  300. #pages a{ font-family:verdana; font-size:23px; text-transform:lowercase; text-align:center;color: #4B4B4B;}
  301.  
  302. @font-face {font-family: "tinytots";src: url('http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf');}
  303.  
  304. #sk8er { margin-left: 907px; margin-top: 400px; width: 3px; text-transform: uppercase; height:98px; position: fixed; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; background-color:transparent; border-left: 3px solid #929292;}
  305.  
  306. #links2 {width: 162px; float: left; margin-left: 30px; height:21px; margin-top: 220px; padding: 1px; text-align: center; position: fixed; background-color: {color:sidebar}; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; }
  307.  
  308. #links2 a {float: left; margin-left: 1px; display: block; letter-spacing: 0px; font-family: tinytots; font-size: 8px; text-align: center; margin-bottom: 1px; width: 160px; background-color: {color:bgmenu}; color:{color:colormenu}; text-decoration: none; text-transform: uppercase; line-height: 20px; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; height:20px }
  309.  
  310. #links2 a:hover{text-align: center;background-color: {color:bgmenuhover}; color:{color:colormenuhover}; height: 1px;}
  311.  
  312. #links3 {width: 162px; float: left; margin-left: 30px; height:21px; margin-top: 180px; padding: 1px; text-align: center; position: fixed; background-color: {color:sidebar}; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; }
  313.  
  314. #links3 a {float: left; margin-left: 1px; display: block; letter-spacing: 0px; font-family: tinytots; font-size: 8px; text-align: center; margin-bottom: 1px; width: 80px; background-color: {color:bgmenu}; color:{color:colormenu}; text-decoration: none; text-transform: uppercase; line-height: 20px; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; height:20px }
  315.  
  316. #links3 a:hover{text-align: center;background-color: {color:bgmenuhover}; color:{color:colormenuhover}; height: 1px;}
  317.  
  318. #links4 {width: 162px; float: left; margin-left: 30px; height:21px; margin-top: 200px; padding: 1px; text-align: center; position: fixed; background-color: {color:sidebar}; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; }
  319.  
  320. #links4 a {float: left; margin-left: 1px; display: block; letter-spacing: 0px; font-family: tinytots; font-size: 8px; text-align: center; margin-bottom: 1px; width: 80px; background-color: {color:bgmenu}; color:{color:colormenu}; text-decoration: none; text-transform: uppercase; line-height: 20px; -webkit-transition: all 1s ease-out; -moz-transition: all 1s ease-out; height:20px }
  321.  
  322. #links4 a:hover{text-align: center;background-color: {color:bgmenuhover}; color:{color:colormenuhover}; height: 1px;}
  323.  
  324. {block:IfBarra}#oi {margin-left:1050px; margin-top:800px; padding: 0px; z-index: 2; position:fixed;}
  325.  
  326.  
  327. #oi1{font-size: 9px; font-family: verdana; position: fixed; margin-left: -300px; width: 10px; background-color: {color:barraescura}; padding: 0px; margin-top: -3427px; background-attachment: fixed; background-image:url(''); height:10000px; z-index:3;}
  328.  
  329. #oi2{font-size: 9px; font-family: verdana; position: fixed; margin-left: -290px; width: 7px; background-color: {color:barramedia}; padding: 0px; margin-top: -3427px; background-attachment: fixed; background-image:url(''); height:10000px; z-index:3;}
  330.  
  331. #oi3{font-size: 9px; font-family: verdana; position: fixed; margin-left: -283px; width: 5px; background-color:{color:barraclara}; padding: 0px; margin-top: -3427px; background-attachment: fixed; background-image:url(''); height:10000px; z-index:3;}
  332.  
  333. #oi4{font-size: 9px; font-family: verdana; position: fixed; margin-left: -278px; width: 12px; background-color: {color:barraescura}; padding: 0px; margin-top: -3427px; background-attachment: fixed; background-image:url(''); height:10000px; z-index:3;}
  334.  
  335. #oi5{font-size: 9px; font-family: verdana;position: fixed; margin-left: -266px; width: 6px; background-color: {color:barraclara}; padding: 0px; margin-top: -3427px; background-attachment: fixed; background-image:url(''); height:10000px; z-index:3;}
  336.  
  337. #oi6{font-size: 9px; font-family: verdana; position: fixed; margin-left: -260px; width: 16px; background-color: {color:barramedia}; padding: 0px; margin-top: -3427px; background-attachment: fixed; background-image:url(''); height:10000px; z-index:3;}
  338.  
  339. #oi7{font-size: 9px; font-family: verdana;position: fixed; margin-left: -244px; width: 14px; background-color: {color:barraclara}; padding: 0px; margin-top: -3427px; background-attachment: fixed; background-image:url(''); height:10000px; z-index:3;}
  340.  
  341. #oi8{font-size: 9px; font-family: verdana; position: fixed; margin-left: -230px; width: 5px; background-color: {color:barraescura}; padding: 0px; margin-top: -3427px; background-attachment: fixed; background-image:url(''); height:10000px; z-index:3;}{/block:IfBarra}
  342.  
  343. .cred {position: fixed; text-align: center;margin-top: 243px; margin-left: 175px; font-family: Verdana, Geneva, Tahoma, sans-serif; font-size: 10px; line-height:20px; text-align: center; text-transform: none; height: 20px; width: 20px; background-color: {color:sidebar}; color:{color:text}; border-bottom:1px solid {color:border}}
  344.  
  345. </style>
  346.  
  347. <body>
  348.  
  349.  
  350. <div id="container">
  351.  
  352. <div id="pic"><img src="{image:sidebar}"/></div>
  353.  
  354.  
  355.  
  356. <div id="links3">
  357. {block:ifLink1}<a href="{text:Link1}">{text:Link1 Title}</a>{/block:ifLink1}
  358. {block:ifLink2}<a href="{text:Link2}">{text:Link2 Title}</a>{/block:ifLink2}</div>
  359. <div id="links4">
  360. {block:ifLink3}<a href="{text:Link3}">{text:Link3 Title}</a>{/block:ifLink3}
  361. {block:ifLink4}<a href="{text:Link4}">{text:Link4 Title}</a>{/block:ifLink4}</div>
  362. <div id="links2">
  363.  
  364. {block:ifLink5}<a href="{text:Link5}">{text:Link5 Title}</a>{/block:ifLink5}</div>
  365.  
  366. <div id="descr">{description}</div>
  367.  
  368.  
  369. <div class="ttle"><span id="bubble">{text:frase}</span></div>
  370.  
  371.  
  372.  
  373. <div id="baselinks">
  374. </div>
  375.  
  376. <div class="cred"><a href="http://23-32pm.tumblr.com">©</a> <a href="http://restitui.tumblr.com">+</a> <a href="http://b-reakable.tumblr.com">+</a></div>
  377.  
  378. <div id="sid3">
  379. <center><div id="sspagination"><div id="pgs">{block:JumpPagination length="5"}{block:CurrentPage}<span class="pagina_atual">{PageNumber}</span>{/block:CurrentPage} {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}</div></div></div></center>
  380.  
  381. <div id="oi">
  382. <div id="oi1"></div>
  383. <div id="oi2"></div>
  384. <div id="oi3"></div>
  385. <div id="oi4"></div>
  386. <div id="oi5"></div>
  387. <div id="oi6"></div>
  388. <div id="oi7"></div>
  389. <div id="oi8"></div></div>
  390.  
  391. {block:Posts}<div id="entry">
  392.  
  393. {block:Answer}<div class="question"><div class="asker"><b>{Asker} asked:</b> {Question}</div></div>
  394. <div class="caption">{Answer}</div>{/block:Answer}
  395.  
  396.  
  397. {block:Text}
  398. <div id="titlee">{block:Title}<a href="{Permalink}">{Title}</a>{Block:Title}</div>{Body}
  399. {/block:Text}
  400.  
  401. {block:Photo}
  402. <img src="{PhotoURL-500}" alt="{PhotoAlt}" width="500px" />{block:Caption}{Caption}{/block:Caption}
  403. {/block:Photo}
  404.  
  405. {block:Photoset}
  406. {block:ContentSource} <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}" width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" /> {/block:SourceLogo} {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} --> {/block:ContentSource}{Photoset-500}{block:Caption}{Caption}{/block:Caption}
  407. {/block:Photoset}
  408.  
  409. {block:Quote}
  410. <b class="bigquote">“</b><div class="pquote">"{Quote}"</div>{block:Source}
  411. <div class="source">{Source}</div>{/block:Source}
  412. {/block:Quote}
  413.  
  414.  
  415. {block:Link}
  416. <a href="{URL}" class="link" {Target}><div id="titlee">{Name}</div></a>{block:Description}{Description}{/block:Description}
  417. {/block:Link}
  418.  
  419. {block:Chat}
  420. {block:Title}<titlee><center><a href="{Permalink}">{Title}</a></center></titlee>{/block:Title}
  421. <div class="chat"><ul>{block:Lines}
  422. <li class="person{UserNumber}">{block:Label}
  423. <span class="label">{Label}</span>{/block:Label} {Line}</li>{/block:Lines}</ul></div>
  424. {/block:Chat}
  425.  
  426. {block:Video}
  427. {Video-500}{block:Caption}{Caption}{/block:Caption}
  428. {/block:Video}
  429.  
  430. {block:Audio}
  431. <div style="width:500px;background-color:;">{AudioPlayer}</div>{block:Caption}{Caption}{/block:Caption}
  432. {/block:Audio}
  433.  
  434. {block:Date}
  435. <div class="ibottom">
  436. <div class="ff">
  437. {block:HasTags}{block:Tags}<div class="tags"><a href="{TagURL}">#{Tag}</a> </div>{/block:Tags}{/block:HasTags}<br />
  438. <span class="date">
  439. <a href="{Permalink}">{TimeAgo} </a> </span> <div class="right"><a href="{ReblogUrl}" target="_blank"> reblog this sweet</a></div> {block:NoteCount} <a href="{Permalink}">· {NoteCountWithLabel}</a>{/block:NoteCount} <a href="http://twitter.com/share" class="twitter-share-button"
  440. data-text="{Title}"
  441. data-url="{permalink}"
  442. data-via="seutwitter"
  443. data-count="horizontal">· tweet</a>{/block:Date}
  444. {block:RebloggedFrom} <br> reblogged from: <a href="{ReblogParentURL}" title="{ReblogParentTitle}">{ReblogParentName}</a> <div class="right"> © <a href="{ReblogRootURL}" title="{ReblogRootTitle}">{ReblogRootName}</a></div>{/block:RebloggedFrom}
  445. </div></div></div>
  446.  
  447. {/block:Posts}
  448.  
  449. {block:PostNotes}<div class="notes">{PostNotes}</div>{/block:PostNotes}
  450. </div>
  451. </div>
  452.  
  453.  
  454.  
  455.  
  456. </body>
  457. </html>
Advertisement
Add Comment
Please, Sign In to add comment