Don't like ads? PRO users don't see any ads ;-)

Custom Theme - #1

By: sherlocked on May 1st, 2012  |  syntax: HTML  |  size: 19.27 KB  |  hits: 26  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <!--
  2.  
  3.  custom theme by first-avenger
  4.  for bethany/coralteen :~)
  5.  
  6.  FEATURES:
  7.  - 300px photos (500px on permalink page)
  8.  - 4 custom links
  9.  - If transparent sidebar
  10.  - If transparent description
  11.  - If circle links uppercase
  12.  - If circle links rotate on hover
  13.  - Sidebar/background image
  14.  
  15.  NOTE:
  16.  - There is no 300px setting for
  17.  photosets, so the photoset is 250px.
  18.  
  19. -->
  20.  
  21. <head>
  22.  
  23. {block:IndexPage}
  24.  
  25. <script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
  26.  
  27. {block:NextPage}<div id="page-nav"><a href="{NextPage}"></a></div>{/block:NextPage}
  28.  
  29. <script src='http://code.jquery.com/jquery-1.4.2.min.js' type='text/javascript'></script>
  30.  
  31. <script src='http://static.tumblr.com/1s4z8hu/UTBlo4136/jquery.masonry.min.js' type='text/javascript'></script>
  32.  
  33. <script type="text/javascript" src="http://static.tumblr.com/jnmer2r/WKhljk73d/jquery.infinitescroll.min.js"></script>
  34.  
  35. <script>
  36. jQuery(window).load(function(){
  37. var $wall = $('#posts');
  38. $wall.imagesLoaded(function(){
  39. $wall.masonry({
  40. singleMode: true,
  41. columnWidth: 318,
  42. itemSelector: '#entries'
  43. });
  44. });
  45. $wall.infinitescroll({
  46. navSelector : '#page-nav',
  47. nextSelector : '#page-nav a',
  48. itemSelector : '#entries',
  49. },
  50.  
  51. function( newElements ){
  52. $(newElements).hide();
  53. setTimeout(function(){
  54. $wall.masonry({ appendedContent: $(newElements) });
  55. },2000);
  56. setTimeout(function(){
  57. $(newElements).fadeIn('fast');
  58. },2100);
  59. },1000);
  60. });
  61. </script>
  62.  
  63. <script>
  64. $.fn.imagesLoaded = function(callback){
  65. var elems = this.find('img'),
  66. len = elems.length,
  67. _this = this;
  68. if ( !elems.length ) {
  69. callback.call( this );}
  70. elems.bind('load',function(){
  71. if (--len <= 0){
  72. callback.call( _this );}
  73. }).each(function(){
  74. // cached images don't fire load sometimes, so we reset src.
  75. if (this.complete || this.complete === undefined){
  76. var src = this.src;
  77. // webkit hack from http://groups.google.com/group/jquery-dev/browse_thread/thread/eee6ab7b2da50e1f
  78. // data uri bypasses webkit log warning (thx doug jones)
  79. this.src = "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///ywAAAAAAQABAAACAUwAOw==";
  80. this.src = src;}
  81. });
  82. return this;};
  83. </script>
  84.  
  85. {/block:IndexPage}
  86.  
  87. <title>{Title}</title>
  88.  
  89. <style type="text/css">body{ cursor: url(http://i.imgur.com/ZOrzC.png), auto;} a, a:hover{cursor:url(http://i.imgur.com/ZOrzC.png), auto;}</style>
  90.  
  91. <meta name="color:Background" content="#FFFFFF"/>
  92. <meta name="color:Sidebar" content="#FFFFFF"/>
  93. <meta name="color:Posts" content="#FFFFFF"/>
  94. <meta name="color:Text" content="#000000"/>
  95. <meta name="color:Links" content="#000000"/>
  96. <meta name="color:Hover" content="#555555"/>
  97. <meta name="color:Scrollbar" content="#555555"/>
  98. <meta name="color:Permalink" content="#555555"/>
  99.  
  100. <meta name="color:Circle1" content="#F7DEBF"/>
  101. <meta name="color:Circle2" content="#C4FDB3"/>
  102. <meta name="color:Circle3" content="#9FDEEE"/>
  103. <meta name="color:Circle4" content="#C191FF"/>
  104.  
  105. <meta name="color:Circle1 Hover" content="#FFBC6B"/>
  106. <meta name="color:Circle2 Hover" content="#67FF38"/>
  107. <meta name="color:Circle3 Hover" content="#67D3EE"/>
  108. <meta name="color:Circle4 Hover" content="#A158FF"/>
  109.  
  110. <meta name="if:Transparent Sidebar" content="1" />
  111. <meta name="if:Transparent Description" content="1" />
  112. <meta name="if:Circle Links Uppercase" content="1" />
  113. <meta name="if:Circle Rotate" content="1" />
  114.  
  115. <meta name="image:Background" content=""/>
  116. <meta name="image:Sidebar" content=""/>
  117.  
  118. <meta name="text:Body Font" content="Verdana"/>
  119. <meta name="text:Font Size" content="9"/>
  120.  
  121. <meta name="text:Link One Title" content="link 1" />
  122. <meta name="text:Link One" content="" />
  123. <meta name="text:Link Two Title" content="link 2" />
  124. <meta name="text:Link Two" content="" />
  125. <meta name="text:Link Three Title" content="link 3" />
  126. <meta name="text:Link Three" content="" />
  127. <meta name="text:Link Four Title" content="link 4" />
  128. <meta name="text:Link Four" content="" />
  129.  
  130. <style type="text/css">
  131.  
  132. body{
  133. margin:0px;
  134. background-color: {color:Background};
  135. background-image:url({image:Background});
  136. background-attachment:fixed !important;
  137. background-repeat: repeat;
  138. }
  139.  
  140. body, div, p, textarea, submit, input{
  141. font-family: {Text:Body Font};
  142. font-size: {Text:Font Size}px;
  143. color:{color:Text};
  144. }
  145.  
  146. p{
  147. margin:0px;
  148. margin-top:1px;
  149. }
  150.  
  151. a:link, a:active, a:visited{
  152. color: {color:Links};
  153. text-decoration: none;
  154. -webkit-transition: all .6s ease-out;
  155. -moz-transition: all .6s ease-out;
  156. -o-transition: all .6s ease-out;
  157. transition: all .6s ease-out;
  158. }
  159.  
  160. a:hover{
  161. color: {color:Hover};
  162. text-decoration: none;
  163. -webkit-transition: all .6s ease-out;
  164. -moz-transition: all .6s ease-out;
  165. -o-transition: all .6s ease-out;
  166. transition: all .6s ease-out;
  167. }
  168.  
  169. #content{
  170. position: relative;
  171. width: 1200px;
  172. overflow: auto;
  173. overflow-y:hidden;
  174. }
  175.  
  176. #posts{
  177. float: left;
  178. {block:IndexPage}
  179. margin-left: 450px;
  180. {/block:IndexPage}
  181. {block:PermalinkPage}
  182. margin-left: 450px;
  183. {/block:PermalinkPage}
  184. margin-top: 10px;
  185. width: 670px;
  186. height: auto;
  187. padding: 3px;
  188. background-color: transparent;
  189. }
  190.  
  191. #entries{
  192. {block:IndexPage}
  193. float: left;
  194. width: 300px;
  195. margin: 3px;
  196. padding: 5px;
  197. padding-bottom: 3px;
  198. background-color: {color:Posts};
  199. {/block:IndexPage}
  200. {block:PermalinkPage}
  201. float: left;
  202. width: 500px;
  203. background-color: {color:Posts};
  204. {/block:PermalinkPage}
  205. }
  206.  
  207. #sidebar{
  208. position: fixed;
  209. float: left;
  210. width: 200px;
  211. height: 200px;
  212. padding: 3px;
  213. margin-top: 100px;
  214. margin-left: 160px;
  215. border-radius: 100px;
  216. font-family: {text:Body Font};
  217. font-size: {text:Font Size}px;
  218. background-color: {color:Sidebar};
  219. {block:IfTransparentSidebar}
  220. background-color: transparent;
  221. {/block:IfTransparentSidebar}
  222. }
  223.  
  224. #sidebar img{
  225. width: 200px;
  226. height: 200px;
  227. border-radius: 100px;
  228. }
  229.  
  230. #desc{
  231. position: relative;
  232. float: left;
  233. width: 200px;
  234. height: auto;
  235. padding: 2px;
  236. margin-top: 5px;
  237. font-family: {text:Body Font};
  238. background-color: {color:Sidebar};
  239. {block:IfTransparentDescription}
  240. background-color: transparent;
  241. {/block:IfTransparentDescription}
  242. }
  243.  
  244. #links{
  245. position: fixed;
  246. float: left;
  247. width: 60px;
  248. margin-top: 90px;
  249. margin-left: 100px;
  250. }
  251.  
  252. .link1{
  253. float: left;
  254. width: 38px;
  255. height: 25px;
  256. padding: 4px;
  257. padding-top: 15px;
  258. margin-top: 5px;
  259. margin-left: 29px;
  260. -moz-border-radius: 65px;
  261. border-radius: 65px;
  262. text-align: center;
  263. background-color: {color:Circle1};
  264. -webkit-transition: all .6s ease-out;
  265. -moz-transition: all .6s ease-out;
  266. -o-transition: all .6s ease-out;
  267. transition: all .6s ease-out;
  268. }
  269.  
  270. .link2{
  271. float: left;
  272. width: 38px;
  273. height: 25px;
  274. padding: 4px;
  275. padding-top: 15px;
  276. margin-top: 10px;
  277. margin-left: 5px;
  278. -moz-border-radius: 65px;
  279. border-radius: 65px;
  280. text-align: center;
  281. background-color: {color:Circle2};
  282. -webkit-transition: all .6s ease-out;
  283. -moz-transition: all .6s ease-out;
  284. -o-transition: all .6s ease-out;
  285. transition: all .6s ease-out;
  286. }
  287.  
  288. .link3{
  289. float: left;
  290. width: 38px;
  291. height: 25px;
  292. padding: 4px;
  293. padding-top: 15px;
  294. margin-top: 12px;
  295. margin-left: 5px;
  296. -moz-border-radius: 65px;
  297. border-radius: 65px;
  298. text-align: center;
  299. background-color: {color:Circle3};
  300. -webkit-transition: all .6s ease-out;
  301. -moz-transition: all .6s ease-out;
  302. -o-transition: all .6s ease-out;
  303. transition: all .6s ease-out;
  304. }
  305.  
  306. .link4{
  307. float: left;
  308. width: 38px;
  309. height: 25px;
  310. padding: 4px;
  311. padding-top: 15px;
  312. margin-top: 10px;
  313. margin-left: 25px;
  314. -moz-border-radius: 65px;
  315. border-radius: 65px;
  316. text-align: center;
  317. background-color: {color:Circle4};
  318. -webkit-transition: all .6s ease-out;
  319. -moz-transition: all .6s ease-out;
  320. -o-transition: all .6s ease-out;
  321. transition: all .6s ease-out;
  322. }
  323.  
  324. .link1 a, .link2 a, .link3 a, .link4 a{
  325. font-family: tinytots;
  326. font-size: 8px;
  327. {block:IfCircleLinksUppercase}
  328. text-transform: uppercase;
  329. {/block:IfCircleLinksUppercase}
  330. }
  331.  
  332. .link1:hover, .link2:hover, .link3:hover, .link4:hover{
  333. -webkit-transition: all .6s ease-out;
  334. -moz-transition: all .6s ease-out;
  335. -o-transition: all .6s ease-out;
  336. transition: all .6s ease-out;
  337. {block:IfCircleRotate}
  338. transform: rotate(360deg);
  339. -moz-transform: rotate(360deg);
  340. -webkit-transform: rotate(360deg);
  341. -o-transform: rotate(360deg);
  342. {/block:IfCircleRotate}
  343. }
  344.  
  345. {block:IfNotCircleRotate}
  346.  
  347. .link1:hover{
  348. -webkit-transition: all .6s ease-out;
  349. -moz-transition: all .6s ease-out;
  350. -o-transition: all .6s ease-out;
  351. transition: all .6s ease-out;
  352. background-color: {color:Circle1 Hover};
  353. }
  354.  
  355. .link2:hover{
  356. -webkit-transition: all .6s ease-out;
  357. -moz-transition: all .6s ease-out;
  358. -o-transition: all .6s ease-out;
  359. transition: all .6s ease-out;
  360. background-color: {color:Circle2 Hover};
  361. }
  362.  
  363. .link3:hover{
  364. -webkit-transition: all .6s ease-out;
  365. -moz-transition: all .6s ease-out;
  366. -o-transition: all .6s ease-out;
  367. transition: all .6s ease-out;
  368. background-color: {color:Circle3 Hover};
  369. }
  370.  
  371. .link4:hover{
  372. -webkit-transition: all .6s ease-out;
  373. -moz-transition: all .6s ease-out;
  374. -o-transition: all .6s ease-out;
  375. transition: all .6s ease-out;
  376. background-color: {color:Circle4 Hover};
  377. }
  378.  
  379. {/block:IfNotCircleRotate}
  380.  
  381. .perma{
  382. position: absolute;
  383. float: left;
  384. width: auto;
  385. height: auto;
  386. margin-top: 10px;
  387. margin-left: 10px;
  388. opacity: 0;
  389. -webkit-transition: all .6s ease-out;
  390. -moz-transition: all .6s ease-out;
  391. -o-transition: all .6s ease-out;
  392. transition: all .6s ease-out;
  393. }
  394.  
  395. #entries:hover .perma{
  396. opacity: 1;
  397. -webkit-transition: all .6s ease-out;
  398. -moz-transition: all .6s ease-out;
  399. -o-transition: all .6s ease-out;
  400. transition: all .6s ease-out;
  401. }
  402.  
  403. .titles{
  404. text-align: center;
  405. font-family: cambria;
  406. font-style: italic;
  407. font-size: 15px;
  408. margin-top: 4px;
  409. margin-bottom: 0px;
  410. }
  411.  
  412. .texts{
  413. {block:IndexPage}
  414. width: 280px;
  415. {/block:IndexPage}
  416. {block:PermalinkPage}
  417. width: 280px;
  418. {/block:PermalinkPage}
  419. height: auto;
  420. padding: 5px;
  421. margin-top: 0px;
  422. margin-left: 5px;
  423. padding-bottom: 2px;
  424. text-align: justify;
  425. }
  426.  
  427. #all{
  428. width: 300px;
  429. height: auto;
  430. padding: 10px;
  431. }
  432.  
  433. #player{
  434. position: absolute;
  435. display: block;
  436. width: 30px;
  437. height: 20;
  438. padding: 10px;
  439. margin-top: 12px;
  440. margin-left: 13px;
  441. opacity: 0.6;
  442. border-radius: 50px;
  443. overflow: hidden;
  444. background-color: #FFF;
  445. -webkit-transition: all .7s ease-out;
  446. -moz-transition: all .7s ease-out;
  447. -o-transition: all .7s ease-out;
  448. transition: all .7s ease-out;
  449. }
  450.  
  451. #player:hover{
  452. opacity: 1;
  453. -webkit-transition: all .7s ease-out;
  454. -moz-transition: all .7s ease-out;
  455. -o-transition: all .7s ease-out;
  456. transition: all .7s ease-out;
  457. }
  458.  
  459. #playerr{
  460. position: relative;
  461. float: left;
  462. margin-left: 2px;
  463. margin-top: 4px;
  464. width: 20px;
  465. overflow: hidden;
  466. }
  467.  
  468. #albumimage{
  469. width: 70px;
  470. height: auto;
  471. padding: 2px;
  472. padding-bottom: 0px;
  473. margin-left: 0px;
  474. margin-top: 0px;
  475. background-color: #EEE;
  476. border: 1px solid #DDD;
  477. }
  478.  
  479. #albumimage img{
  480. width: 70px;
  481. opacity: 1;
  482. }
  483.  
  484. #caption{
  485. position: absolute;
  486. width: auto;
  487. height: auto;
  488. padding: 5px;
  489. margin-top: -78px;
  490. margin-left: 90px;
  491. background-color: transparent;
  492. }
  493.  
  494. #wholeanswer{
  495. position: relative;
  496. float: left;
  497. width: 290px;
  498. height: auto;
  499. padding: 5px;
  500. margin-top: 2px;
  501. margin-left: 0px;
  502. }
  503.  
  504. #question{
  505. width: 280px;
  506. height: auto;
  507. padding: 5px;
  508. margin-top: 2px;
  509. margin-left: 0px;
  510. text-align: center;
  511. background-color: {color:Question Background Color};
  512. }
  513.  
  514. #answer{
  515. float: left;
  516. width: 280px;
  517. margin-top: 5px;
  518. text-align: justify;
  519. margin-bottom: 5px;
  520. background-color: transparent;
  521. }
  522.  
  523. .textperma{
  524. position: relative;
  525. float: left;
  526. width: 293px;
  527. height: 5px;
  528. padding: 2px;
  529. margin-top: 3px;
  530. border-top: 1px solid {color:Permalink};
  531. background-color: transparent;
  532. }
  533.  
  534. .textperma2{
  535. position: relative;
  536. float: left;
  537. width: 293px;
  538. height: 5px;
  539. padding: 2px;
  540. margin-top: -10px;
  541. margin-left: 260px;
  542. margin-bottom: 5px;
  543. background-color: transparent;
  544. }
  545.  
  546. blockquote{
  547. padding: 0px 0px 0px 5px;
  548. margin: 0px 0px 0px 1px;
  549. border-left: 2px solid {color:Text};
  550. }
  551.  
  552. ul, ol, li{
  553. list-style: none;
  554. margin-left: 1px;
  555. padding: 0px;
  556. }
  557.  
  558. a img{
  559. border: 0px;
  560. }
  561.  
  562. .notes img{
  563. width: 10px;
  564. position: relative;
  565. top: 3px;
  566. }
  567.  
  568. {CustomCSS}
  569.  
  570. @font-face {font-family:tinytots;src: url(http://static.tumblr.com/rmj06l2/Usellxb4i/tinytots.ttf) format("truetype");}
  571.  
  572. iframe#tumblr_controls{
  573. top: 0% !important;
  574. right: 0% !important;
  575. position: fixed !important;
  576. opacity: 0.5;
  577. }
  578.  
  579. ::-webkit-scrollbar-thumb:vertical{
  580. background-color:{color:Scrollbar};
  581. background-image: url({image:Background});
  582. height:auto;
  583. }
  584.  
  585. ::-webkit-scrollbar-thumb:horizontal{
  586. background-color: {color:Background};
  587. background-image: url({image:Background});
  588. height: 10px;
  589. }
  590.  
  591. ::-webkit-scrollbar {
  592. height: 7px;
  593. width: 4px;
  594. background-color: {color:Background};
  595. }
  596.  
  597. .tumblrAutoPager_page_info, .tumblrAutoPager_page_separator {
  598. display: none;
  599. }::-webkit-scrollbar-thumb:vertical{
  600. background-color:{color:Scrollbar};
  601. background-image: url({image:Background});
  602. height:auto;
  603. }
  604.  
  605. ::-webkit-scrollbar-thumb:horizontal{
  606. background-color: {color:Background};
  607. background-image: url({image:Background});
  608. height: 10px;
  609. }
  610.  
  611. ::-webkit-scrollbar {
  612. height: 7px;
  613. width: 4px;
  614. background-color: {color:Background};
  615. }
  616.  
  617. .tumblrAutoPager_page_info, .tumblrAutoPager_page_separator {
  618. display: none;
  619. }
  620.  
  621. </style>
  622.  
  623. <link rel="shortcut icon" href="{Favicon}">
  624. <link rel="alternate" type="application/rss+xml" title="RSS" href="{RSS}" />
  625. <meta name="viewport" content="width=820" />
  626.  
  627. </head>
  628.  
  629. <body>
  630.  
  631. <div id="content">
  632.  
  633. <div id="sidebar">
  634.  
  635. <center><img src="{image:sidebar}"><center>
  636.  
  637. <div id="desc">{Description}</div>
  638.  
  639. </div>
  640.  
  641. <div id="links">
  642. <div class="link1"><a href="{text:Link One}">{text:Link One Title}</a></div>
  643. <div class="link2"><a href="{text:Link Two}">{text:Link Two Title}</a></div>
  644. <div class="link3"><a href="{text:Link Three}">{text:Link Three Title}</a></div>
  645. <div class="link4"><a href="{text:Link Four}">{text:Link Four Title}</a></div>
  646. </div>
  647.  
  648. <div id="posts">
  649. {block:Posts}
  650. <div id="entries">
  651.  
  652. {block:Text}
  653. {block:IndexPage}
  654. <div class="titles">{Title}</div>
  655. <div class="texts">{Body}</div>
  656. <div class="textperma">Posted {TimeAgo} with <a href="{Permalink}">{NoteCountWithLabel}</a></p></div>
  657. <div class="textperma2"><p><a href="{ReblogURL}" target="_blank">Reblog</a></p></div>
  658. {/block:IndexPage}
  659. {block:PermalinkPage}
  660. <div class="titles">{Title}</div>
  661. <div class="texts">{Body}</div>
  662. {/block:PermalinkPage}
  663. {/block:Text}
  664.  
  665. {block:Photo}
  666. {block:IndexPage}
  667. <div class="perma"><a href="{ReblogURL}" target="_blank"><img src="http://static.tumblr.com/ycitmg1/zaxm3d770/relobg.png"></a></div>
  668. {LinkOpenTag}<a href="{Permalink}"><img src="{PhotoURL-500}" alt="{PhotoAlt}"width=300px/></a></center>{LinkCloseTag}
  669. {/block:IndexPage}
  670. {block:PermalinkPage}{LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"width=500px/></center>{LinkCloseTag}
  671. {block:Caption}{Caption}{/block:Caption}
  672. {/block:PermalinkPage}
  673. {/block:Photo}
  674.  
  675. {block:Link}
  676. {block:IndexPage}
  677. <div class="titles"><a href="{URL}" class="title">{Name}</a></div>
  678. <div class="texts"><blockquote>{Description}</blockquote></div>
  679. <div class="textperma">Posted {TimeAgo} with <a href="{Permalink}">{NoteCountWithLabel}</a></p></div>
  680. <div class="textperma2"><p><a href="{ReblogURL}" target="_blank">Reblog</a></p></div>
  681. {/block:IndexPage}
  682. {block:PermalinkPage}<a href="{URL}" class="title">{Name}</a>
  683. {block:Description}{Description}{/block:Description}
  684. {/block:PermalinkPage}
  685. {/block:Link}
  686.  
  687. {block:Quote}
  688. {block:IndexPage}
  689. <div class="titles">{Quote}</div>
  690. <div class="texts"><center><b>{Source}</b><center></div>
  691. <div class="textperma">Posted {TimeAgo} with <a href="{Permalink}">{NoteCountWithLabel}</a></p></div>
  692. <div class="textperma2"><p><a href="{ReblogURL}" target="_blank">Reblog</a></p></div>
  693. {/block:IndexPage}
  694. {block:PermalinkPage}
  695. <div class="titles">{Quote}</div>
  696. <center><b>- {Source}</b><center>
  697. {/block:PermalinkPage}
  698. {/block:Quote}
  699.  
  700. {block:Chat}
  701. {block:IndexPage}
  702. <div class="titles">{Title}</div>
  703. <div class="texts">
  704. <ul class="chat">
  705. {block:Lines}
  706. <li class="user_{UserNumber}">
  707. {block:Label}<i>{Label}</i>{/block:Label}
  708. {Line}</li>
  709. {/block:Lines}
  710. </ul>
  711. </div>
  712. <div class="textperma">Posted {TimeAgo} with <a href="{Permalink}">{NoteCountWithLabel}</a></p></div>
  713. <div class="textperma2"><p><a href="{ReblogURL}" target="_blank">Reblog</a></p></div>
  714. {/block:IndexPage}
  715. {block:PermalinkPage}
  716. <div class="titles">{Title}</div>
  717. <div class="texts">
  718. <ul class="chat">
  719. {block:Lines}
  720. <li class="user_{UserNumber}">
  721. {block:Label}<i>{Label}</i>{/block:Label}
  722. {Line}</li>
  723. {/block:Lines}
  724. </ul>
  725. </div>
  726. {/block:PermalinkPage}
  727. {/block:Chat}
  728.  
  729. {block:Audio}
  730. {block:IndexPage}
  731. <div id="wholemusic">
  732. <div id="player"><div id="playerr">{AudioPlayerWhite}</div></div>
  733. {block:AlbumArt}<div id="albumimage"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}
  734. <div id="caption"><p>
  735. <p>{block:Artist}<b>Artist:</b> {Artist}{/block:Artist}</p>
  736. <p>{block:TrackName}<b>Songs:</b> {TrackName}{/block:TrackName}</p>
  737. <p><b>Plays:</b> {PlayCount}</p>
  738. <p><b>Posted:</b> <a href="{ReblogURL}" target="_blank">{TimeAgo}</a></p>
  739. <p><b>Notes:</b> <a href="{Permalink}">{NoteCount}</a></p>
  740. </div>
  741. </div>
  742. {/block:IndexPage}
  743. {block:PermalinkPage}
  744. <div id="wholemusic">
  745. <div id="player"><div id="playerr">{AudioPlayerWhite}</div></div>
  746. {block:AlbumArt}<div id="albumimage"><img src="{AlbumArtURL}"></div>{/block:AlbumArt}
  747. <div id="caption"><p>
  748. <p>{block:Artist}<b>Artist:</b> {Artist}{/block:Artist}</p>
  749. <p>{block:TrackName}<b>Songs:</b> {TrackName}{/block:TrackName}</p>
  750. <p><b>Plays:</b> {PlayCount}</p>
  751. <p><b>Posted:</b> <a href="{ReblogURL}" target="_blank">{TimeAgo}</a></p>
  752. <p><b>Notes:</b> <a href="{Permalink}">{NoteCount}</a></p>
  753. </div>
  754. </div>
  755. {block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}
  756. {/block:Audio}
  757.  
  758. {block:Video}
  759. {block:IndexPage}
  760. <center>{Video-300}</center>
  761. <div class="textperma">Posted {TimeAgo} with <a href="{Permalink}">{NoteCountWithLabel}</a></p></div>
  762. <div class="textperma2"><p><a href="{ReblogURL}" target="_blank">Reblog</a></p></div>
  763. {/block:IndexPage}
  764. {block:PermalinkPage}<center>{Video-500}</center>{/block:PermalinkPage}
  765. {/block:Video}
  766.  
  767. {block:Answer}
  768. {block:IndexPage}
  769. <div class="wholeanswer">
  770. <div id="question">{Asker}: {Question}</div>
  771. </div>
  772. <div class="answer">{Answer}</div>
  773. <div class="textperma">Posted {TimeAgo} with <a href="{Permalink}">{NoteCountWithLabel}</a></p></div>
  774. <div class="textperma2"><p><a href="{ReblogURL}" target="_blank">Reblog</a></p></div>
  775. {/block:IndexPage}
  776. {block:PermalinkPage}
  777. <div class="wholeanswer">
  778. <div id="question">{Asker}: {Question}</div>
  779. </div>
  780. <div class="answer">{Answer}</div>
  781. {/block:PermalinkPage}
  782. {/block:Answer}
  783.  
  784. {block:Photoset}
  785. {block:IndexPage}
  786. <div class="perma"><a href="{ReblogURL}" target="_blank"><img src="http://static.tumblr.com/ycitmg1/zaxm3d770/relobg.png"></a></div>
  787. {Photoset-250}
  788. {block:Caption}<blockquote><small>{Caption}</small></blockquote>{/block:Caption}
  789. {/block:IndexPage}
  790. {block:PermalinkPage}
  791. {Photoset-500}
  792. {block:Caption}<blockquote>{Caption}</blockquote>{/block:Caption}
  793. {/block:PermalinkPage}
  794. {/block:Photoset}
  795.  
  796. {block:PostNotes}
  797. <p>{NoteCountWithLabel}</p>
  798. {block:HasTags}<p>{block:Tags}<a href="{TagURL}">#{Tag} </a>{/block:Tags}</p>{/block:HasTags}
  799. <div id="postnotes">{PostNotes}</div><br>
  800. {/block:PostNotes}
  801.  
  802. </div>
  803. {/block:Posts}
  804. </div>
  805.  
  806. <div style="position: fixed; float: left; bottom: 2px; margin-left: 1250px; font-family: georgia; font-size: 13px; opacity: 0.5;"><a href="http://first-avenger.tumblr.com">FA</a></div>
  807.  
  808. </div>