Advertisement
armyofghosts

Theme 1: Revamp by armyofghosts

Dec 29th, 2013
765
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.73 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.  
  4. <head><title>{Title}</title>
  5. <link rel="shortcut icon" href="{Favicon}">
  6. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  7. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  8.  
  9.  
  10.  
  11. <!--- THEME #1 BY ARMYOFGHOSTS :) --->
  12.  
  13.  
  14.  
  15. <script type="text/javascript"
  16. src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js"></script>
  17. <script>
  18. $(document).ready(function() {
  19. //
  20. $('a.poplight[href^=#]').click(function() {
  21. var popID = $(this).attr('rel'); //Get Popup Name
  22. var popURL = $(this).attr('href'); //Get Popup href to define size
  23. var query= popURL.split('?');
  24. var dim= query[1].split('&');
  25. var popWidth = dim[0].split('=')[1]; //Gets the first query string value
  26. $('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend('<a href="#" class="close"></a>');
  27. var popMargTop = ($('#' + popID).height() + 80) / 2;
  28. var popMargLeft = ($('#' + popID).width() + 80) / 2;
  29. //Apply Margin to Popup
  30. $('#' + popID).css({
  31. 'margin-top' : -popMargTop,
  32. 'margin-left' : -popMargLeft
  33. });
  34. $('body').append('<div id="fade"></div>');
  35. $('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer - .css({'filter' : 'alpha(opacity=80)'})
  36. return false;
  37. });
  38. $('a.close, #fade').live('click', function() {
  39. $('#fade , .popup_block').fadeOut(function() {
  40. $('#fade, a.close').remove(); //fade them both out
  41. });
  42. return false;
  43. });
  44. });
  45. </script>
  46.  
  47. <!-- jquery -->
  48.  
  49. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  50.  
  51. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  52.  
  53. <script>
  54.  
  55. (function($){
  56.  
  57. $(document).ready(function(){
  58.  
  59. $("a[title]").style_my_tooltips({
  60.  
  61. tip_follows_cursor:true,
  62.  
  63. tip_delay_time:30,
  64.  
  65. tip_fade_speed:300,
  66.  
  67. attribute:"title"
  68.  
  69. });
  70.  
  71. });
  72.  
  73. })(jQuery);
  74.  
  75. </script>
  76.  
  77. <meta name="color:Background" content="#ffffff"/>
  78. <meta name="color:Links" content="#cccccc"/>
  79. <meta name="color:Hover" content="#f2f2f2"/>
  80. <meta name="color:SidebarLinks" content="#000000"/>
  81. <meta name="color:Text" content="#a8a8a8"/>
  82. <meta name="color:Title" content="#a8a8a8">
  83. <meta name="color:Border" content="#f7f7f7"/>
  84. <meta name="color:Scrollbar" content="#000000"/>
  85. <meta name="color:ScrollbarBg" content="#ffffff"/>
  86.  
  87. <meta name="image:Sidebar" content=""/>
  88.  
  89. <meta name="if:Show Updates" content="1" />
  90. <meta name="if:Pop Up Ask" content="1" />
  91. <meta name="if:Show Link 1" content="1" />
  92. <meta name="if:Show Link 2" content="1" />
  93. <meta name="if:Show Link 3" content="1" />
  94.  
  95. <meta name="text:Ask" content="" />
  96. <meta name="text:URL" content="" />
  97. <meta name="text:Link 1" content="" />
  98. <meta name="text:Link 1 Text" content="" />
  99. <meta name="text:Link 2" content="" />
  100. <meta name="text:Link 2 Text" content="" />
  101. <meta name="text:Link 3" content="" />
  102. <meta name="text:Link 3 Text" content="" />
  103.  
  104.  
  105. <style type="text/css">
  106.  
  107. /*---TOOLTIP---*/
  108.  
  109. #s-m-t-tooltip {
  110. max-width:300px;
  111. padding:2px;
  112. margin:10px 0px 0px 10px;
  113. padding:3px 5px;
  114. background-color:#000;
  115. text-transform:none;
  116. font-size:9px;
  117. font-family:helvetica;
  118. letter-spacing:1px;
  119. color:#fff;
  120. z-index:999;
  121. }
  122.  
  123. /*---SCROLLBAR---*/
  124.  
  125. ::-webkit-scrollbar-thumb {
  126. height:auto;
  127. background-color:{color:Scrollbar};
  128. }
  129.  
  130. ::-webkit-scrollbar {
  131. height:9px;
  132. width:4px;
  133. background-color:{color:ScrollbarBg};
  134. }
  135.  
  136. /*---BODY---*/
  137.  
  138. body {
  139. background:{color:background};
  140. color:{color:text};
  141. font-family:helvetica;
  142. font-weight:lighter;
  143. font-size:10px;
  144. line-height:120%;
  145. text-align:justify;
  146. }
  147.  
  148. a {
  149. text-decoration:none;
  150. color:{color:Links};
  151. -moz-transition-duration:0.3s;
  152. -webkit-transition-duration:0.3s;
  153. -o-transition-duration:0.3s;
  154. }
  155.  
  156. a:hover {
  157. color:{color:Hover};
  158. -moz-transition-duration:0.3s;
  159. -webkit-transition-duration:0.3s;
  160. -o-transition-duration:0.3s;
  161. }
  162.  
  163. blockquote {
  164. padding-left:5px;
  165. border-left:2px solid;
  166. }
  167.  
  168. blockquote blockquote {
  169. padding-left:5px;
  170. border-left:2px solid;
  171. }
  172.  
  173. h1 {
  174. font-size:14px;
  175. line-height:10px;
  176. text-align:left;
  177. }
  178.  
  179. /*---ENTRIES---*/
  180.  
  181. #entry {
  182. padding:10px;
  183. width:500px;
  184. margin-left:500px;
  185. margin-top:5px;
  186. font-size:10px;
  187. }
  188.  
  189. #post {
  190. width:500px;
  191. padding-bottom:40px;
  192. padding:25px;
  193. margin-top:50px;
  194. }
  195.  
  196. /*---SIDEBAR---*/
  197.  
  198. #sidebar {
  199. position:fixed;
  200. margin-top:250px;
  201. margin-left:318px;
  202. }
  203.  
  204. /*---SIDEBAR IMAGE---*/
  205.  
  206. #sidebarimage {
  207. width: 130px;
  208. }
  209.  
  210. #sidebarimage img {
  211. width:120px;
  212. padding:3px;
  213. margin-left:-58px;
  214. }
  215.  
  216. /*---LINKS---*/
  217.  
  218. #links {
  219. width:130px;
  220. letter-spacing: 1px;
  221. font-family:calibri;
  222. padding: 4px;
  223. text-align:center;
  224. text-transform:uppercase;
  225. position:fixed;
  226. margin-top:5px;
  227. margin-left:-65px;
  228. background:#f7f7f7;
  229. border:1px solid #f4f4f4;
  230. transition-duration: 0.6s;
  231. -moz-transition-duration: 0.6s;
  232. -webkit-transition-duration: 0.6s;
  233. -o-transition-duration: 0.6s;
  234. }
  235.  
  236. /*---DESCRIPTION and PAGINATION---*/
  237.  
  238. #description {
  239. text-align:center;
  240. letter-spacing:1px;
  241. width:130px;
  242. font-size:8px;
  243. margin-top:30px;
  244. padding:5px;
  245. margin-left:-65px;
  246. position:fixed;
  247. color:{color:Text};
  248. transition-duration: 0.6s;
  249. opacity:0;
  250. -moz-transition-duration: 0.6s;
  251. -webkit-transition-duration: 0.6s;
  252. -o-transition-duration: 0.6s;
  253. }
  254.  
  255. #sidebar:hover #description {
  256. opacity:1;
  257. transition-duration: 0.6s;
  258. -moz-transition-duration: 0.6s;
  259. -webkit-transition-duration: 0.6s;
  260. -o-transition-duration: 0.6s;
  261. }
  262.  
  263. #pagination {
  264. width:500px;
  265. bottom:0px;
  266. margin-left:535px;
  267. padding-top:10px;
  268. height:20px;
  269. text-align:center;
  270. background-color:#fff;
  271. text-transform:uppercase;
  272. font-weight:normal;
  273. font-size:9px;
  274. letter-spacing:1px;
  275. position:fixed;
  276. opacity: 0.7s;
  277. }
  278.  
  279. /*---ASKS/INFO---*/
  280. #questions {
  281. background-color:#ffffff;
  282. color:{color:Text};
  283. padding:5px;
  284. margin-top:5px;
  285. margin-bottom:5px;
  286. font-style:normal;
  287. text-align:left;
  288. }
  289.  
  290. #answers {
  291. background-color:#ffffff;
  292. color:{color:Text};
  293. padding:2px;
  294. margin-bottom:-10px;
  295. font-style:normal;
  296. text-align:left;
  297. }
  298.  
  299. #questions img {
  300. margin-right:5px;
  301. border-radius:90px;
  302. padding:3px;
  303. float:left;
  304. text-align:justify;
  305. margin-top:-15px;
  306. }
  307.  
  308. #statement {
  309. padding:5px;
  310. margin-top:-8px;
  311. text-align:left;
  312. color:{color:Text};
  313. text-transform:none;
  314. }
  315.  
  316. .note {
  317. padding:0px 20px 0px 20px;
  318. font-size: 11px;
  319. text-align:left;
  320. line-height:120%;
  321. }
  322.  
  323. .note li {
  324. list-style-type:none;
  325. padding:5px 25px 5px 25px;
  326. text-align:left;
  327. margin-right:30px;
  328. margin-top:-50px;
  329. }
  330.  
  331. #info {
  332. font-family:helvetica;
  333. text-align:left;
  334. margin-top:10px;
  335. padding-top:10px;
  336. padding:5px;
  337. padding-bottom:5px;
  338. font-size:9px;
  339. line-height:100%;
  340. background:{color:border};
  341. }
  342.  
  343. #RebloggedFrom {
  344. font-family:helvetica;
  345. text-align:center;
  346. margin-top:-5px;
  347. font-size:10px;
  348. }
  349.  
  350. /*---TAGS---*/
  351.  
  352. #tags {
  353. font-family:helvetica;
  354. text-align:left;
  355. margin-top:5px;
  356. padding-bottom:5px;
  357. font-size:10px;
  358. opacity:0;
  359. -moz-transition-duration:1s;
  360. -webkit-transition-duration:1s;
  361. -o-transition-duration:1s;
  362. }
  363.  
  364. #post:hover #tags {
  365. margin-top:5px;
  366. opacity:1;
  367. -moz-transition-duration:1s;
  368. -webkit-transition-duration:1s;
  369. -o-transition-duration:1s;
  370. }
  371.  
  372. #notes {
  373. padding-bottom:2px;
  374. text-align:left;
  375. font-size:8px;
  376. width:460px;
  377. }
  378.  
  379. #notes li.note{
  380. border-bottom:1px solid {color:border};
  381. padding:2%;
  382. }
  383.  
  384. #notes li.note img.avatar{
  385. width:0px;
  386. height:0px;
  387. }
  388.  
  389. /*---CREDIT---*/
  390.  
  391. #cred {
  392. position:fixed;
  393. bottom:10px;
  394. right:10px;
  395. font-size:12px;
  396. font-family:arial;
  397. font-weight:bold;
  398. letter-spacing:-2px;
  399. padding:5px;
  400. }
  401.  
  402. #cred a {
  403. color:#000;
  404. }
  405.  
  406. /* --- POP UP ASK ---*/
  407.  
  408. #fade { /*--Transparent background layer--*/
  409. display: none; /*--hidden by default--*/
  410. background: #000;
  411. position: fixed; left: 0; top: 0;
  412. width: 100%; height: 100%;
  413. opacity: .80;
  414. z-index: 9999;
  415. }
  416. .popup_block{
  417. display: none; /*--hidden by default--*/
  418. padding: 10px;
  419. float: left;
  420. font-size: 10;
  421. position: fixed;
  422. top: 50%; left: 52.3%;
  423. z-index: 99999;
  424. }
  425. .heading{
  426. font-size:15px;
  427. margin-bottom:10px;
  428. color:#fff;
  429. letter-spacing:2px;
  430. }
  431. /*--Making IE6 Understand Fixed Positioning--*/
  432. *html #fade {
  433. position: absolute;
  434. }
  435. *html .popup_block {
  436. position: absolute;
  437. }
  438.  
  439. /* --- UPDATES ---*/
  440.  
  441. #updatesbox {/*the styling of the whole updates box; tutorial by http://capably.tumblr.com*/
  442. line-height:100%;/*don't change this!*/
  443. display:block;/*don't change this either lol*/
  444. border:1px solid {color:border};/*the border of the whole box; 1px is the width, #eee is the hex color (go to colorpicker.com and pick one)*/
  445. height:10px;/*the height of the box before hover*/
  446. width:30px;/*the width of the box before hover*/
  447. padding:0px 5px 5px 5px;/*don't change this!*/
  448. z-index:3;/*don't change this!*/
  449. top:20px;/*distance from top of page*/
  450. left:35px;/*distance from left of page*/
  451. color:#fff;/*color of text*/
  452. position:fixed;/*don't change this!*/
  453. background:{color:Hover};/*background color of updates box*/
  454. overflow:hidden;/*don't change this!*/
  455. text-align:center;/*text alignment of everything in updates box*/
  456. -moz-transition-duration:0.6s;
  457. -webkit-transition-duration:0.6s;
  458. -o-transition-duration:0.6s;
  459. }
  460.  
  461. #updatesbox:hover {/*the updates box after hover*/
  462. height:195px;/*the height of the box after hover*/
  463. width:90px;/*the width of the box after hover*/
  464. color:{color:Text};/*color of text*/
  465. background:#fff;/*background color of updates box*/
  466. -moz-transition-duration:0.5s;
  467. -webkit-transition-duration:0.5s;
  468. -o-transition-duration:0.5s;
  469. }
  470. /*tutorial by meem.co.vu; please don't remove this note*/
  471. #updatestitle {/*the title of the updates box*/
  472. line-height:17px;/*don't change this!*/
  473. font-family:helvetica;/*the font of the updates title*/
  474. text-transform:uppercase;/*can be uppercase, lowercase, none*/
  475. font-size:7px;/*font size of updates title*/
  476. }
  477.  
  478. #inside {/*the actual updates*/
  479. font-size:9px;/*the font size of the actual updates*/
  480. font-family:helvetica;/*the font of the actual updates*/
  481. width:90px;/*if you increase the width of #updatesbox:hover , increase the width of #inside by the same value. for instance, if you increase the width of #updatesbox:hover from 90px to 100px, change the width of #inside to 100px*/
  482. line-height:10px;/*don't change this!*/
  483. -moz-transition-duration:0.5s;
  484. -webkit-transition-duration:0.5s;
  485. -o-transition-duration:0.5s;
  486. }
  487.  
  488. /*---END CSS---*/
  489.  
  490. </style></head><body>
  491.  
  492. {block:IfShowUpdates}
  493.  
  494. <!-- begin updates box -->
  495.  
  496. <div id="updatesbox">
  497. <span id="updatestitle">TITLE</span>
  498. <div id="inside">
  499.  
  500. Okay hi so this is where you put your updates or whatever it is you want to put!
  501.  
  502. <p>
  503.  
  504. Type &lt;br&gt; or &lt;p&gt; to go to a new line.
  505.  
  506. <p>
  507.  
  508. So what you're going to have to do is go to the HTML and look for this writing and change it from there.
  509.  
  510. <p>
  511.  
  512. Of course, this is totally optional, so there will be a choice not to have this! (:
  513.  
  514. </div>
  515. </div>
  516.  
  517. {/block:IfShowUpdates}
  518.  
  519. <div id="sidebar">
  520.  
  521. <div id="sidebarimage">
  522. <a href="/">
  523. <img src="{image:Sidebar}">
  524. </a>
  525. </div>
  526.  
  527. <div id="links">
  528.  
  529. <a href="/" title="Home">I</a>&nbsp;&nbsp;
  530.  
  531. {block:ifNotPopUpAsk}
  532. <a href="/ask" title="Ask">II</a>
  533. {/block:ifNotPopUpAsk}&nbsp;&nbsp;
  534.  
  535. {block:ifPopUpAsk}
  536. <a href="#?w=500" rel="02" class="poplight" title="Ask">II</a>
  537. {/block:ifPopUpAsk}&nbsp;&nbsp;
  538.  
  539. {block:IfShowLink1}<a href="{text:Link 1}" title="{text:Link 1 Text}">III</a>{/block:IfShowLink1}&nbsp;&nbsp;
  540.  
  541. {block:IfShowLink2}<a href="{text:Link 2}" title="{text:Link 2 Text}">IV</a>{/block:IfShowLink2}&nbsp;&nbsp;
  542.  
  543. {block:IfShowLink3}<a href="{text:Link 3}" title="{text:Link 3 Text}">V</a>{/block:IfShowLink3}&nbsp;&nbsp;
  544.  
  545. {block:IfShowLink4}<a href="{text:Link 4}" title="{text:Link 4 Text}">VI</a>{/block:IfShowLink4}
  546. </div>
  547.  
  548. <div id="description">{Description}</div>
  549.  
  550. </div>
  551. </div>
  552.  
  553. <div id="pagination">
  554. {block:Pagination}<div class="pagination">
  555. {block:PreviousPage}<a href="{PreviousPage}">back</a> {/block:PreviousPage} —
  556. {block:NextPage}<a href="{NextPage}">forth</a> {/block:NextPage}
  557. </div>{/block:Pagination}
  558. </div>
  559.  
  560. <!---END SIDEBAR--->
  561.  
  562. <!---POSTS--->
  563.  
  564. <div id="entry">
  565. {block:Posts}
  566. <div id="post">
  567.  
  568. {block:Text}
  569. {block:Title}<h1>{Title}</h1>{/block:Title}
  570. {Body}
  571. {/block:Text}
  572.  
  573.  
  574. {block:Photo}
  575. <a href="{Permalink}"><img src="{PhotoURL-500}"></a>
  576. {block:Caption}
  577. <span class="caption">{Caption}</span>
  578. {/block:Caption}
  579. {/block:Photo}
  580.  
  581.  
  582. {block:Photoset}
  583. {Photoset-500}
  584. {block:Caption}
  585. <span class="caption">{Caption}</span>
  586. {/block:Caption}
  587. {/block:Photoset}
  588.  
  589. {block:Quote}
  590. <div class="quote">❝ {Quote} ❞</div>
  591. {block:Source}
  592. <div id="source">— {Source}</div>
  593. {/block:Source}
  594. {/block:Quote}
  595.  
  596.  
  597. {block:Link}
  598. <h1><a href="{URL}" {Target}>{Name}</a></h1>
  599. {block:Description}
  600. <div style="padding-left:5px;padding-right:5px;">{Description}</div>
  601. {/block:Description}
  602. {/block:Link}
  603.  
  604.  
  605. {block:Chat}
  606. {block:Title}<h1>{Title}</h1>{/block:Title}
  607. {block:Lines}
  608. {block:Label}<b>{Label}</b>{/block:Label} {Line}<br>
  609. {/block:Lines}
  610. {/block:Chat}
  611.  
  612. {block:Audio}<left>{block:AlbumArt}<img src="{AlbumArtURL}" width="65px" height="65px" align="left" style="margin-right:10px" />{/block:AlbumArt}<span class="audio">{AudioPlayerBlack}</left></span>
  613. {block:TrackName}<b>Title:</b> {TrackName}<br />{/block:TrackName}
  614. {block:Artist}<b>Artist:</b> {Artist}<br />{/block:Artist}
  615. {/block:ExternalAudio}<b>Played:</b> {PlayCount} times <br>
  616.  
  617. <br><br>
  618.  
  619. {block:Caption}
  620. {block:ifshowcaptions}
  621. <span class="caption">{Caption}</span>
  622. {/block:ifshowcaptions}
  623. {/block:Caption}
  624. {/block:Audio}
  625.  
  626.  
  627. {block:Video}
  628. {Video-500}
  629. {block:Caption}
  630. <span class="caption">{Caption}</span>
  631. {/block:Caption}
  632. {/block:Video}
  633.  
  634. {block:Answer}
  635. <div id="questions">
  636. <a href="{askerURL}" title={askername}><img src="{AskerPortraitURL-30}"></a>
  637. <div id="statement">{Question}</div>
  638. </div>
  639. <div id="answers">{Answer}</div>
  640. {/block:answer}
  641.  
  642. <!---POST INFO--->
  643. <div id="info">
  644.  
  645. <!---DATE--->
  646. {block:Date}
  647. <a href="{Permalink}" title="{TimeAgo}">{DayOfMonthWithZero}.{MonthNumberWithZero}.{ShortYear}</a>
  648. {/block:Date}
  649. <!---NOTE COUNT--->
  650. {block:NoteCount}
  651. &nbsp;<font style="color:#a8a8a8">+<a href="{Permalink}" title="{NoteCountWithLabel}">{NoteCount}</a></font>
  652. {/block:NoteCount}
  653.  
  654. <!---REBLOG--->
  655. <div style="float:right;"><a href="{ReblogURL}">reblog</a></div>
  656. </div>
  657.  
  658. <!---END POST INFO--->
  659.  
  660. <!---TAGS--->
  661. <div id="tags">
  662. {block:HasTags}
  663. {block:Tags}
  664. <a href="{TagURL}">#{Tag} </a>&nbsp;
  665. {/block:Tags}
  666. {/block:HasTags}
  667. </div>
  668. </div>
  669.  
  670. {block:PermalinkPage}
  671. <center><font style="font-size:8px;text-transform:uppercase;letter-spacing:2px;">{block:ContentSource}Source: <a href="{SourceURL}">{SourceTitle}</a>{/block:ContentSource} {block:RebloggedFrom} &nbsp; Via: <a href="{ReblogParentURL}">{ReblogParentName}</a>{/block:RebloggedFrom}</a> / <a href="{ReblogURL}">reblog</a></font></center>
  672. {/block:PermalinkPage}
  673.  
  674. {/block:Posts}
  675.  
  676. {block:PermalinkPage}
  677. {block:PostNotes}
  678. <div id="notes">{PostNotes}</div>
  679. {/block:PostNotes}
  680. {/block:permalinkpage}
  681.  
  682. </div></div>
  683.  
  684. <div id="cred">
  685. <a href="http://armyofghosts.tumblr.com/" title="armyofghosts">AG</a></div>
  686.  
  687. </body>
  688.  
  689. <div id="02" class="popup_block">
  690.  
  691. <Center><div class="heading">{text:Ask}</div><iframe frameborder="0" scrolling="yes" width="100%" height="190" src="http://www.tumblr.com/ask_form/{text:URL}.tumblr.com" style="background-color:transparent; overflow:hidden;" id="ask_form">
  692. </center></div>
  693.  
  694. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement