Advertisement
wantoup

Theme 17: Euphoria

May 27th, 2013
13,492
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.11 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. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3. <head><title>{Title}</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.  
  8. <!--
  9.  
  10. Theme #17: Euphoria by viwan-th (http://viwan-th.tumblr.com)
  11.  
  12. Album art by mortgraphics (http://mortgrtaphics.livejournal.com)
  13. Scroll to top Script from Dynamic Drive (http://www.dynamicdrive.com/dynamicindex3/scrolltop.htm)
  14.  
  15. Please do not remove theme credit. You can move the credit to another page, as long as it remains on the blog.
  16.  
  17. -->
  18.  
  19. <meta name="color:Background" content="#222222">
  20. <meta name="color:Body Text" content="#888888">
  21. <meta name="color:Body Bold" content="#555555">
  22. <meta name="color:Body Headers" content="#333333">
  23. <meta name="color:Blockquote" content="#cccccc">
  24.  
  25. <meta name="color:Navigation Bar" content="#66cccc">
  26. <meta name="color:Navigation Links" content="#444444">
  27. <meta name="color:Navigation Text" content="#ffffff">
  28.  
  29. <meta name="color:Posts Borders" content="#555555">
  30. <meta name="color:Posts Background" content="#ffffff">
  31.  
  32. <meta name="color:Title" content="#aaaaaa">
  33. <meta name="color:Title Accents" content="#cc6666">
  34.  
  35. <meta name="color:Ask Background" content="#eeeeee">
  36. <meta name="color:Info Borders" content="#dddddd">
  37. <meta name="color:Info Links" content="#aaaaaa">
  38. <meta name="color:Info Links Hover" content="#666666">
  39. <meta name="color:Info Accents" content="#ff6666">
  40.  
  41. <meta name="if:400px Posts" content="1">
  42. <meta name="if:Infinite Scroll" content="0">
  43. <meta name="if:Background Repeat" content="1">
  44. <meta name="if:Photo Fade" content="0">
  45. <meta name="if:Show Captions" content="1">
  46. <meta name="if:Sidebar Blur" content="1">
  47.  
  48. <meta name="image:Sidebar" content="">
  49. <meta name="image:Background" content="">
  50. <meta name="image:Album Art" content="http://static.tumblr.com/mtdphun/YbKmngu2r/1544091_original.jpg">
  51.  
  52. <meta name="text:Font Size" content="11">
  53. <meta name="text:Title" content="title">
  54. <meta name="text:Music Player Code" content="music player code">
  55.  
  56. <meta name="text:Link 1" content="link one">
  57. <meta name="text:Link 1 URL" content="">
  58. <meta name="text:Link 2" content="link two">
  59. <meta name="text:Link 2 URL" content="">
  60. <meta name="text:Link 3" content="link three">
  61. <meta name="text:Link 3 URL" content="">
  62. <meta name="text:Link 4" content="link four">
  63. <meta name="text:Link 4 URL" content="">
  64.  
  65. <style type="text/css">
  66.  
  67. /* BODY */
  68.  
  69. body {
  70. font-family:calibri;
  71. font-size:11px;
  72. text-align:justify;
  73. background-image:url('{image:Background}');
  74. background-attachment:fixed;
  75. background-position:bottom right;
  76. {block:ifNotBackgroundRepeat}background-repeat:no-repeat;{/block:ifNotBackgroundRepeat}
  77. background-color:{color:Background};
  78. color:{color:Body Text};
  79. }
  80.  
  81. a {
  82. text-decoration:none;
  83. color:{color:Navigation Bar};
  84. -webkit-transition:all 1s ease;
  85. -moz-transition:all 1s ease;
  86. -o-transition:all 1s ease;
  87. transition:all 1s ease-in-out;
  88. }
  89.  
  90. b, strong {
  91. color:{color:Body Bold};
  92. }
  93.  
  94. h1, h1 a, h1 a:hover {
  95. margin-top:0px;
  96. color:{color:Body Headers};
  97. font-size:15px;
  98. text-align:center;
  99. font-style:italic;
  100. text-transform:lowercase;
  101. font-family:georgia;
  102. }
  103.  
  104. h1 i {
  105. font-style:normal;
  106. }
  107.  
  108. blockquote {
  109. margin-left:10px;
  110. border-left:3px solid {color:Blockquote};
  111. padding-left:10px;
  112. }
  113.  
  114. /* NAVIGATION BAR */
  115.  
  116. #left {
  117. position:fixed;
  118. top:0px;
  119. left:20px;
  120. height:100%;
  121. width:100px;
  122. }
  123.  
  124. #box {
  125. background:{color:Navigation Bar};
  126. }
  127.  
  128. #links {
  129. height:0px;
  130. }
  131.  
  132. #links a {
  133. display:inline-block;
  134. width:80px;
  135. padding:20px 10px;
  136. background:{color:Navigation Links};
  137. text-align:center;
  138. margin:5px 0;
  139. color:{color:Navigation Text};
  140. }
  141.  
  142. #links a:hover {
  143. background:{color:Navigation Bar};
  144. }
  145.  
  146. /* POSTS BG */
  147.  
  148. #entry {
  149. z-index:0;
  150. position:fixed;
  151. top:0px;
  152. left:140px;
  153. background:{color:Posts Background};
  154. height:100%;
  155. border-right:5px solid {color:Posts Borders};
  156. border-left:5px solid {color:Posts Borders};
  157. width:540px;
  158. }
  159.  
  160. /* TITLE */
  161.  
  162. #title {
  163. position:fixed;
  164. height:100%;
  165. font-family:courier;
  166. font-size:20px;
  167. text-transform:uppercase;
  168. width:12px;
  169. color:{color:Title Accents};
  170. margin-top:-10px;
  171. word-wrap:break-word;
  172. left:700px;
  173. }
  174.  
  175. #title a {
  176. color:{color:Title};
  177. }
  178.  
  179. /* SIDEBAR */
  180.  
  181. #sidebar {
  182. position:fixed;
  183. width:250px;
  184. left:780px;
  185. }
  186.  
  187. #image {
  188. margin-top:200px;
  189. margin-bottom:20px;
  190. width:250px;
  191. box-sizing:border-box;
  192. padding:5px;
  193. display:block;
  194. {block:ifSidebarBlur}-webkit-transition:all 1s ease;
  195. -moz-transition:all 1s ease;
  196. -o-transition:all 1s ease;
  197. transition:all 1s ease-in-out;
  198. }
  199.  
  200. #image:hover {
  201. -webkit-filter:blur(5px);{/block:ifSidebarBlur}
  202. }
  203.  
  204. /* POSTS */
  205.  
  206. #container {
  207. position:absolute;
  208. {block:ifNot400pxPosts}margin:10px 0 0 157px;{/block:ifNot400pxPosts}
  209. {block:if400pxPosts}{block:IndexPage}margin:10px 0 0 207px;{/block:IndexPage}
  210. {block:PermalinkPage}margin:10px 0 0 157px;{/block:PermalinkPage}{/block:if400pxPosts}
  211. }
  212.  
  213. #posts {
  214. margin-bottom:20px;
  215. font-size:{text:Font Size}px;
  216. {block:ifNot400pxPosts}width:500px;{/block:ifNot400pxPosts}
  217. {block:if400pxPosts}{block:IndexPage}width:400px;{/block:IndexPage}
  218. {block:PermalinkPage}width:500px;{/block:PermalinkPage}{/block:if400pxPosts}
  219. }
  220.  
  221. #posts pre {
  222. background:#eee;
  223. padding:10px;
  224. color:#888;
  225. }
  226.  
  227. #posts big, #posts small {
  228. font-size:{text:Font Size}px;
  229. }
  230.  
  231. #posts ul {
  232. list-style-type:square;
  233. }
  234.  
  235. #posts img {
  236. max-width:100%;
  237. }
  238.  
  239. #posts small, #posts big {
  240. font-size:11px;
  241. }
  242.  
  243. /* PHOTO */
  244.  
  245. #photo, iframe.photoset {
  246. display:block;
  247. {block:ifPhotoFade}opacity:0.8;
  248. -webkit-transition:all 1s ease;
  249. -moz-transition:all 1s ease;
  250. -o-transition:all 1s ease;
  251. transition:all 1s ease-in-out;
  252. }
  253.  
  254. #posts:hover #photo {
  255. opacity:1;{/block:ifPhotoFade}
  256. }
  257.  
  258. /* QUOTE */
  259.  
  260. #quote {
  261. font-size:18px;
  262. text-transform:lowercase;
  263. }
  264.  
  265. /* CHAT */
  266.  
  267. #label {
  268. width:80px;
  269. text-align:right;
  270. padding:3px;
  271. padding-right:10px;
  272. border-right:1px solid #ddd;
  273. }
  274.  
  275. #line {
  276. padding-left:10px;
  277. }
  278.  
  279. /* AUDIO */
  280.  
  281. .art {
  282. position:Absolute;
  283. width:90px;
  284. height:90px;
  285. display:block;
  286. border:5px solid #333;
  287. }
  288.  
  289. #player {
  290. height:27px;
  291. background:#000;
  292. overflow:hidden;
  293. }
  294.  
  295. #audio {
  296. width:100%;
  297. }
  298.  
  299. #audio td {
  300. vertical-align:top;
  301. }
  302.  
  303. #audioinfo {
  304. font-size:11px;
  305. margin-bottom:0px;
  306. }
  307.  
  308. #audioinfo span {
  309. display:inline-block;
  310. padding:5px 0;
  311. border-bottom:1px solid {color:Info Borders};
  312. width:100%;
  313. }
  314.  
  315. /* ASK */
  316.  
  317. #ask {
  318. padding:10px;
  319. background:{color:Ask Background};
  320. }
  321.  
  322. #arrow {
  323. position:absolute;
  324. display:inline-block;
  325. font-size:30px;
  326. margin-left:20px;
  327. margin-top:-12px;
  328. color:{color:Ask Background};
  329. }
  330.  
  331. #asker {
  332. display:inline-block;
  333. font-size:10px;
  334. text-transform:uppercase;
  335. margin-top:3px;
  336. margin-left:45px;
  337. }
  338.  
  339. /* INFO AND TAGS */
  340.  
  341. #info {
  342. text-transform:uppercase;
  343. width:100%;
  344. color:{color:Info Accents};
  345. margin-bottom:10px;
  346. padding-bottom:5px;
  347. font-size:11px;
  348. border-bottom:1px dashed {color:Info Borders};
  349. }
  350.  
  351. #tags a, #info a {
  352. color:{color:Info Links};
  353. font-size:10px;
  354. }
  355.  
  356. #tags a:hover, #info a:hover {
  357. color:{color:Info Links Hover};
  358. }
  359.  
  360. #tags {
  361. margin-top:10px;
  362. border-top:1px dashed {color:Info Borders};
  363. text-transform:uppercase;
  364. font-size:10px;
  365. padding-top:5px;
  366. text-align:center;
  367. }
  368.  
  369. /* POSTNOTES */
  370.  
  371. ol.notes {
  372. list-style-type:none;
  373. margin:20px 0 20px -40px;
  374. }
  375.  
  376. ol.notes blockquote {
  377. text-align:justify;
  378. }
  379.  
  380. ol.notes img {
  381. display:none;
  382. }
  383.  
  384. .notes li {
  385. padding:5px 0 6px 0;
  386. border-bottom:1px solid {color:Info Borders};
  387. text-transform:uppercase;
  388. font-size:10px;
  389. text-align:center;
  390. {block:ifNot400pxPosts}width:500px;{/block:ifNot400pxPosts}
  391. {block:if400pxPosts}{block:IndexPage}width:400px;{/block:IndexPage}
  392. {block:PermalinkPage}width:500px;{/block:PermalinkPage}{/block:if400pxPosts}
  393. }
  394.  
  395. /* MUSIC PLAYER */
  396.  
  397. #music {
  398. position:fixed;
  399. overflow:hidden;
  400. width:15px;
  401. bottom:10px;
  402. left:700px;
  403. -webkit-transition:all 1s ease;
  404. -moz-transition:all 1s ease;
  405. -o-transition:all 1s ease;
  406. transition:all 1s ease-in-out;
  407. }
  408.  
  409. #music:hover {
  410. width:175px;
  411. }
  412.  
  413. #icon {
  414. float:left;
  415. }
  416.  
  417. #billy {
  418. position:absolute;
  419. margin-top:-3px;
  420. margin-left:25px;
  421. overflow:hidden;
  422. }
  423.  
  424. /* MISC */
  425.  
  426. iframe#tumblr_controls {
  427. position:fixed !important;
  428. margin-top:5px !important;
  429. margin-right:5px !important;
  430. }
  431.  
  432. ::-webkit-scrollbar-thumb:vertical, ::-webkit-scrollbar-thumb:horizontal {
  433. background-color:{color:Navigation Bar};
  434. }
  435.  
  436. ::-webkit-scrollbar {
  437. height:5px;
  438. width:5px;
  439. background-color:#eee;
  440. }
  441.  
  442. </style>
  443.  
  444. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
  445.  
  446. <script type="text/javascript" src="http://static.tumblr.com/mtdphun/pF8mn7t62/scrolltopcontrol_nb.js"></script>
  447.  
  448. {block:ifInfiniteScroll}
  449. <script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>
  450. {/block:ifInfiniteScroll}
  451.  
  452. </head><body>
  453.  
  454. <!-- LINKS BAR -->
  455.  
  456. <table id="left" cellpadding="0" cellspacing="0">
  457. <tr><td id="box"></td></tr>
  458. <tr id="links"><td style="padding:5px 0;">
  459.  
  460. <!-- NAVIGATION -->
  461.  
  462. <a href="/">home</a>
  463. <a href="/ask">message</a>
  464. <a href="/archive">archive</a>
  465. <!-- PLEASE DO NOT REMOVE THEME CREDIT -->
  466. <a href="http://viwan-th.tumblr.com" target="blank" title="euphoria theme">theme</a>
  467. <!-- PLEASE DO NOT REMOVE THEME CREDIT -->
  468.  
  469. <!-- CUSTOM LINKS -->
  470.  
  471. {block:ifLink1}
  472. <a href="{text:Link 1 URL}">{text:Link 1}</a>
  473. {/block:ifLink1}{block:ifLink2}
  474. <a href="{text:Link 2 URL}">{text:Link 2}</a>
  475. {/block:ifLink2}{block:ifLink3}
  476. <a href="{text:Link 3 URL}">{text:Link 3}</a>
  477. {/block:ifLink3}{block:ifLink4}
  478. <a href="{text:Link 4 URL}">{text:Link 4}</a>
  479. {/block:ifLink4}
  480. {block:Pages}<a href="{URL}">{Label}</a>{/block:Pages}
  481.  
  482. <!-- PAGINATION -->
  483.  
  484. {block:ifNotInfiniteScroll}{block:Pagination}{block:PreviousPage}
  485. <a href="{PreviousPage}">previous</a>
  486. {/block:PreviousPage}{block:NextPage}
  487. <a href="{NextPage}">next</a>
  488. {/block:NextPage}{/block:Pagination}{/block:ifNotInfiniteScroll}
  489.  
  490. {block:ifInfiniteScroll}
  491. <a href="#top">back to top</a>
  492. {/block:ifInfiniteScroll}
  493. </td></tr>
  494. <tr><td id="box"></td></tr>
  495. </table>
  496.  
  497. <!-- END LINKS BAR -->
  498.  
  499. <div id="entry"></div>
  500.  
  501. <!-- TITLE -->
  502.  
  503. <table cellpadding="0" cellspacing="0" height="100%" id="title"><tr><td>
  504. <div style="width:12px;word-wrap:break-word;">
  505. +<a href="/">{text:Title}</a>+</div>
  506. </td></tr></table>
  507.  
  508. <!-- SIDEBAR -->
  509.  
  510. <div id="sidebar">
  511. <div style="background:{color:Posts Borders};"><a href="/">
  512. <img src="{image:Sidebar}" id="image">
  513. </a></div>
  514. <div><center>{Description}</center></div>
  515. </div>
  516.  
  517. <div id="container">
  518.  
  519. <!-- POSTS BLOCK -->
  520.  
  521. {block:ifInfiniteScroll}<div class="autopagerize_page_element">{/block:ifInfiniteScroll}{block:Posts}
  522.  
  523. {block:ContentSource}
  524. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  525. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}">
  526. {/block:SourceLogo}
  527. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  528. {/block:ContentSource}
  529.  
  530. <div id="posts">
  531.  
  532. <!-- INFO -->
  533.  
  534. {block:Date}<div id="info">
  535. <a href="{Permalink}">{TimeAgo}</a> +
  536. <a href="{Permalink}">{NoteCountWithLabel}</a>
  537.  
  538. <div style="float:right;">
  539. {block:RebloggedFrom}
  540. <a href="{ReblogParentURL}" title="{ReblogParentName}">via</a> +
  541. <a href="{ReblogRootURL}" title="{ReblogRootName}">source</a> +
  542. {/block:RebloggedFrom}
  543. <a href="{ReblogURL}">reblog</a>
  544. </div>
  545. </div>{/block:Date}
  546.  
  547. <!-- ENTRIES -->
  548.  
  549. <!-- TEXT -->
  550.  
  551. {block:Text}
  552.  
  553. {block:Title}<a href="{Permalink}"><h1>{Title}</h1></a>{/block:Title}
  554. <div style="margin-top:4px;"><p>{Body}</p></div>
  555.  
  556. {/block:Text}
  557.  
  558. <!-- PHOTO -->
  559.  
  560. {block:Photo}
  561.  
  562. {block:IndexPage}
  563. <a href="{Permalink}"><img src="{PhotoURL-highres}" id="photo"></a>
  564. {/block:IndexPage}
  565.  
  566. {block:PermalinkPage}{LinkOpenTag}
  567. <center><img src="{PhotoURL-500}" id="photo"></center>
  568. {LinkCloseTag}{/block:PermalinkPage}
  569.  
  570. {block:ifShowCaptions}
  571. {block:Caption}
  572. {Caption}
  573. {/block:Caption}
  574. {/block:ifShowCaptions}
  575.  
  576. {/block:Photo}
  577.  
  578. <!-- PANORAMA -->
  579.  
  580. {block:Panorama}
  581.  
  582. {LinkOpenTag}<img src="{PhotoURL-Panorama}" id="photo">{LinkCloseTag}
  583.  
  584. {block:ifShowCaptions}
  585. {block:Caption}
  586. {Caption}
  587. {/block:Caption}
  588. {/block:ifShowCaptions}
  589.  
  590. {/block:Panorama}
  591.  
  592. <!-- PHOTOSET -->
  593.  
  594. {block:Photoset}
  595.  
  596. <div id="photo">
  597. {block:ifNot400pxPosts}{Photoset-500}{/block:ifNot400pxPosts}
  598. {block:if400pxPosts}{block:IndexPage}{Photoset-400}{/block:IndexPage}
  599. {block:PermalinkPage}{Photoset-500}{/block:PermalinkPage}{/block:if400pxPosts}
  600. </div>
  601.  
  602. {block:ifShowCaptions}
  603. {block:Caption}
  604. {Caption}
  605. {/block:Caption}
  606. {/block:ifShowCaptions}
  607.  
  608. {/block:Photoset}
  609.  
  610. <!-- QUOTE -->
  611.  
  612. {block:Quote}
  613.  
  614. <center><span id="quote">❝ {Quote} ❞</span></center></p>
  615. <p align="right">— {Source}
  616.  
  617. {/block:Quote}
  618.  
  619. <!-- LINK -->
  620.  
  621. {block:Link}
  622.  
  623. <a href="{URL}" target="{Target}"><h1>{Name} <i>&raquo;</i></h1></a>
  624.  
  625. {block:Description}
  626. {Description}
  627. {/block:Description}
  628.  
  629. {/block:Link}
  630.  
  631. <!-- CHAT -->
  632.  
  633. {block:Chat}
  634.  
  635. {block:Title}<a href="{Permalink}"><h1>
  636. <span>{text:Header} </span>{Title}</h1></a>{/block:Title}
  637.  
  638. <table cellpadding="0" cellspacing="0" width="100%">
  639. {block:Lines}
  640. <tr>
  641. {block:Label}<td id="label"><b>{Label}</b></td>{/block:Label}
  642. <td id="line">{Line}</td>
  643. </tr>
  644. {/block:Lines}</table>
  645.  
  646. {/block:Chat}
  647.  
  648. <!-- AUDIO -->
  649.  
  650. {block:Audio}
  651.  
  652. <table border="0" cellpadding="0" cellspacing="0" id="audio"><tr>
  653.  
  654. <td width="110px">
  655. {block:IndexPage}<a href="{Permalink}">{/block:IndexPage}
  656. <img src="{image:Album Art}" class="art">
  657. {block:IndexPage}</a>{/block:IndexPage}
  658.  
  659. {block:IndexPage}<a href="{Permalink}">{/block:IndexPage}
  660. {block:AlbumArt}<img src="{AlbumArtURL}" class="art">{/block:AlbumArt}
  661. {block:IndexPage}</a>{/block:IndexPage}
  662. </td>
  663.  
  664. <td>
  665. <div id="player" style="margin-bottom:1px;">
  666. {AudioPlayerBlack}
  667. </div>
  668. <div id="audioinfo">
  669. <span><b>TRACK:</b> {block:TrackName}{TrackName}{/block:TrackName}</span></br>
  670. <span><b>ARTIST:</b> {block:Artist}{Artist}{/block:Artist}</span></br>
  671. <span><b>ALBUM:</b> {block:Album}{Album}{/block:Album}</span></br>
  672. </div>
  673. </td>
  674.  
  675. </tr></table>
  676.  
  677. {block:ifShowCaptions}
  678. {block:Caption}
  679. {Caption}
  680. {/block:Caption}
  681. {/block:ifShowCaptions}
  682.  
  683. {/block:Audio}
  684.  
  685. <!-- VIDEO -->
  686.  
  687. {block:Video}
  688.  
  689. {block:ifNot400pxPosts}{Video-500}{/block:ifNot400pxPosts}
  690. {block:if400pxPosts}{block:IndexPage}{Video-400}{/block:IndexPage}
  691. {block:PermalinkPage}{Video-500}{/block:PermalinkPage}{/block:if400pxPosts}
  692.  
  693. {block:ifShowCaptions}
  694. {block:Caption}
  695. {Caption}
  696. {/block:Caption}
  697. {/block:ifShowCaptions}
  698.  
  699. {/block:Video}
  700.  
  701. <!-- ANSWER -->
  702.  
  703. {block:Answer}
  704.  
  705. <div id="ask">{Question}</div>
  706. <span id="arrow">◥</span>
  707. <span id="asker">{Asker}</span></p>
  708.  
  709. {Answer}
  710.  
  711. {/block:Answer}
  712.  
  713. <!-- END ENTRIES -->
  714.  
  715. {block:PermalinkPage}
  716.  
  717. {block:ifNotShowCaptions}
  718. {block:Caption}
  719. {Caption}
  720. {/block:Caption}
  721. {/block:ifNotShowCaptions}
  722.  
  723. {block:PermalinkPage}
  724.  
  725. <!-- TAGS -->
  726.  
  727. {block:Date}<div id="tags">{block:HasTags}tagged &raquo;
  728. {block:Tags}<a href="{TagURL}">{Tag}</a> &middot; {/block:Tags}
  729. {/block:HasTags}</div>{/block:Date}
  730.  
  731. <!-- POSTNOTES -->
  732.  
  733. {block:PostNotes}{PostNotes}{/block:PostNotes}
  734.  
  735. </div><!-- posts -->
  736.  
  737. {/block:Posts}{block:ifInfiniteScroll}</div>{/block:ifInfiniteScroll}
  738.  
  739. <!-- END POSTS BLOCK -->
  740.  
  741. </div><!-- container -->
  742.  
  743. <!-- MUSIC PLAYER -->
  744.  
  745. {block:ifMusicPlayerCode}{block:IndexPage}<div id="music">
  746. <img id="icon" src="http://media.tumblr.com/tumblr_m7w2p9qThT1r6o8v2.gif">
  747. <div id="billy">{text:Music Player Code}</div>
  748. </div>{/block:IndexPage}{/block:ifMusicPlayerCode}
  749.  
  750. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement