Advertisement
austinh115

[PHP] Some tumblr theme? why is this even here

Jun 16th, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 28.94 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <!----------------------------------------
  4. Unafraid Theme by Incedo
  5. http://incedothemes.tumblr.com
  6. Please do not remove the credit.
  7. Updated 7/27/14
  8. ------------------------------------------>
  9.  
  10. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  11.  
  12. <head>
  13.  
  14. <title>{Title}</title>
  15.  
  16. <meta name="color:background" content="#ffffff" />
  17. <meta name="color:scrollbar" content="#707070" />
  18. <meta name="color:scrollbar background" content="#ffffff" />
  19. <meta name="color:text" content="#707070" />
  20. <meta name="color:navigation" content="#707070" />
  21. <meta name="color:description" content="#707070" />
  22. <meta name="color:link" content="#707070" />
  23. <meta name="color:link hover" content="#e0e0e0" />
  24. <meta name="color:button hover" content="#f0f0f0" />
  25. <meta name="color:title" content="#707070" />
  26. <meta name="color:borders" content="#d8d8d8" />
  27. <meta name="color:posts" content="#ffffff" />
  28.  
  29. <meta name="if:infinite scroll" content="0"/>
  30. <meta name="if:sidebar top" content=""/>
  31. <meta name="if:sidebar middle" content="1"/>
  32. <meta name="if:sidebar bottom" content=""/>
  33. <meta name="if:one column" content=""/>
  34. <meta name="if:two columns" content="1"/>
  35. <meta name="if:small posts" content="1"/>
  36. <meta name="if:big posts" content=""/>
  37. <meta name="if:show sidebar image" content=""/>
  38. <meta name="if:show home link" content="1"/>
  39. <meta name="if:text perma on hover" content="1"/>
  40. <meta name="if:show captions" content="1"/>
  41. <meta name="if:show tags" content="1"/>
  42. <meta name="if:custom title font" content="1"/>
  43.    
  44. <meta name="font:description" content="Square Serif" />
  45. <meta name="font:title" content="Square Serif" />
  46. <meta name="font:text" content="Square Serif" />
  47. <meta name="font:perma" content="Square Serif" />
  48. <meta name="font:navigation" content="Square Serif" />
  49.    
  50. <meta name="image:Left Background" content=""/>
  51. <meta name="image:Right Background" content=""/>
  52. <meta name="image:Tiled Background" content="http://static.tumblr.com/8xsfla2/3Zpmxcszh/pw_maze_white.png"/>
  53. <meta name="image:Cover Background" content=""/>
  54. <meta name="image:Sidebar" content=""/>
  55.  
  56. <meta name="text:button 1 title" content="home" />
  57. <meta name="text:button 1 link" content="/" />
  58. <meta name="text:button 2 title" content="message" />
  59. <meta name="text:button 2 link" content="/ask" />
  60. <meta name="text:button 3 dropdown title" content="links"/>
  61. <meta name="text:link 1 title" content="" />
  62. <meta name="text:link 1" content="" />
  63. <meta name="text:link 2 title" content="" />
  64. <meta name="text:link 2" content="" />
  65. <meta name="text:link 3 title" content="" />
  66. <meta name="text:link 3" content="" />
  67. <meta name="text:link 4 title" content="" />
  68. <meta name="text:link 4" content="" />
  69. <meta name="text:Post Title Size" content="12" />
  70. <meta name="text:Post Font Size" content="10" />
  71. <meta name="text:Blog Title Size" content="20" />
  72. <meta name="text:Description Size" content="9" />
  73. <meta name="text:Navigation Size" content="9" />
  74.  
  75. <link rel="stylesheet" media="screen" href="http://openfontlibrary.org/face/web-symbols" rel="stylesheet" type="text/css"/>
  76. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  77. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  78. <link rel="shortcut icon" href="{Favicon}" />
  79. <link rel="alternate" type="application/rss+xml" href="{RSS}" />
  80.    
  81. <style type="text/css">
  82.    
  83. body {
  84. background-color:{color:background};
  85. background-image: url({image:Left Background}), url({image:Right Background}), url({image:Tiled Background}), url({image:Cover Background});
  86. background-attachment: fixed;
  87. background-position: bottom 0px left 0px, bottom 0px right 0px, top left, top left;
  88. background-repeat: no-repeat, no-repeat, repeat, no-repeat;
  89. -webkit-background-size: auto, auto, auto, cover;
  90. -moz-background-size: auto, auto, auto, cover;
  91. -o-background-size: auto, auto, auto, cover;
  92. background-size: auto, auto, auto, cover;
  93. color:{color:text};  
  94. font-family: {font:text};
  95. font-size:{text:post font size}px;
  96. line-height:123%;
  97. text-align:left
  98. padding: 0px;}
  99.    
  100. ::-webkit-scrollbar {
  101. height: 5px;
  102. width: 8px;}
  103.  
  104. ::-webkit-scrollbar-thumb {
  105. background-color:{color:scrollbar};}
  106.  
  107. ::-webkit-scrollbar-track{
  108. background-color:{color:scrollbar background};}
  109.  
  110. ::-webkit-scrollbar-buttom{
  111. background-color:{color:scrollbar background};}
  112.  
  113. a:link, a:active, a:visited {
  114. color: {color:link};
  115. text-decoration:none;
  116. -webkit-transition: all 0.5s ease-in-out;
  117. -moz-transition: all 0.5s ease-in-out;
  118. -o-transition: all 0.5s ease-in-out;
  119. -ms-transition: all 0.5s ease-in-out;
  120. transition: all 0.5s ease-in-out;}
  121.  
  122. a:hover{
  123. color:{color:link hover};
  124. -webkit-transition: all 0.5s ease-in-out;
  125. -moz-transition: all 0.5s ease-in-out;
  126. -o-transition: all 0.5s ease-in-out;
  127. -ms-transition: all 0.5s ease-in-out;
  128. transition: all 0.5s ease-in-out;}
  129.  
  130. #wrapper {
  131. margin-left:auto;
  132. margin-right:auto;
  133. position:relative;}
  134.  
  135. #lbar {
  136. width:200px;
  137. position:fixed;}
  138.  
  139. {block:ifsidebartop} #lbar {top:15%} {/block:ifsidebartop}
  140. {block:ifsidebarmiddle} #lbar {top:49%} {/block:ifsidebarmiddle}
  141. {block:ifsidebarbottom} #lbar {bottom:11%} {/block:ifsidebarbottom}
  142.  
  143. #limg {width:inherit}
  144.  
  145. #limg img {
  146. max-width:184px;
  147. border: 0px solid transparent;
  148. margin-bottom:10px;}
  149.  
  150. #lhold {
  151. background-color:{color:posts};
  152. padding:8px;
  153. border: 1px solid {color:borders};
  154. border-radius: 6px;
  155. -moz-border-radius: 6px;#
  156. -webkit-border-radius: 6px;}
  157.  
  158. #title, #title a {
  159. {block:ifcustomtitlefont}font-family: 'Cedarville Cursive', cursive;{/block:ifcustomtitlefont}
  160. {block:ifnotcustomtitlefont}font-family: {font:title};{/block:ifnotcustomtitlefont}
  161. font-size: {text:blog title size}px;
  162. letter-spacing: 1px;
  163. text-align:center;
  164. color: {color:title};
  165. text-transform: lowercase;}
  166.  
  167. #desc {
  168. width:inherit;
  169. color:{color:description};
  170. margin-top:8px;
  171. text-align:center;
  172. font-size:{text:description size}px;
  173. font-family:{font:description};}
  174.  
  175. #s-m-t-tooltip{
  176. box-shadow:1px 1px 3px rgba(0,0,0,.1);
  177. max-width:250px;
  178. margin-top:18px;
  179. margin-left:8px;
  180. padding-left:3px;
  181. padding-right:3px;
  182. border:1px solid {color:borders};
  183. border-radius:2px;
  184. z-index:99999999999999999999999999999999999999999999;
  185. background-color:{color:posts};
  186. color:{color:text};
  187. font-family:{font:perma};
  188. z-index:999999999;
  189. font-size:11px;
  190. font-style:normal;
  191. text-transform:lowercase;
  192. line-height:14px;
  193. height:14px;}
  194.  
  195. #nav {
  196. margin-top:5px;
  197. font-size:{text:navigation size}px;
  198. text-align:center;
  199. -webkit-touch-callout: none;
  200. -webkit-user-select: none;
  201. -khtml-user-select: none;
  202. -moz-user-select: none;
  203. -ms-user-select: none;
  204. user-select: none;}
  205.  
  206. #nav a, #nav {
  207. color: {color:navigation};
  208. font-family: {font:navigation};
  209. font-style:none;
  210. font-size:{text:navigation size}px;}
  211.  
  212. #button {
  213. width:53px;
  214. height:12px;
  215. background-color:{color:posts};
  216. padding:2px 4px;
  217. border: 1px solid {color:borders};
  218. border-radius: 6px;
  219. -moz-border-radius: 6px;#
  220. -webkit-border-radius: 6px;
  221. -webkit-transition: all 0.3s ease-in-out;
  222. -moz-transition: all 0.3s ease-in-out;
  223. -o-transition: all 0.3s ease-in-out;
  224. -ms-transition: all 0.3s ease-in-out;
  225. transition: all 0.3s ease-in-out;}
  226.  
  227. #button:hover {
  228. background-color:{color:button hover};
  229. -webkit-transition: all 0.5s ease-in-out;
  230. -moz-transition: all 0.5s ease-in-out;
  231. -o-transition: all 0.5s ease-in-out;
  232. -ms-transition: all 0.5s ease-in-out;
  233. transition: all 0.5s ease-in-out;}
  234.  
  235. .b1 {position:fixed;}
  236.  
  237. .b2 {position:fixed;margin-left:69px;}
  238.  
  239. .b3 {cursor:pointer; position:fixed;margin-left:138px;z-index:9999999;}
  240.  
  241. #linkhold {
  242. position:fixed;
  243. display:none;
  244. margin-left:138px;
  245. margin-top:18px;}
  246.  
  247. .b4 {margin-top:6px;}
  248.  
  249. #nav a:hover {color: {color:navigation hover};}
  250.  
  251. #entries {margin-left: 224px;}
  252.  
  253. #posts {
  254. float: left;
  255. height:auto;
  256. position:relative;}
  257.  
  258. #poststyle {
  259. background-color:{color:posts};
  260. z-index:99999;
  261. position:relative;
  262. margin: 15px;
  263. padding:8px;
  264. border: 1px solid {color:borders};
  265. border-radius: 6px;
  266. -moz-border-radius: 6px;
  267. -webkit-border-radius: 6px;}
  268.  
  269. #photo img, iframe.photoset, #textpost img {
  270. border-radius: 4px;
  271. -moz-border-radius: 4px;#
  272. -webkit-border-radius: 4px;
  273. opacity: .80;
  274. -moz-opacity: .80;
  275. filter: alpha(opacity = 80);
  276. -moz-transition: all .7s ease-in;
  277. -webkit-transition: all .7s ease-in;
  278. -o-transition: all .7s ease-in;
  279. transition: all .7s ease-in;}
  280.  
  281. #mhold img, #mhold2, #mhold {
  282. border-radius: 4px;
  283. -moz-border-radius: 4px;#
  284. -webkit-border-radius: 4px;}
  285.  
  286. #posts:hover #photo img, #posts:hover iframe.photoset, #posts:hover #textpost img {
  287. opacity: 1;
  288. -moz-opacity: 1;
  289. filter: alpha(opacity = 100);
  290. -moz-transition: all .7s ease-in;
  291. -webkit-transition: all .7s ease-in;
  292. -o-transition: all .7s ease-in;
  293. transition: all .7s ease-in;}
  294.  
  295. #photo, #photo a, #photo a img {border: none; line-height:0;}
  296.  
  297. {block:indexpage}
  298. {block:ifsmallposts}
  299. #posts {width:298px;}
  300. #poststyle, #photo, #photo a img {width: 250px;}
  301. {block:ifonecolumn}
  302. #entries {width:298px;}
  303. #wrapper {width:522px;}
  304. {/block:ifonecolumn}
  305. {block:iftwocolumns}
  306. #entries {width: 596px;}
  307. #wrapper {width:820px;}
  308. {/block:iftwocolumns}
  309. {/block:ifsmallposts}
  310. {block:ifbigposts}
  311. #posts {width:448px;}
  312. #poststyle, #photo, #photo a img {width: 400px;}
  313. {block:ifonecolumn}
  314. #entries {width:448px;}
  315. #wrapper {width:672px;}
  316. {/block:ifonecolumn}
  317. {block:iftwocolumns}
  318. #entries {width: 896px;}
  319. #wrapper {width:1120px;}
  320. {/block:iftwocolumns}
  321. {/block:ifbigposts}
  322. {/block:indexpage}
  323.  
  324. {block:permalinkpage}
  325. {block:ifonecolumn}
  326. #posts {width:448px;}
  327. #poststyle, #photo, #photo a img, {width: 400px;}
  328. #entries {width:448px}
  329. #wrapper {width:672px;}
  330. {/block:ifonecolumn}
  331. {block:iftwocolumns}
  332. #posts {width:548px;}
  333. #poststyle, #photo, #photo a img, {width: 500px;}
  334. #entries {width:548px}
  335. #wrapper {width:772px;}
  336. {/block:iftwocolumns}
  337. {/block:permalinkpage}
  338.  
  339. h2 {
  340. font-size: {text:Post Title Size}px;
  341. margin:0px;
  342. line-height:100%;}
  343.  
  344. .asker a {font-weight:bold;}
  345. .asker {letter-spacing:1px;}
  346.  
  347. #quote {
  348. font-style:italic;
  349. letter-spacing:1px;}
  350.  
  351. #mhold {
  352. display:inline-block;
  353. width:100px;
  354. height:100px;}
  355.  
  356. #mart {
  357. position:absolute;
  358. width:100px;
  359. height:100px;
  360. overflow:hidden;}
  361.  
  362. #mart img {
  363. width:100px;
  364. position:absolute;}
  365.  
  366. #mart2 {
  367. position:absolute;
  368. width:100px;
  369. height:100px;
  370. background-color:{color:post background};}
  371.  
  372. #mhold2 {
  373. position:absolute;
  374. display:inline-block;
  375. height:100px;
  376. margin-left:8px;}
  377.  
  378. #mhold2 p {
  379. margin-top:0px;
  380. margin-bottom:2px;}
  381.  
  382. {block:indexpage}
  383. #mhold2{width:140px;}
  384. {/block:indexpage}
  385. {block:permalinkpage}
  386. #mhold2{width:390px;}
  387. {/block:permalinkpage}
  388.  
  389. #mplayer {
  390. position:absolute;
  391. height:28px;
  392. width:28px;
  393. margin:9px;
  394. overflow:hidden;}
  395.  
  396. #mcircle {
  397. position:absolute;
  398. width:46px;
  399. height:46px;
  400. border-radius: 23px;
  401. -moz-border-radius: 23px;
  402. -webkit-border-radius: 23px;
  403. background-color:white;
  404. z-index:999999;
  405. margin:27px;
  406. opacity: .6;
  407. -moz-opacity: .6;
  408. filter: alpha(opacity = 60);
  409. -moz-transition: all 0.4s;
  410. -webkit-transition: all 0.4s;
  411. -o-transition: all 0.4s;
  412. transition: all 0.4;}
  413.  
  414. #mcircle:hover {
  415. opacity: .8;
  416. -moz-opacity: .8;
  417. filter: alpha(opacity = 80);
  418. -moz-transition: all 0.4s;
  419. -webkit-transition: all 0.4s;
  420. -o-transition: all 0.4s;
  421. transition: all 0.4;}
  422.  
  423. p, ul, ol {
  424. margin-top: 4px;
  425. margin-bottom: 4px;}
  426.  
  427. blockquote {
  428. padding-left:6px;
  429. padding-top:0px;
  430. padding-bottom:0px;
  431. padding-right:0px;
  432. border-left-style:solid;
  433. border-color: {color:borders};
  434. border-width:2px;
  435. margin: 0px 0px 0px 6px;}
  436.  
  437. img a {border:none;}
  438.  
  439. .chat ul, .chat li {list-style:none; margin:0px; padding:0px;}
  440.  
  441. img {max-width:100%;}
  442.  
  443. #pagination {text-align:center;}
  444.  
  445. #paginationhold {margin-left:200px}
  446.  
  447.  
  448. #pagination a {
  449. margin:0px 6px;
  450. color:{color:navigation};
  451. font-family:{font:navigation};}
  452.  
  453. #c {
  454. position:fixed;
  455. bottom:4px;
  456. right:4px;
  457. font-size:13px;
  458. font-family:helvetica;}
  459.  
  460. /*for photo permalink*/
  461. #pperma {position:relative; z-index:0; margin-top:0px; margin-left:24px; opacity:.99999999;height:0px;}
  462. #plik, #preb {height:14px; margin-left:-9px; width:14px; background-color:{color:posts}; position:absolute; -moz-border-radius:2px; border-radius:2px; border-width:1px 0px 1px 1px; border-style:solid; border-color:{color:borders}; padding:2px 4px 2px 3px;  opacity: 1; -moz-opacity: 0; filter: alpha(opacity = 0); -moz-transition: all 0.4s ease-out; -webkit-transition: all 0.4s ease-out; -o-transition: all 0.4s ease-out ; transition: all 0.4 ease-out;}
  463. #plik {margin-top:24px}
  464. #preb {margin-top:48px;}
  465. #posts:hover #plik, #posts:hover #preb { margin-left:-29px; opacity: 1; -moz-opacity: 1; filter: alpha(opacity = 100); -moz-transition: all 0.3s ease-in; -webkit-transition: all 0.3s ease-in; -o-transition: all 0.3s ease-in; transition: all 0.3s ease-in;}
  466. #posts:hover #preb {transition-delay: .2s;-webkit-transition-delay: .2s;}
  467.  
  468. /*for text permalink*/
  469. #posts .textperma, .textperma a {font-family:{font:perma}; text-transform:none; text-align:right; color:{color:text}; position: relative; font-size: {text:post size}px; z-index:55555555500;}
  470. .textperma {border-width:1px 0px 0px 0px; border-color:{color:borders}; border-style:solid;padding-top:3px;margin-top: 3px;}
  471. #posts .textperma{ opacity: .4; filter: alpha(opacity = 40); -moz-opacity:.4; opacity:.4; -moz-transition: all 0.6s; -webkit-transition: all 0.6s; -o-transition: all 0.6s; transition: all 0.6;}
  472. #posts:hover .textperma{ opacity: 1; filter: alpha(opacity = 100); -moz-transition: all 0.6s; -webkit-transition: all 0.6s; -o-transition: all 0.6s; transition: all 0.6; -moz-opacity: 1; opacity:1; filter: alpha(opacity=100);}
  473.  
  474. /*for multi columns*/
  475. {block:ifinfinitescroll}
  476. .tumblrAutoPager_page_info, .tumblrAutoPager_page_separator {display:none;}
  477. #infscr-loading {display:none;}
  478. .navigation {display:none!important;}
  479. {/block:ifinfinitescroll}
  480.  
  481.    
  482. </style>
  483.  
  484. <style type="text/css">{CustomCSS}</style>
  485.  
  486. <link href='http://fonts.googleapis.com/css?family=Cedarville+Cursive' rel='stylesheet' type='text/css'>
  487.    
  488. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/aK8m1cpdr/like2.js"></script>
  489.  
  490. <div style="display:none"><iframe id="likeiframe" style="width: 1px; height: 1px;"></iframe></div>
  491.  
  492.  <script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
  493. </script>
  494. <script>
  495. $(document).ready(function(){
  496.   $(".b3").click(function(){
  497.     $("#linkhold").slideToggle("slow");
  498.   });
  499. });
  500. </script>
  501.  
  502. <!for multi columns>
  503. <script type="text/javascript" src="http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js"></script><script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script><script src="http://static.tumblr.com/twte3d7/qNulm663d/infinite.js"></script><script src="http://static.tumblr.com/twte3d7/qNulm663d/infinite.js"></script><script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script><script type="text/javascript" src="jquery.masonry.min.js"></script><script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>{block:IndexPage}<script src="http://masonry.desandro.com/jquery.masonry.min.js"></script>
  504. <script src="http://static.tumblr.com/twte3d7/C5Bllzh32/masonry.js"></script><script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>{/block:IndexPage}
  505. <script type="text/javascript">
  506.  $(window).load(function () {
  507.  $('#entries').masonry(),
  508. $('.masonryWrap').infinitescroll({
  509. itemSelector : "#posts",
  510.  navSelector : "div.navigation",
  511.  nextSelector : ".navigation a#next",
  512.  bufferPx : 1000,
  513.  loadingImg : "",
  514.  loadingText : "",
  515.  animation: true,
  516.  extraScrollPx: 1000,
  517.  },
  518.  function() { $('#entries').masonry({ appendedContent: $(this) });
  519. });
  520.  });</script>
  521.  
  522. <script type="text/javascript" src="http://static.tumblr.com/uiqhh9x/aK8m1cpdr/like2.js"></script>
  523.  
  524. <div style="display:none"><iframe id="likeiframe" style="width: 1px; height: 1px;"></iframe></div>
  525.  
  526. <!for multi columns>
  527. <script type="text/javascript" src="http://static.tumblr.com/d0qlne1/DiAl6ekb7/jquery-1.4.2.min.js"></script><script src="http://static.tumblr.com/twte3d7/H8Glm663z/masonry.js"></script><script src="http://static.tumblr.com/twte3d7/qNulm663d/infinite.js"></script><script src="http://static.tumblr.com/twte3d7/qNulm663d/infinite.js"></script><script type="text/javascript" src="http://static.tumblr.com/imovwvl/dJWl20ley/jqueryformasonry.js"></script><script type="text/javascript" src="jquery.masonry.min.js"></script><script src="http://static.tumblr.com/df28qmy/SHUlh3i7s/jquery.infinitescroll.js"></script>{block:IndexPage}<script src="http://masonry.desandro.com/jquery.masonry.min.js"></script>
  528. <script src="http://static.tumblr.com/twte3d7/C5Bllzh32/masonry.js"></script><script src="http://static.tumblr.com/twte3d7/0pellzh2t/infinitescroll.js"></script>{/block:IndexPage}
  529.  
  530.  <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  531. <script>
  532. (function($){
  533. $(document).ready(function(){
  534. $("[title],a[title],img[title]").style_my_tooltips({
  535.     tip_follows_cursor:true,
  536.     tip_delay_time:1,
  537.     tip_fade_speed:400,
  538.     attribute:"title"
  539. });
  540. });
  541. })(jQuery);
  542. </script>
  543.  
  544. </head>
  545.  
  546. <body>
  547.  
  548. <!for multi columns>
  549. {block:ifinfinitescroll}
  550. <div class="navigation">
  551. {block:Pagination}
  552. {block:NextPage}<p id="page_nav"><a style="float:right" href="{NextPage}" id="next"></a>{/block:NextPage}
  553. {block:PreviousPage}<a style="float:left" href="{PreviousPage}"></a></p>{/block:PreviousPage}
  554. {/block:Pagination}
  555. </div>
  556. {/block:ifinfinitescroll}
  557.  
  558. {block:ContentSource}
  559. <!— {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  560. width="{LogoWidth}" height="{LogoHeight}" alt={SourceTitle}" />
  561. {/block:SourceLogo}
  562. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} —>
  563. {/block:ContentSource}
  564. {block:RebloggedFrom}<div style="display:none">{ReblogParentName}</div>{/block:RebloggedFrom}
  565.  
  566. <div id="wrapper">
  567.  
  568. <div id="lbar"><div id="limg">
  569.  
  570. <div id="lhold">
  571.  
  572. {block:ifshowsidebarimage}<div id="sidebarimage"><img src="{image:sidebar}"></div>{/block:ifshowsidebarimage}
  573.  
  574. <div id="title"><a href="/">{Title}</a></div>
  575.  
  576. <div id="desc">{Description}</div>
  577.  
  578. </div>
  579.  
  580. <div id="nav">
  581. <div id="button" class="b1"><a href="{text:button 1 link}">{text:button 1 title}</a></div>
  582. <div id="button" class="b2"><a href="{text:button 2 link}">{text:button 2 title}</a></div>
  583. <div id="button" class="b3">{text:button 3 dropdown title}</a></div>
  584. <div id="linkhold">{block:HasPages}{block:Pages}<div id="button" class="b4"><a href="{URL}">{Label}</a></div>{/block:Pages}{/block:HasPages}
  585. {block:iflink1}<div id="button" class="b4"><a href="{text:link 1}">{text:link 1 title}</a></div>{/block:iflink1}
  586. {block:iflink2}<div id="button" class="b4"><a href="{text:link 2}">{text:link 2 title}</a></div>{/block:iflink2}
  587. {block:iflink3}<div id="button" class="b4"><a href="{text:link 3}">{text:link 3 title}</a></div>{/block:iflink3}
  588. {block:iflink4}<div id="button" class="b4"><a href="{text:link 4}">{text:link 4 title}</a></div>{/block:iflink4}
  589. <div id="button" class="b4"><a href="http://incedo.tumblr.com/">theme</a></div></div>
  590. </div>
  591.  
  592. </div></div>
  593.  
  594. <div class = "autopagerize_page_element" >
  595. <div id="entries">
  596. {block:Posts}
  597. <div id="posts">
  598.  
  599. {block:Text}<div id="poststyle">
  600. <div id="textpost">
  601. {block:Title}<h2>{Title}</h2>{/block:Title}
  602. {Body}</div>
  603. {block:ifshowcaptions}{block:caption}{Caption}{/block:caption}{/block:ifshowcaptions}
  604. {block:ifnotshowcaptions}{block:PermalinkPage}{block:caption}{Caption}{/block:caption}{/block:PermalinkPage}{/block:ifnotshowcaptions}
  605. {block:ifshowtags}{block:HasTags}<!perma><div class="textperma">{block:Tags}#<a href="{TagURL}">{Tag} </a> {/block:Tags}</div>{/block:HasTags}{/block:ifshowtags}
  606. {block:PermalinkPage}<br>
  607. <center>Posted {TimeAgo} with {NoteCount} Notes</center><br>
  608. <div class="notes">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  609. {/block:PermalinkPage}
  610. <!perma>{block:IndexPage}<div class="textperma">
  611. <a href="{ReblogURL}" target="_blank">reblog</a> / <a href="{permalink}">{NoteCountWithLabel}</a></span></div>{/block:IndexPage}
  612. </div>{/block:Text}
  613.  
  614. {block:Quote}<div id="poststyle">
  615. <div id="quote">
  616. <span id="quoteq">"</span>{Quote}” </div><span style="margin-left:20px;">— {Source}</span>
  617. {block:ifshowcaptions}{block:caption}{Caption}{/block:caption}{/block:ifshowcaptions}
  618. {block:ifnotshowcaptions}{block:PermalinkPage}{block:caption}{Caption}{/block:caption}{/block:PermalinkPage}{/block:ifnotshowcaptions}
  619. {block:ifshowtags}{block:HasTags}<!perma><div class="textperma">{block:Tags}#<a href="{TagURL}">{Tag} </a> {/block:Tags}</div>{/block:HasTags}{/block:ifshowtags}
  620. {block:PermalinkPage}<br>
  621. <center>Posted {TimeAgo} with {NoteCount} Notes</center><br>
  622. <div class="notes">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  623. {/block:PermalinkPage}
  624. <!perma>{block:IndexPage}<div class="textperma">
  625. <a href="{ReblogURL}" target="_blank">reblog</a> / <a href="{permalink}">{NoteCountWithLabel}</a></span></div>{/block:IndexPage}
  626. </div>{/block:Quote}
  627.  
  628. {block:Link}<div id="poststyle">
  629. <a href="{URL}"><h2>{Name}</h2></a>
  630. {block:Description}<p>{Description}</p>{/block:Description}
  631. {block:ifshowcaptions}{block:caption}{Caption}{/block:caption}{/block:ifshowcaptions}
  632. {block:ifnotshowcaptions}{block:PermalinkPage}{block:caption}{Caption}{/block:caption}{/block:PermalinkPage}{/block:ifnotshowcaptions}
  633. {block:ifshowtags}{block:HasTags}<!perma><div class="textperma">{block:Tags}#<a href="{TagURL}">{Tag} </a> {/block:Tags}</div>{/block:HasTags}{/block:ifshowtags}
  634. {block:PermalinkPage}<br>
  635. <center>Posted {TimeAgo} with {NoteCount} Notes</center><br>
  636. <div class="notes">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  637. {/block:PermalinkPage}
  638. <!perma>{block:IndexPage}<div class="textperma">
  639. <a href="{ReblogURL}" target="_blank">reblog</a> / <a href="{permalink}">{NoteCountWithLabel}</a></span></div>{/block:IndexPage}
  640. </div>{/block:Link}
  641.  
  642. {block:Chat}<div id="poststyle">
  643. <class="chat">{block:Lines}<div id="chatter"><class="user_{UserNumber}">{block:Label}<span class="label">{Label}</span>{/block:Label}&nbsp;{Line}</div>{/block:Lines}
  644. {block:ifshowcaptions}{block:caption}{Caption}{/block:caption}{/block:ifshowcaptions}
  645. {block:ifnotshowcaptions}{block:PermalinkPage}{block:caption}{Caption}{/block:caption}{/block:PermalinkPage}{/block:ifnotshowcaptions}
  646. {block:ifshowtags}{block:HasTags}<!perma><div class="textperma">{block:Tags}#<a href="{TagURL}">{Tag} </a> {/block:Tags}</div>{/block:HasTags}{/block:ifshowtags}
  647. {block:PermalinkPage}<br>
  648. <center>Posted {TimeAgo} with {NoteCount} Notes</center><br>
  649. <div class="notes">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  650. {/block:PermalinkPage}
  651. <!perma>{block:IndexPage}<div class="textperma">
  652. <a href="{ReblogURL}" target="_blank">reblog</a> / <a href="{permalink}">{NoteCountWithLabel}</a></span></div>{/block:IndexPage}
  653. </div>{/block:Chat}
  654.  
  655. {block:Answer}<div id="poststyle">
  656. <div class="asker">{Asker} asked: {Question}</div>{Answer}
  657. {block:ifshowcaptions}{block:caption}{Caption}{/block:caption}{/block:ifshowcaptions}
  658. {block:ifnotshowcaptions}{block:PermalinkPage}{block:caption}{Caption}{/block:caption}{/block:PermalinkPage}{/block:ifnotshowcaptions}
  659. {block:ifshowtags}{block:HasTags}<!perma><div class="textperma">{block:Tags}#<a href="{TagURL}">{Tag} </a> {/block:Tags}</div>{/block:HasTags}{/block:ifshowtags}
  660. {block:PermalinkPage}<br>
  661. <center>Posted {TimeAgo} with {NoteCount} Notes</center><br>
  662. <div class="notes">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  663. {/block:PermalinkPage}
  664. <!perma>{block:IndexPage}<div class="textperma">
  665. <a href="{ReblogURL}" target="_blank">reblog</a> / <a href="{permalink}">{NoteCountWithLabel}</a></span></div>{/block:IndexPage}
  666. </div>{/block:Answer}
  667.  
  668. {block:Audio}<div id="poststyle">
  669. <div id="mhold">
  670. <div id="mart">
  671. <img src="http://static.tumblr.com/jn9hrij/20Ul2zzsr/albumart.jpg">
  672. {block:AlbumArt}<div id="mart2"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}
  673. </div>
  674. <div id="mcircle"><div id="mplayer">{AudioPlayerwhite}</div></div>
  675. </div>
  676. <div id="mhold2">
  677. <p>Track:{block:TrackName} {TrackName}{/block:TrackName}</p>
  678. <p>Artist:{block:Artist} {Artist}{/block:Artist}</p>
  679. <p>Album:{block:Album} {Album}{/block:Album}</p>
  680. <p>Plays: {FormattedPlayCount}</p>
  681. </div>
  682. {block:ifshowcaptions}{block:caption}{Caption}{/block:caption}{/block:ifshowcaptions}
  683. {block:ifnotshowcaptions}{block:PermalinkPage}{block:caption}{Caption}{/block:caption}{/block:PermalinkPage}{/block:ifnotshowcaptions}
  684. {block:ifshowtags}{block:HasTags}<!perma><div class="textperma">{block:Tags}#<a href="{TagURL}">{Tag} </a> {/block:Tags}</div>{/block:HasTags}{/block:ifshowtags}
  685. {block:PermalinkPage}<br>
  686. <center>Posted {TimeAgo} with {NoteCount} Notes</center><br>
  687. <div class="notes">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  688. {/block:PermalinkPage}
  689. <!perma>{block:IndexPage}<div class="textperma">
  690. <a href="{ReblogURL}" target="_blank">reblog</a> / <a href="{permalink}">{NoteCountWithLabel}</a></span></div>{/block:IndexPage}
  691. </div>{/block:Audio}
  692.  
  693. {block:Video}<div id="poststyle">
  694. {block:indexpage}
  695. {block:ifsmallposts}{Video-250}{/block:ifsmallposts}
  696. {block:ifbigposts}{Video-400}{/block:ifbigposts}
  697. {/block:indexpage}
  698. {block:permalinkpage}
  699. {block:ifonecolumn}{Video-400}{/block:ifonecolumn}
  700. {block:iftwocolumns}{Video-500}{/block:iftwocolumns}
  701. {/block:permalinkpage}
  702. <!perma>{block:IndexPage}<div class="textperma">
  703. <a href="{ReblogURL}" target="_blank">reblog</a> / <a href="{permalink}">{NoteCountWithLabel}</a></span></div>{/block:IndexPage}
  704. {block:ifshowcaptions}{block:caption}{Caption}{/block:caption}{/block:ifshowcaptions}
  705. {block:ifnotshowcaptions}{block:PermalinkPage}{block:caption}{Caption}{/block:caption}{/block:PermalinkPage}{/block:ifnotshowcaptions}
  706. {block:ifshowtags}{block:HasTags}<!perma><div class="textperma">{block:Tags}#<a href="{TagURL}">{Tag} </a> {/block:Tags}</div>{/block:HasTags}{/block:ifshowtags}
  707. {block:PermalinkPage}<br>
  708. <center>Posted {TimeAgo} with {NoteCount} Notes</center><br>
  709. <div class="notes">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  710. {/block:PermalinkPage}
  711. <!perma>{block:IndexPage}<div class="textperma">
  712. <a href="{ReblogURL}" target="_blank">reblog</a> / <a href="{permalink}">{NoteCountWithLabel}</a></span></div>{/block:IndexPage}
  713. </div>{/block:Video}
  714.  
  715. {block:Photo}
  716. <!perma>{block:IndexPage}<div id="pperma">
  717. <div id="plik">{likebutton color=gray size=13}</div>
  718. <div id="preb">{reblogbutton color=gray size=13}</div>
  719. </div>{/block:IndexPage}
  720. <div id="poststyle">
  721. <div id="photo">
  722. {block:indexpage}<a href="{Permalink}" title="{notecountwithlabel}"><img src="{PhotoURL-500}"/></a>{/block:indexpage}
  723.     {block:permalinkpage}<a href="{Permalink}" title="{notecountwithlabel}"><img src="{PhotoURL-500}"/></a>{/block:permalinkpage}
  724. </div>
  725. {block:ifshowcaptions}{block:caption}{Caption}{/block:caption}{/block:ifshowcaptions}
  726. {block:ifnotshowcaptions}{block:PermalinkPage}{block:caption}{Caption}{/block:caption}{/block:PermalinkPage}{/block:ifnotshowcaptions}
  727. {block:ifshowtags}{block:HasTags}<!perma><div class="textperma">{block:Tags}#<a href="{TagURL}">{Tag} </a> {/block:Tags}</div>{/block:HasTags}{/block:ifshowtags}
  728. {block:PermalinkPage}<br>
  729. <center>Posted {TimeAgo} with {NoteCount} Notes</center><br>
  730. <div class="notes">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  731. {/block:PermalinkPage}
  732. </div>{/block:Photo}
  733.  
  734. {block:Photoset}
  735. <!perma>{block:IndexPage}<div id="pperma">
  736. <div id="plik">{likebutton color=gray size=13}</div>
  737. <div id="preb">{reblogbutton color=gray size=13}</div>
  738. </div>{/block:IndexPage}
  739. <div id="poststyle">
  740. {block:indexpage}
  741. {block:ifsmallposts}{Photoset-250}{/block:ifsmallposts}
  742. {block:ifbigposts}{Photoset-400}{/block:ifbigposts}
  743. {/block:indexpage}
  744. {block:permalinkpage}
  745. {block:ifonecolumn}{Photoset-400}{/block:ifonecolumn}
  746. {block:iftwocolumns}{Photoset-500}{/block:iftwocolumns}
  747. {/block:permalinkpage}
  748. {block:ifshowcaptions}{block:caption}{Caption}{/block:caption}{/block:ifshowcaptions}
  749. {block:ifnotshowcaptions}{block:PermalinkPage}{block:caption}{Caption}{/block:caption}{/block:PermalinkPage}{/block:ifnotshowcaptions}
  750. {block:ifshowtags}{block:HasTags}<!perma><div class="textperma">{block:Tags}#<a href="{TagURL}">{Tag} </a> {/block:Tags}</div>{/block:HasTags}{/block:ifshowtags}
  751. <!perma>{block:IndexPage}<div class="textperma">
  752. <a href="{ReblogURL}" target="_blank">reblog</a> / <a href="{permalink}">{NoteCountWithLabel}</a></span></div>{/block:IndexPage}
  753. {block:PermalinkPage}<br>
  754. <center>Posted {TimeAgo} with {NoteCount} Notes</center><br>
  755. <div class="notes">{block:PostNotes}{PostNotes}{/block:PostNotes}</div>
  756. {/block:PermalinkPage}
  757. </div>{/block:Photoset}
  758.  
  759. </div>
  760. {/block:Posts}
  761. </div>
  762. </div>
  763.  
  764. {block:ifnotinfinitescroll}
  765. <div id="paginationhold">
  766. <div id="pagination">
  767. {block:Pagination}
  768. {block:PreviousPage}<a href="{PreviousPage}">previous</a>{/block:PreviousPage}
  769. {block:NextPage}<a href="{NextPage}">next</a>{/block:NextPage}
  770. {/block:Pagination}
  771. </div></div>
  772. {/block:ifnotinfinitescroll}
  773.  
  774. </div>
  775.  
  776. <div id="c"><a href="http://incedo.tumblr.com">©</a></div>
  777.  
  778. </body>
  779. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement