indiesrock

theme 22: missing

Apr 9th, 2014
1,745
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.91 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <head>
  3. <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. <!--theme by indiesrock-->
  9.  
  10. <meta name="color:background" content="#ffffff"/>
  11. <meta name="color:text" content="#000000"/>
  12. <meta name="color:link" content="#000000"/>
  13. <meta name="color:hover" content="#cccccc"/>
  14. <meta name="color:border" content="#cccccc"/>
  15. <meta name="color:side link hover" content="#ffffff"/>
  16. <meta name="color:side link hover bg" content="#000000"/>
  17.  
  18. <meta name="image:sidebar" content=""/>
  19.  
  20. <meta name="text:link1" content="/"/>
  21. <meta name="text:link1 text" content=""/>
  22. <meta name="text:link2" content="/"/>
  23. <meta name="text:link2 text" content=""/>
  24. <meta name="text:popup ask title" content=""/>
  25. <meta name="text:url" content=""/>
  26.  
  27. <!---jquery for navigation and popup ask--->
  28.  
  29. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
  30.  
  31. <script type="text/javascript" src="http://static.tumblr.com/iuggpng/bGqm4yfv9/jquery-1.7.2.js"></script>
  32. <script type="text/javascript"
  33. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  34. <script>
  35. $(document).ready(function() {
  36. //
  37. $('a.poplight[href^=#]').click(function() {
  38. var popID = $(this).attr('rel'); //Get Popup Name
  39. var popURL = $(this).attr('href'); //Get Popup href to define size
  40. var query= popURL.split('?');
  41. var dim= query[1].split('&');
  42. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  43. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('');
  44. var popMargTop = ($('#' + popID).height() + 80) / 2;
  45. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  46. //Apply Margin to Popup
  47. $('#' + popID).css({
  48. 'margin-top' : -popMargTop,
  49. 'margin-left' : -popMargLeft
  50. });
  51. $('body').append('<div id="fade"></div>');
  52. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  53. return false;
  54. });
  55. $('a.close, #fade').live('click', function() {
  56. $('#fade , .popup_block').fadeOut(function() {
  57. $('#fade, a.close').remove(); //fade them both out
  58. });
  59. return false;
  60. });
  61. });
  62. </script>
  63.  
  64.  
  65. <style type="text/css">
  66. body {
  67. font-family:arial;
  68. font-size:10px;
  69. line-height:100%;
  70. background:{color:background};
  71. text:{color:text};
  72. }
  73.  
  74. a {
  75. color:{color:link};
  76. text-decoration:none;
  77. -moz-transition-duration:0.5s;
  78. -webkit-transition-duration:0.5s;
  79. -o-transition-duration:0.5s;
  80. }
  81.  
  82. a:hover {
  83. color:{color:hover};
  84. -moz-transition-duration:0.5s;
  85. -webkit-transition-duration:0.5s;
  86. -o-transition-duration:0.5s;
  87. }
  88.  
  89. img {
  90. border:none;
  91. }
  92.  
  93. blockquote {
  94. padding:2px;
  95. padding-left:10px;
  96. border-left:1px solid {color:border};
  97. }
  98.  
  99. h1 {
  100. font-size:13px;
  101. text-transform:uppercase;
  102. letter-spacing:2px;
  103. font-weight:normal;
  104. line-height:15px;
  105. }
  106.  
  107. h2 {
  108. font-size:11px;
  109. text-transform:uppercase;
  110. letter-spacing:2px;
  111. font-weight:normal;
  112. line-height:13px;
  113. text-align:center;
  114. border:1px solid {color:border};
  115. padding:5px;
  116. }
  117.  
  118.  
  119. #container {
  120. width:700px;
  121. padding:20px;
  122. }
  123.  
  124. #p {
  125. width:500px;
  126. padding:25px;
  127. margin:40px 0 0 380px;
  128. }
  129.  
  130. #side {
  131. width:185px;
  132. margin:230px 0 0 116px;
  133. padding:5px;
  134. position:fixed;
  135. }
  136.  
  137. #t {
  138. padding:5px;
  139. font-size:13px;
  140. text-transform:uppercase;
  141. letter-spacing:2px;
  142. margin:-3px 0 -3px 0;
  143. }
  144.  
  145. #sideimg {
  146. padding:5px;
  147. width:200px;
  148. }
  149.  
  150. #sideimg img {
  151. width:175px;
  152. }
  153.  
  154.  
  155. #desc {
  156. text-align:justify;
  157. padding:5px;
  158. width:175px;
  159. margin:0px 0 0 0;
  160. }
  161.  
  162. .link {
  163. padding:0px;
  164. text-align:right;
  165. width:175px;
  166. font-size:8px;
  167. margin:0px 0 -3px 0px;
  168. }
  169.  
  170. .link a {
  171. color:black;
  172. display:inline-block;
  173. padding:3px;
  174. }
  175.  
  176. .link a:hover {
  177. background:{color:side link hover bg};
  178. color:{color:side link hover};
  179. }
  180.  
  181. #pagi {
  182. width:500px;
  183. padding:25px;
  184. margin:20px 0 0 380px;
  185. text-align:Center;
  186. font-size:9px;
  187. text-transform:uppercase;
  188. }
  189.  
  190.  
  191. #info {
  192. padding:5px;
  193. text-align:center;
  194. text-transform:uppercase;
  195. font-size:8px;
  196. }
  197.  
  198. #info a {
  199. padding:3px;
  200. }
  201.  
  202. #tag {
  203. font-weight:bold;
  204. }
  205.  
  206. #ask {
  207. text-align:left;
  208. font-size:11px;
  209. text-transform:uppercase;
  210. letter-spacing:2px;
  211. }
  212.  
  213. #quest {
  214. text-align:left;
  215. font-size:8px;
  216. letter-spacing:1px;
  217. }
  218.  
  219. #ans {
  220. text-align:right;
  221. font-size:9px;
  222. }
  223.  
  224. .qsource {
  225. text-align:center;
  226. font-size:8px;
  227. text-transform:uppercase;
  228. }
  229.  
  230. #audio {
  231. height:50px;
  232. border:1px solid {color:border};
  233. }
  234.  
  235. .play {
  236. position:absolute;
  237. margin:12px 0 0 10px;
  238. width:28px;
  239. height:30px;
  240. overflow:hidden;
  241. }
  242.  
  243. #tings {
  244. position:absolute;
  245. font-size:8px;
  246. text-transform:uppercase;
  247. letter-spacing:1px;
  248. margin:15px 0 0 50px;
  249. }
  250.  
  251. #fade { /*--Transparent background layer--*/
  252. display: none; /*--hidden by default--*/
  253. background: #000;
  254. position: fixed; left: 0; top: 0;
  255. width: 100%; height: 100%;
  256. opacity: .80;
  257. z-index: 9999;
  258. }
  259. .popup_block{
  260. display: none; /*--hidden by default--*/
  261. background: transparent;
  262. padding: 20px;
  263. float: left;
  264. position: fixed;
  265. top: 50%; left: 52%;
  266. z-index: 99999;
  267. }
  268.  
  269. #askt {
  270. text-align:center;
  271. font-size:13px;
  272. text-transform:uppercase;
  273. letter-spacing:3px;
  274. margin:0 0 10px 0 ;
  275. color:#fff;
  276. }
  277.  
  278. ol.notes {
  279. width:500px;
  280. list-style-type:none;
  281. padding:25px;
  282. margin:5px 0 0 380px;
  283. font-size:8px;
  284. text-transform:uppercase;
  285. }
  286.  
  287. ol.notes li {
  288. padding:5px;
  289. }
  290.  
  291. ol.notes img.avatar {
  292. width:0px;
  293. height:0px;
  294. }
  295.  
  296. #c {
  297. font-size:12px;
  298. right:0;
  299. bottom:0;
  300. padding:5px;
  301. position:fixed;
  302. }
  303.  
  304. </style></head>
  305. <body>
  306.  
  307. <div id="side">
  308.  
  309.  
  310. <div id="sideimg"><a href="/"><img src="{image:sidebar}"></a></div>
  311.  
  312. <script type="text/javascript">
  313. jQuery(document).ready(function() {
  314. jQuery(".sub").hide();
  315. //toggle the componenet with class msg_body
  316. jQuery(".cthrough").click(function()
  317. {
  318. jQuery(this).next(".sub").slideToggle(500);
  319. });});
  320. </script>
  321. <a class="cthrough" style="cursor:help;"><div id="t">{title}</div></a>
  322. <div class="sub">
  323. <div class="link">
  324. <a href="/">home</a>
  325. <a href="{text:link1}">{text:link1 text}</a>
  326. <a href="{text:link2}">{text:link2 text}</a>
  327. <a href="#?w=500" rel="02" class="poplight">queries</a>
  328. </div>
  329. </div>
  330. <div id="desc">{description}</div>
  331. </div>
  332.  
  333. <div id="02" class="popup_block">
  334. <div id="askt">{text:popup ask title}</div>
  335. <iframe frameborder="0" height="190" id="ask_form" scrolling="no" src="http://www.tumblr.com/ask_form/{text:url}.tumblr.com" width="100%"></iframe>
  336. </div>
  337.  
  338. <div id="container">
  339. {block:posts}
  340. <div id="p">
  341.  
  342.  
  343.  
  344. {block:Text}
  345. <h1>{block:Title}{Title}{/block:Title}</h1>
  346. {Body}
  347. {/block:Text}
  348.  
  349. {block:Photo}
  350. {LinkOpenTag}<img src="{PhotoURL-500}">{LinkCloseTag}
  351. {block:Caption}{Caption}{/block:Caption}
  352. {/block:Photo}
  353.  
  354. {block:Photoset}
  355. {Photoset-500}
  356. {block:Caption}{Caption}{/block:Caption}
  357. {/block:Photoset}
  358.  
  359. {block:Video}
  360. {Video-500}
  361. {block:Caption}{Caption}{/block:Caption}
  362. {/block:Video}
  363.  
  364. {block:Quote}
  365. <h2>"{quote}"</h2>
  366. {block:Source}
  367. <div class="qsource">{Source}</div>
  368. {/block:Source}
  369. {/block:Quote}
  370.  
  371. {block:Link}
  372. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  373. {block:Description}<blockquote>{Description}</blockquote>{/block:Description}
  374. {/block:Link}
  375.  
  376. {block:Chat}{block:Title}{Title}{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  377.  
  378. {block:Audio}
  379. <div id="audio">
  380. <div id="audiobg">
  381. <div class="play">{AudioPlayerwhite}</div></div><div id="tings">
  382. {block:TrackName}{TrackName}{/block:TrackName}<br>
  383. {block:Artist}{Artist}{/block:Artist}</div></div><br>
  384. {block:Caption}<blockquote>{Caption}</blockquote>{/block:Caption}{/block:Audio}
  385.  
  386.  
  387. {block:Answer}
  388. <div id="ask">{asker}</div>
  389. <div id="quest">{question}</div>
  390. <div id="ans">{answer}</div>
  391. {/block:Answer}
  392.  
  393. <div id="info">
  394. <a href="{permalink}">{ShortMonth} {DayOfMonth}{dayofmonthsuffix}</a>{block:RebloggedFrom}<a href="{ReblogParentURL}">via</a>{/block:RebloggedFrom}{block:ContentSource}<a href="{SourceURL}">c</a>{/block:ContentSource}<a href="{Permalink}">+{NoteCount}</a>
  395. {block:HasTags}
  396. <div id="tag">{block:Tags}<a href="/tagged/{Tag}">{Tag}</a>{/block:Tags}</div>
  397. {block:HasTags}</div>
  398.  
  399.  
  400. </div>
  401. {/block:Posts}
  402.  
  403. {block:PostNotes}{PostNotes}{/block:PostNotes}
  404. {/block:Posts}
  405.  
  406. {block:Pagination}
  407. <div id="pagi">{block:PreviousPage}<a href="{PreviousPage}">previous page</a> {/block:PreviousPage} {block:NextPage} <a href="{NextPage}">next page</a>{/block:NextPage}
  408. </div>{/block:Pagination}
  409.  
  410. </div></div>
  411.  
  412. <div id="c"><a href="http://indiesrock.tumblr.com">◐</a>
  413. </div>
  414. </body>
  415. </html>
Advertisement
Add Comment
Please, Sign In to add comment