Advertisement
thewisepotato

Google Tumblr Theme

Apr 2nd, 2014
2,161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.82 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>{block:SearchPage}{SearchQuery} - {/block:SearchPage}{Title}{block:TagPage}: posts tagged {Tag}{/block:TagPage}{block:PostSummary}: {PostSummary}{/block:PostSummary}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  7. <link rel="apple-touch-icon" href="{PortraitURL-128}"/>
  8.  
  9. <!--APPEARANCE OPTIONS-->
  10. <meta name="color:Background" content="#ffffff"/>
  11. <meta name="color:Links" content="#1e0fbe"/>
  12. <meta name="color:Borders" content="#cdcdcd"/>
  13. <meta name="color:Top Bar BG" content="#f1f1f1"/>
  14. <meta name="color:Top Bar Text" content="#000000"/>
  15. <meta name="color:Blogroll and Account Text" content="#666666"/>
  16. <meta name="color:Pop Up Background" content="#ffffff"/>
  17. <meta name="color:Navigation" content="#777777"/>
  18. <meta name="color:Navigation Background" content="#ffffff"/>
  19. <meta name="color:Home Link" content="#dd4b39"/>
  20. <meta name="color:Description Text" content="#000000"/>
  21. <meta name="color:Post Text" content="#444444"/>
  22. <meta name="color:Date" content="#006621"/>
  23. <meta name="color:Bottom Bar BG" content="#f2f2f2"/>
  24.  
  25. <meta name="if:Google Style Pagination" content="1"/>
  26. <meta name="if:Infinite Scroll" content="0"/>
  27. <meta name="if:Blogroll" content="1"/>
  28. <meta name="if:Account" content="1"/>
  29.  
  30. <meta name="select:Shadow Color" title="Black" content="0,0,0"/>
  31. <meta name="select:Shadow Color" title="White" content="255,255,255"/>
  32.  
  33. <meta name="image:Background" content=""/>
  34. <meta name="image:Sidebar" content=""/>
  35.  
  36. <meta name="text:Link 1" content=""/>
  37. <meta name="text:Link 1 URL" content="http://"/>
  38. <meta name="text:Link 2" content=""/>
  39. <meta name="text:Link 2 URL" content="http://"/>
  40. <meta name="text:Link 3" content=""/>
  41. <meta name="text:Link 3 URL" content="http://"/>
  42. <meta name="text:Link 4" content=""/>
  43. <meta name="text:Link 4 URL" content="http://"/>
  44. <meta name="text:Link 5" content=""/>
  45. <meta name="text:Link 5 URL" content="http://"/>
  46. <meta name="text:Link 6" content=""/>
  47. <meta name="text:Link 6 URL" content="http://"/>
  48. <meta name="text:Link 7" content=""/>
  49. <meta name="text:Link 7 URL" content="http://"/>
  50. <meta name="text:Link 8" content=""/>
  51. <meta name="text:Link 8 URL" content="http://"/>
  52. <meta name="text:Link 9" content=""/>
  53. <meta name="text:Link 9 URL" content="http://"/>
  54. <!---------------------->
  55.  
  56. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
  57.  
  58. <script type="text/javascript">
  59. $(document).ready(function(){
  60. $('.more').click(function(){
  61. if ($('#morel').css('display') == 'none') {
  62. $('#morel').css('display','initial');
  63. } else {
  64. $('#morel').css('display','none');
  65. };
  66. });
  67. $('.about').click(function(){
  68. if ($('#about').css('display') == 'none') {
  69. $('#about').css('display','initial');
  70. } else {
  71. $('#about').css('display','none');
  72. };
  73. });
  74. $('.br').click(function(){
  75. if ($('#br').css('display') == 'none') {
  76. $('#br').css('display','initial');
  77. } else {
  78. $('#br').css('display','none');
  79. };
  80. });
  81. $('#desc div').click(function(){
  82. if ($('#desc img').css('display') == 'none') {
  83. $('#desc img').css('display','initial');
  84. $('#desc p').css('height','72px');
  85. $('#desc p').css('width','333px');
  86. $('#desc').css('height','160px');
  87. } else {
  88. $('#desc img').css('display','none');
  89. $('#desc p').css('height','initial');
  90. $('#desc div').css('height','auto');
  91. $('#desc p').css('width','initial');
  92. $('#desc').css('height','initial');
  93. };
  94. });
  95. var ph = parseInt($(window).height()) - 200;
  96. $('#posts').css('min-height', ph);
  97. $('#search a').click(function(){
  98. window.location.href = 'http://{Name}.tumblr.com/search/' + $('#search textarea').val();
  99. });
  100. });
  101.  
  102. </script>
  103.  
  104. {block:ifInfiniteScroll}<script type="text/javascript" src="http://static.tumblr.com/q0etgkr/EIBmz7s0p/infinitescrolling.js"></script>{/block:ifInfiniteScroll}
  105.  
  106. <style type="text/css">
  107.  
  108. /*----GENERAL----*/
  109.  
  110. body {color:black; font-family:Arial; font-size:0.75em; padding:0; margin:0; overflow-x:hidden; background:{color:Background} url({image:Background}) fixed; width:100%; height:100%;}
  111.  
  112. img {max-width:100%;}
  113.  
  114. table {font-size:1em;}
  115.  
  116. a {text-decoration:none; color:{color:Links};}
  117.  
  118. a:hover {text-decoration:underline;}
  119.  
  120. .sh {-webkit-box-shadow:0 1px 4px rgba({select:Shadow Color},0.2); -moz-box-shadow:0 1px 4px rgba({select:Shadow Color},0.2); box-shadow:0 1px 4px rgba({select:Shadow Color},0.2);}
  121.  
  122. /*--------*/
  123.  
  124. /*----TOP BAR----*/
  125.  
  126. #tbar {height:45px; width:100%; background-color:{color:Top Bar BG}; padding-top:15px; position:relative;}
  127.  
  128. /*----SEARCH----*/
  129.  
  130. #search {height:30px; margin-left:128px;}
  131.  
  132. #search textarea {background-color:#fff; height:24px; width:50%; font-size:1.25em; font-family:Arial; padding-left:5px; line-height:24px; color:{color: Top Bar Text};}
  133.  
  134. .srch {display:block; margin-top:-10px; margin-bottom:20px; font-size:1.15em; color:black;}
  135.  
  136. .srch span {color:rgba(0,0,0,0.5); font-size:0.86em;}
  137.  
  138. /*----BLOGROLL----*/
  139.  
  140. #tbar span.br:hover {opacity:1;}
  141.  
  142. {block:ifBlogroll}
  143. #br {background-color:{color:Pop Up Background}; width:280px; height:320px; padding:20px; border:solid 1px {color:Borders}; position:absolute; top:60px; right:15px; z-index:9; text-align:center; display:none;}
  144.  
  145. #br a {display:inline-block; margin:16px 5px; color:{color:Blogroll and Account Text}; text-decoration:none; line-height:16px;}
  146.  
  147. #brin {width:280px; height:320px; overflow:auto;}
  148.  
  149. #br div.carr {width: 0px; height: 0px; border-style: solid; border-width: 0 8px 8px 8px; border-color: transparent transparent {color:Pop Up Background} transparent; line-height: 0px; _border-color: #000000 #000000 {color:Pop Up Background} #000000; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); padding:0; position:absolute; top:-8px; left:85px; z-index:11;}
  150.  
  151. #br div.darr {width: 0px; height: 0px; border-style: solid; border-width: 0 9px 9px 9px; border-color: transparent transparent {color:Borders} transparent; line-height: 0px; _border-color: #000000 #000000 {color:Borders} #000000; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); padding:0; position:absolute; top:-9px; left:84px; z-index:10;}
  152. {/block:ifBlogroll}
  153.  
  154. /*----ACCOUNT----*/
  155.  
  156. {block:ifAccount}
  157. #tbar span.about {position:absolute; top:50%; right:15px; cursor:default; margin-top:-8px; font-size:1.1em; color:{color:Top Bar Text};}
  158.  
  159. #about {font-size:1.1em; background-color:{color:Pop Up Background}; width:303px; height:96px; border:solid 1px {color:Borders}; padding:20px; z-index:9; position:absolute; top:60px; right:15px; display:none; color:{color:Description Text};}
  160.  
  161. #about div.arr {width: 0px; height: 0px; border-style: solid; border-width: 0 8px 8px 8px; border-color: transparent transparent {color:Pop Up Background} transparent; line-height: 0px; _border-color: #000000 #000000 {color:Pop Up Background} #000000; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); padding:0; position:absolute; top:-8px; right:5px; z-index:2;}
  162.  
  163. #about div.barr {width: 0px; height: 0px; border-style: solid; border-width: 0 9px 9px 9px; border-color: transparent transparent {color:Borders} transparent; line-height: 0px; _border-color: #000000 #000000 {color:Borders} #000000; _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000'); padding:0; position:absolute; top:-9px; right:4px;}
  164.  
  165. #about img {float:left;}
  166.  
  167. #about div {float:right; width:192px; height:96px; line-height:20px; padding-left:15px;}
  168.  
  169. #about div b {text-transform:capitalize;}
  170.  
  171. #about div a {padding:5px 12px; background-color:#f8f8f8; border:solid 1px {color:Borders}; font-size:13px; color:{color:Blogroll and Account Text}; cursor:default; border-radius:2px; position:relative; top:24px;}
  172.  
  173. #about div a:first-of-type {float:left;}
  174.  
  175. #about div a:last-of-type {float:right;}
  176.  
  177. #about div a:hover {text-decoration:none;}
  178. {/block:ifAccount}
  179.  
  180. /*--------*/
  181.  
  182. /*----LINKS----*/
  183.  
  184. #lbox {border-bottom:solid 1px rgba({RGBcolor:Borders},0.4); height:59px; width:100%; margin-top:15px; background-color:{color:Navigation Background};}
  185.  
  186. #links {position:absolute; left:123px; top:50px; {block:ifLink7}top:61px;{/block:ifLink7}}
  187.  
  188. #links a {display:inline-block; padding:20px 10px; text-transform:capitalize; border-bottom:solid 3px transparent; text-decoration:none; color:{color:Navigation}; margin:0 5px;}
  189.  
  190. #links a:first-child {font-weight:bold; border-bottom:solid 3px {color:Home Link}; color:{color:Home Link};}
  191.  
  192. #links a:hover {color:{color:Description Text};}
  193.  
  194. #links a:first-child:hover {color:{color:Home Link};}
  195.  
  196. #morel {border:solid 1px {color:Borders}; width:auto; display:inline-block; padding:5px 0; min-width:100px; position:absolute; top:45px; right:-45px; background-color:{color:Navigation Background}; display:none;}
  197.  
  198. #morel a, #morel a:first-child {border:none; padding:6px 16px; display:block; border:none; color:{color:Navigation}; font-weight:normal; margin:0;}
  199.  
  200. #morel a:first-child:hover {color:{color:Navigation};}
  201.  
  202. #morel a:hover {background-color:rgba({RGBcolor:Navigation},0.1); border:none; color:{color:Navigation};}
  203.  
  204. #tbar span.br {display:block; height:16px; width:16px; background:url(http://static.tumblr.com/puls2hm/KThn32ty4/screen_shot_2014-03-27_at_12.00.22_pm.png); opacity:0.7; position:absolute; top:50%; right:235px; margin-top:-8px;}
  205.  
  206. /*--------*/
  207.  
  208. /*----DESCRIPTION----*/
  209.  
  210. #desc {background-color:{color:Pop Up Background}; width:455px; padding:10px 0; position:absolute; top:170px; left:703px; height:160px; overflow:hidden; color:{color:Description Text};}
  211.  
  212. #desc h2 {padding:5px 10px;}
  213.  
  214. #desc div {padding:10px; height:92px; position:relative;}
  215.  
  216. #desc div:hover {background-color:rgba({RGBcolor:Description Text},0.03);}
  217.  
  218. #desc p {display:inline-block; width:333px; height:72px; text-overflow:ellipsis; overflow:hidden; text-align:justify;}
  219.  
  220. #desc img {height:72px; width:72px; position:absolute; top:20px; right:10px;}
  221.  
  222. /*--------*/
  223.  
  224. /*----POSTS----*/
  225.  
  226. #posts {margin-left:108px; z-index:-9; font-size:1.1em; width:500px; color:{color:Post Text}; padding:20px; {block:ifNotLink7}margin-top:60px;{/block:ifNotLink7}}
  227.  
  228. #entry {margin-bottom:7px; line-height:1.24;}
  229.  
  230. h2 {font-weight:normal; font-size:1.4em; margin-bottom:0;}
  231.  
  232. blockquote {border-left:solid 1px {color:Post Text}; padding-left:15px; margin-left:15px;}
  233.  
  234. /*----QUOTE POSTS----*/
  235.  
  236. h2.medium {text-align:justify; font-size:1.3em;}
  237.  
  238. h2.long {text-align:justify; font-size:1.2em;}
  239.  
  240. /*----CHAT POSTS----*/
  241.  
  242. ul.chat {list-style-type:none; padding-left:0;}
  243.  
  244. /*----AUDIO POSTS----*/
  245.  
  246. td.alabel {padding:0 10px;}
  247.  
  248. /*----ASK POSTS----*/
  249.  
  250. table.ask {width:500px; text-align:justify; color:rgba({RGBcolor:Post Text},0.8);}
  251.  
  252. a.asker, a.answerer {text-decoration:none; color:{color:Post Text};}
  253.  
  254. table.ask td p {display:inline;}
  255.  
  256. table.ask td {height:40px; min-width:40px; padding-bottom:10px; vertical-align:top;}
  257.  
  258. table.ask tr:nth-of-type(2) td:nth-of-type(2) {color:{color:Post Text};}
  259.  
  260. /*--------*/
  261.  
  262. /*----POST NOTES----*/
  263.  
  264. ol.notes {list-style-type:none; padding-left:0; text-align:left; color:{color:Post Text}; width:500px;}
  265.  
  266. ol.notes li {margin-top:5px;}
  267.  
  268. img.avatar {margin-right:5px;}
  269.  
  270. /*--------*/
  271.  
  272. /*----PERMALINK AND TAGS----*/
  273.  
  274. #info {margin-bottom:50px; font-size:0.9em;}
  275.  
  276. #date {margin-bottom:7px; color:{color:Date};}
  277.  
  278. #date a {color:{color:Date}; text-decoration:none;}
  279.  
  280. #info a {color:{color:Links}; text-decoration:none;}
  281.  
  282. #info a:hover {text-decoration:underline;}
  283.  
  284. #permalink, #tags {display:inline;}
  285.  
  286. #tags a {color:rgba({RGBcolor:Post Text},0.8); text-decoration:none; margin:0 2px;}
  287.  
  288. /*--------*/
  289.  
  290. /*----PAGINATION----*/
  291.  
  292. #pg {margin-left:128px; width:510px; text-align:center;}
  293.  
  294. #pg a {color:{color:Links}; display:inline-block; height:60px; width:38px;}
  295.  
  296. #pg span {font-weight:bold; color:{color:Post Text}; display:inline-block; height:60px; width:38px;}
  297.  
  298. #pg a.pn {font-weight:bold; text-decoration:underline;}
  299.  
  300. #pg a.p {width:51px;}
  301.  
  302. #pg span.blr {width:72px;}
  303.  
  304. {block:ifGoogleStylePagination}
  305. #pg a:before {content:url(http://static.tumblr.com/puls2hm/hOPn2auaw/m.png);}
  306.  
  307. #pg span:before {content:url(http://static.tumblr.com/puls2hm/MHyn2aub6/m_2.png);}
  308.  
  309. #pg a.p:before {content:url(http://static.tumblr.com/puls2hm/Celn262ai/_.png);}
  310.  
  311. #pg a.n:before {content:url(http://static.tumblr.com/puls2hm/D9sn262an/_.png);}
  312.  
  313. #pg span.t:before {content:url(http://static.tumblr.com/puls2hm/Xm2n2atw9/tu.png);}
  314.  
  315. #pg span.blr:before {content:url(http://static.tumblr.com/puls2hm/fLGn262vb/blr.png);}
  316. {/block:ifGoogleStylePagination}
  317.  
  318. /*--------*/
  319.  
  320. /*----BOTTOM BAR----*/
  321.  
  322. #bbar {width:100%; height:40px; line-height:40px; background-color:{color:Bottom Bar BG};}
  323.  
  324. #bbar a {color:rgba({RGBcolor:Post Text},0.8);}
  325.  
  326. #bbar a:first-of-type {margin-left:128px;}
  327.  
  328. #bbar a:hover {color:{color:Post Text}; text-decoration:none;}
  329.  
  330. #iframe_controls {position:fixed; top:0; left:0;}
  331.  
  332. /*--------*/
  333.  
  334. {CustomCSS}
  335. </style>
  336.  
  337. </head>
  338. <body>
  339.  
  340. <div id="tbar">
  341.  
  342. <div id="search">
  343. <textarea rows="1"></textarea>
  344. <a style="background-image:url(http://static.tumblr.com/puls2hm/5Eun2b0am/screen_shot_2014-03-12_at_11.24.20_am.png); display:inline-block; width:60px; height:30px; border:none; position:absolute;"></a>
  345. </form>
  346.  
  347. {block:ifBlogroll}
  348. <span class="br"></span>
  349.  
  350. <div id="br" class="sh">
  351. <div class="carr"></div><div class="darr"></div>
  352. <div id="brin">
  353. {block:Following}
  354. {block:Followed}
  355. <a href="{FollowedURL}"><img src="{FollowedPortraitURL-64}"/><br/>{FollowedName}</a>
  356. {/block:Followed}
  357. {/block:Following}
  358. </div>
  359. </div>
  360. {/block:ifBlogroll}
  361.  
  362. {block:ifAccount}
  363. <span class="about">{Name}.tumblr.com ▾</span>
  364. <div id="about" class="sh">
  365. <div class="arr"></div> <div class="barr"></div>
  366. <img src="{PortraitURL-96}"/>
  367. <div><b>{Title}</b><br/><span style="color:{color:Blogroll and Account Text};">{Name}.tumblr.com</span><br/>
  368. <a href="http://www.tumblr.com/new/blog">Add account</a>
  369. <a href="http://www.tumblr.com/logout">Sign out</a>
  370. </div>
  371. </div>
  372. {/block:ifAccount}
  373.  
  374. </div>
  375.  
  376. <div id="lbox">
  377. <div id="links">
  378. <a href="/">Home</a>
  379. <a href="/ask">Ask</a>
  380. {block:ifLink1}<a href="{text:Link 1 URL}">{text:Link 1}</a>{/block:ifLink1}
  381. {block:ifLink2}<a href="{text:Link 2 URL}">{text:Link 2}</a>{/block:ifLink2}
  382. {block:ifLink3}<a href="{text:Link 3 URL}">{text:Link 3}</a>{/block:ifLink3}
  383. {block:ifLink4}<a href="{text:Link 4 URL}">{text:Link 4}</a>{/block:ifLink4}
  384. {block:ifLink5}<a href="{text:Link 5 URL}">{text:Link 5}</a>{/block:ifLink5}
  385.  
  386. {block:ifNotLink7}
  387. {block:ifLink6}<a href="{text:Link 6 URL}">{text:Link 6}</a>{/block:ifLink6}
  388. {/block:ifNotLink7}
  389.  
  390. {block:ifLink7}
  391. <a class="more" style="border-bottom-color:transparent;">More ▾</a>
  392. <div id="morel" class="sh">
  393. {block:ifLink6}<a href="{text:Link 6 URL}">{text:Link 6}</a>{/block:ifLink6}
  394. {block:ifLink7}<a href="{text:Link 7 URL}">{text:Link 7}</a>{/block:ifLink7}
  395. {block:ifLink8}<a href="{text:Link 8 URL}">{text:Link 8}</a>{/block:ifLink8}
  396. {block:ifLink9}<a href="{text:Link 9 URL}">{text:Link 9}</a>{/block:ifLink9}
  397. </div>
  398. {/block:ifLink7}
  399. </div>
  400.  
  401. </div>
  402.  
  403. <div id="desc" class="sh">
  404. <h2>{Title}</h2>
  405. <div><p>{Description}</p><img src="{image:Sidebar}"/></div>
  406. </div>
  407.  
  408. <!---------------------------------POSTS----------------------------------->
  409.  
  410. <div id="posts">
  411.  
  412. {block:SearchPage}<span class="srch"><span {block:NoSearchResults}style="display:none;"{/block:NoSearchResults}>{SearchResultCount} result(s)</span>
  413. {block:NoSearchResults}
  414. <p>Your search - <b>{SearchQuery}</b> - did not match any documents.</p>
  415. <p>Suggestions:</p>
  416. <ul>
  417. <li>Make sure all words are spelled correctly.</li>
  418. <li>Try different keywords.</li>
  419. <li>Try more general keywords.</li>
  420. </ul>
  421. {/block:NoSearchResults}
  422. </span>{/block:SearchPage}
  423.  
  424. {block:Posts}
  425.  
  426. <div id="entry">
  427.  
  428. {block:Text}
  429. {block:Title}<h2>{Title}</h2>{/block:Title}
  430.  
  431. {block:Date}<div id="date">{block:PermalinkPage}<span style="display:none">{/block:PermalinkPage}
  432. <a href="{Permalink}">{TimeAgo}</a>{block:PermalinkPage}</span>{/block:PermalinkPage}
  433. {block:PermalinkPage} {12HourWithZero}:{Minutes}{AmPm} {DayOfMonthWithZero} {ShortMonth} {ShortYear}{/block:PermalinkPage}</div>{/block:Date}
  434.  
  435. {Body}
  436. {/block:Text}
  437.  
  438. {block:Audio}
  439.  
  440. {block:Date}<div id="date">{block:PermalinkPage}<span style="display:none">{/block:PermalinkPage}
  441. <a href="{Permalink}">{TimeAgo}</a>{block:PermalinkPage}</span>{/block:PermalinkPage}
  442. {block:PermalinkPage} {12HourWithZero}:{Minutes}{AmPm} {DayOfMonthWithZero} {ShortMonth} {ShortYear}{/block:PermalinkPage}</div>{/block:Date}
  443. <table>
  444. <tr>
  445. <td {block:AlbumArt}style="display:none;"{/block:AlbumArt} rowspan="5"><img style="height:75px;width:75px;" src="{image:Default Album Art}"/></td>
  446. <td rowspan="5">{block:AlbumArt}<img style="height:75px; width:75px;" src="{AlbumArtURL}"/>{/block:AlbumArt}</td>
  447. <td rowspan="5"><div style="height:29px; width:90px; overflow:hidden; background-color:#fff; padding:23px 0;">{AudioPlayerWhite}</div></td>
  448. </tr>
  449. {block:TrackName}<tr>
  450. <td class="alabel"><b>Track Name</b></td>
  451. <td>{TrackName}</td>
  452. </tr>{/block:TrackName}
  453. {block:Artist}<tr>
  454. <td class="alabel"><b>Artist</b></td>
  455. <td>{Artist}</td>
  456. </tr>{/block:Artist}
  457. {block:Album}<tr>
  458. <td class="alabel"><b>Album</b></td>
  459. <td>{Album}</td>
  460. </tr>{/block:Album}
  461. {block:PlayCount}<tr>
  462. <td class="alabel"><b>Plays</b></td>
  463. <td>{FormattedPlayCount}</td>
  464. </tr>{/block:PlayCount}
  465. </table>
  466.  
  467.  
  468. {block:Caption}{Caption}{/block:Caption}
  469.  
  470. </span>
  471. {/block:Audio}
  472.  
  473. {block:Video}
  474.  
  475. {block:Date}<div id="date">{block:PermalinkPage}<span style="display:none">{/block:PermalinkPage}
  476. <a href="{Permalink}">{TimeAgo}</a>{block:PermalinkPage}</span>{/block:PermalinkPage}
  477. {block:PermalinkPage} {12HourWithZero}:{Minutes}{AmPm} {DayOfMonthWithZero} {ShortMonth} {ShortYear}{/block:PermalinkPage}</div>{/block:Date}
  478.  
  479. {Video-500}
  480. {block:Caption}{Caption}{/block:Caption}
  481. {/block:Video}
  482.  
  483. {block:Photo}
  484.  
  485. {block:Date}<div id="date">{block:PermalinkPage}<span style="display:none">{/block:PermalinkPage}
  486. <a href="{Permalink}">{TimeAgo}</a>{block:PermalinkPage}</span>{/block:PermalinkPage}
  487. {block:PermalinkPage} {12HourWithZero}:{Minutes}{AmPm} {DayOfMonthWithZero} {ShortMonth} {ShortYear}{/block:PermalinkPage}</div>{/block:Date}
  488.  
  489. <img src="{PhotoURL-500}">
  490. {block:Caption}{Caption}{/block:Caption}
  491. {/block:Photo}
  492.  
  493. {block:Photoset}
  494. {block:Date}<div id="date">{block:PermalinkPage}<span style="display:none">{/block:PermalinkPage}
  495. <a href="{Permalink}">{TimeAgo}</a>{block:PermalinkPage}</span>{/block:PermalinkPage}
  496. {block:PermalinkPage} {12HourWithZero}:{Minutes}{AmPm} {DayOfMonthWithZero} {ShortMonth} {ShortYear}{/block:PermalinkPage}</div>{/block:Date}
  497.  
  498. {Photoset-500}
  499. {block:Caption}{Caption}{/block:Caption}
  500. {/block:Photoset}
  501.  
  502. {block:Panorama}
  503. {block:Date}<div id="date">{block:PermalinkPage}<span style="display:none">{/block:PermalinkPage}
  504. <a href="{Permalink}">{TimeAgo}</a>{block:PermalinkPage}</span>{/block:PermalinkPage}
  505. {block:PermalinkPage} {12HourWithZero}:{Minutes}{AmPm} {DayOfMonthWithZero} {ShortMonth} {ShortYear}{/block:PermalinkPage}</div>{/block:Date}
  506.  
  507. {LinkOpenTag}<img src="{PhotoURL-Panorama}"/>{LinkCloseTag}
  508. {block:Caption}{Caption}{/block:Caption}
  509. {/block:Panorama}
  510.  
  511. {block:Quote}
  512. <h2 class="{Length}">"{Quote}"</h2>
  513.  
  514. {block:Date}<div id="date">{block:PermalinkPage}<span style="display:none">{/block:PermalinkPage}
  515. <a href="{Permalink}">{TimeAgo}</a>{block:PermalinkPage}</span>{/block:PermalinkPage}
  516. {block:PermalinkPage} {12HourWithZero}:{Minutes}{AmPm} {DayOfMonthWithZero} {ShortMonth} {ShortYear}{/block:PermalinkPage}</div>{/block:Date}
  517.  
  518. {block:Source}- {Source}{/block:Source}
  519. {/block:Quote}
  520.  
  521. {block:Link}
  522. <a href="{URL}"><h2>{Name}</h2></a>
  523.  
  524. {block:Date}<div id="date">{block:PermalinkPage}<span style="display:none">{/block:PermalinkPage}
  525. <a href="{Permalink}">{TimeAgo}</a>{block:PermalinkPage}</span>{/block:PermalinkPage}
  526. {block:PermalinkPage} {12HourWithZero}:{Minutes}{AmPm} {DayOfMonthWithZero} {ShortMonth} {ShortYear}{/block:PermalinkPage}</div>{/block:Date}
  527.  
  528. {block:Description}{Description}{/block:Description}
  529. {/block:Link}
  530.  
  531. {block:Chat}
  532. {block:Title}<h2>{Title}</h2>{/block:Title}
  533.  
  534. {block:Date}<div id="date">{block:PermalinkPage}<span style="display:none">{/block:PermalinkPage}
  535. <a href="{Permalink}">{TimeAgo}</a>{block:PermalinkPage}</span>{/block:PermalinkPage}
  536. {block:PermalinkPage} {12HourWithZero}:{Minutes}{AmPm} {DayOfMonthWithZero} {ShortMonth} {ShortYear}{/block:PermalinkPage}</div>{/block:Date}
  537.  
  538. {block:Lines}
  539. <ul class="chat">
  540. <li>{block:Label}<b>{Label} </b>{/block:Label}{Line}</li>
  541. </ul>{/block:Lines}
  542. {/block:Chat}
  543.  
  544. {block:Answer}
  545.  
  546. {block:Date}<div id="date">{block:PermalinkPage}<span style="display:none">{/block:PermalinkPage}
  547. <a href="{Permalink}">{TimeAgo}</a>{block:PermalinkPage}</span>{/block:PermalinkPage}
  548. {block:PermalinkPage} {12HourWithZero}:{Minutes}{AmPm} {DayOfMonthWithZero} {ShortMonth} {ShortYear}{/block:PermalinkPage}</div>{/block:Date}
  549.  
  550. <table class="ask">
  551. <tr>
  552. <td style="background:url({AskerPortraitURL-40}) no-repeat top left;"></td>
  553. <td><b>{Asker}:</b> {Question}</td>
  554. </tr>
  555. <tr>
  556. <td {block:Answerer}style="background:url({AnswererPortraitURL-40}) no-repeat top left;"{/block:Answerer}></td>
  557. <td>{block:Answerer}<b>{Answerer}: </b>{/block:Answerer}{Answer}</td>
  558. </tr>
  559. </table>
  560. {block:Answerer}{Replies}{/block:Answerer}
  561. {/block:Answer}
  562.  
  563. </div><!--entry-->
  564.  
  565. {block:Date}
  566. <div id="info">
  567.  
  568. <div id="permalink">
  569.  
  570. <a href="{Permalink}">{NoteCountWithLabel}</a>
  571. {block:PermalinkPage}<span style="display:none;">{/block:PermalinkPage}
  572. - <a href="{ReblogURL}">reblog</a>
  573. {block:PermalinkPage}</span>{/block:PermalinkPage}
  574.  
  575.  
  576. {block:PermalinkPage}
  577. {block:RebloggedFrom} - <a href="{ReblogParentURL}">via</a> -
  578. <a href="{ReblogRootURL}">source</a> - {/block:RebloggedFrom}
  579. <a href="{ReblogURL}">reblog</a>{/block:PermalinkPage}
  580.  
  581. </div>
  582.  
  583. {block:HasTags}<div id="tags"> -
  584. {block:Tags}<a href="{TagURL}">#{Tag} </a>{/block:Tags}
  585. </div>{/block:HasTags}
  586.  
  587. </div><!--infooo-->
  588. {/block:Date}
  589.  
  590. {block:PostNotes}
  591. <div id="notecontainer">{PostNotes}</div>
  592. {/block:PostNotes}
  593.  
  594. {/block:Posts}
  595. </div><!--posts-->
  596.  
  597. {block:ifNotInfiniteScroll}{block:Pagination}
  598. <div id="pg">
  599. {block:PreviousPage}<a class="p pn" href="{PreviousPage}">Previous</a>{/block:PreviousPage}
  600. <span class="t">&nbsp;</span>
  601. {block:JumpPagination length="6"}
  602. {block:CurrentPage}<span>{PageNumber}</span>{/block:CurrentPage}
  603. {block:JumpPage}<a href="{URL}">{PageNumber}</a>{/block:JumpPage}
  604. {/block:JumpPagination}
  605. <span class="blr">&nbsp;</span>
  606. {block:NextPage}<a class="n pn" href="{NextPage}">Next</a>{/block:NextPage}
  607. </div>
  608. {/block:Pagination}{/block:ifNotInfiniteScroll}
  609.  
  610. <div id="bbar">
  611. <a href="/">Home</a> &nbsp; &nbsp; <a href="/ask">Ask</a> &nbsp; &nbsp; <a href="/archive">Archive</a> &nbsp; &nbsp; <a href="http://tumblr.com/dashboard">Dashboard</a> &nbsp; &nbsp; <a href="//syntaxthemes.tumblr.com">Theme</a>
  612. </div>
  613.  
  614.  
  615. <!------DO NOT REMOVE THE CREDIT. DOING SO WOULD MAKE YOU A THIEF.------->
  616. <a href="http://syntaxthemes.tumblr.com">
  617. <img style="position:fixed; bottom:0; right:0; display:block; opacity:0.7; margin:0; z-index:999999999999!important;" onmouseover="this.style.opacity=0.9" onmouseout="this.style.opacity=0.7" src="http://static.tumblr.com/puls2hm/QOHn1brjx/st.png"/></a>
  618. <!----------------------------------THANK-------------------------------->
  619.  
  620. </body>
  621. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement