Advertisement
winterfells

BUDAPEST

May 28th, 2015
241
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.88 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <!--LAZY LOAD--
  5.  
  6. <!--MAIN TITLE-->
  7. <title>{Title}</title>
  8.  
  9. <!--LINK THINGS-->
  10. <link rel="shortcut icon" href="{Favicon}">
  11. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  12.  
  13. <!--META DESCRIPTION-->
  14. {block:Description}
  15. <meta name="description" content="{MetaDescription}" />
  16. {/block:Description}
  17.  
  18. <link href='http://fonts.googleapis.com/css?family=Bitter:300,700,300italic' rel='stylesheet' type='text/css'><link href='http://fonts.googleapis.com/css?family=Lato' rel='stylesheet' type='text/css'>
  19.  
  20. <!--META TAGS-->
  21. <meta name="image:sidebar" content="" />
  22. <meta name="color:background" content="#fff" />
  23. <meta name="color:link" content="#616161" />
  24. <meta name="color:navi" content="#616161" />
  25. <meta name="color:text" content="#000" />
  26. <meta name="text:link1" content="" />
  27. <meta name="text:link1 url" content="/" />
  28. <meta name="text:link2" content="" />
  29. <meta name="text:link2 url" content="/" />
  30. <meta name="text:link3" content="" />
  31. <meta name="text:link3 url" content="/" />
  32. <meta name="text:link4" content="" />
  33. <meta name="text:link4 url" content="/" />
  34. <meta name="text:link5" content="" />
  35. <meta name="text:link5 url" content="/" />
  36. <meta name="text:link6" content="" />
  37. <meta name="text:link6 url" content="/" />
  38. <meta name="if:show title" content="0" />
  39.  
  40.  
  41. <!--TOOLTIP CODE-->
  42. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  43.  
  44. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  45.  
  46. <script>
  47.  
  48. (function($){
  49.  
  50. $(document).ready(function(){
  51.  
  52. $("a[title]").style_my_tooltips({
  53.  
  54. tip_follows_cursor:true,
  55.  
  56. tip_delay_time:30,
  57.  
  58. tip_fade_speed:500,
  59.  
  60. attribute:"title"
  61.  
  62. });
  63.  
  64. });
  65.  
  66. })(jQuery);
  67.  
  68. </script>
  69.  
  70. <script type="text/javascript">
  71. /* Photoset Resize Code by Kevin - EXCOLO.TUMBLR.COM */
  72. $(document).ready(function() {
  73. function photosetResize() {
  74. $('iframe.photoset').each(function(){
  75. var newSize = 300;
  76. var newSrc = $(this).attr('src').replace('500',newSize);
  77. $(this).attr('src', newSrc).width(newSize);
  78. var high = $(this).css('height');
  79. var calculate = parseInt(high, 10)* newSize/500;
  80. $(this).css('height', calculate);
  81. });
  82. }
  83. photosetResize();
  84. });
  85. </script>
  86.  
  87.  
  88. <!--STYLE-->
  89. <style type="text/css">
  90.  
  91. /*TOOLTIPS*/
  92.  
  93. #s-m-t-tooltip {
  94. text-align: center;
  95. max-width: 150px;
  96. margin: 15px;
  97. padding: 7px;
  98. font-style: italic;
  99. z-index: 999999;
  100. letter-spacing: 0.5px;
  101. color: black;
  102. background-color: rgba(255, 255, 255, 0.5);
  103. }
  104.  
  105.  
  106. /*GENERAL*/
  107.  
  108. ::-webkit-scrollbar {
  109. width: 2px;
  110. }
  111.  
  112. ::-webkit-scrollbar-thumb {
  113. width: 5px;
  114. background-color: #000;
  115. }
  116.  
  117.  
  118. body {
  119. /*background:url(https://unsplash.imgix.net/photo-1423683249427-8ca22bd873e0?q=75&fm=jpg&s=5e57c661d0f772ce269188a6f5325708) top right no-repeat; */
  120. background: {color:background};
  121. background-attachment:fixed;
  122. background-repeat: repeat;
  123. font-size: 7px;
  124. font-family: arial;
  125. font-weight: 200;
  126. line-height: 150%;
  127. text-align: left;
  128. color: {color:text};
  129. }
  130.  
  131. a {
  132. text-decoration: none;
  133. color: {color:link};
  134. border-bottom: 1px solid transparent;
  135. transition: 0.7s;
  136. }
  137.  
  138. a:hover {
  139. opacity: 0.2;
  140. }
  141.  
  142. blockquote {
  143. color: black;
  144. padding-left: 7px;
  145. position: relative;
  146. border-left: 1px solid #f1f1f1;
  147. }
  148.  
  149. blockquote blockquote {
  150. padding: 5px;
  151. width: auto;
  152. }
  153.  
  154. #title {
  155. {block:IfNotShowTitle}
  156. display: none;
  157. {/block:IfNotShowTitle}
  158. {block:IfShowTitle}
  159. display: block;
  160. {/block:IfShowTitle}
  161. font-weight: bold;
  162. text-transform: uppercase;
  163. letter-spacing: 1px;
  164. text-align: center;
  165. max-width: 150px;
  166. background: #f8f8f8;
  167. padding: 6px;
  168. padding-top: 7px;
  169. padding-left: 5px;
  170. padding-right: 5px;
  171. margin: 4px;
  172. }
  173.  
  174. #posts {
  175. position: relative;
  176. margin-top: 50px;
  177. margin-left: 150px;
  178. width: 500px;
  179. }
  180.  
  181. .entry {
  182. position: relative;
  183. width: 300px;
  184. margin-bottom: 150px;
  185. z-index: 9;
  186. text-align: left;
  187. padding: 10px;
  188. padding-bottom: -10px;
  189. background: white;
  190. /*box-shadow: 5px 5px 1px 0px rgba(50, 50, 50, 0.49);*/
  191. }
  192.  
  193.  
  194. /*sidebar*/
  195.  
  196. #sidebar {
  197. font-size: 6px;
  198. position: fixed;
  199. width: 150px;
  200. margin-left: 300px;
  201. top: 150px;
  202. z-index: 99999999;
  203. }
  204.  
  205. #sidebarimage {
  206. width: 150px;
  207. }
  208.  
  209. #sidebarimage img {
  210. width: 150px;
  211. }
  212.  
  213. #links {
  214. position: relative;
  215. top: -8px;
  216. letter-spacing: 1px;
  217. float: right;
  218. margin-top: 10px;
  219. background: #f8f8f8;
  220. padding-top: 15px;
  221. padding-bottom: 15px;
  222. width: 150px;
  223. }
  224.  
  225. #links a {
  226. margin-right: 5px;
  227. color: gray;
  228. display: inline;
  229. color: {color:navi};
  230. transition: 0.7s ease;
  231. }
  232.  
  233. #links a::after {
  234. content:",";
  235. }
  236.  
  237. #links a:hover {
  238.  
  239. }
  240.  
  241. /*PAGINATION*/
  242.  
  243. #pagination {
  244. position: absolute;
  245. bottom: 50px;
  246. margin-left: 70px;
  247. width: 350px;
  248. font-size: 9px;
  249. text-align: center;
  250. transition: 0.7s ease;
  251. }
  252.  
  253. #pagination a {
  254. width: 20px;
  255. margin: 10px;
  256. padding-top: 5px;
  257. border-top: 1px solid transparent;
  258. }
  259.  
  260. #pagination a:hover {
  261. opacity: 1;
  262. border-top: 1px solid black;
  263. }
  264.  
  265. #pagination .current_page {
  266. margin: 10px;
  267. border-top: 1px solid black;
  268. padding-top: 5px;
  269. }
  270.  
  271. /*QUOTE*/
  272.  
  273. #quote {
  274. text-align: center;
  275. width: 500px;
  276. font-size: 15px;
  277. border-bottom: 1px dotted lightgray;
  278. padding-bottom: 20px;
  279. }
  280.  
  281. .source {
  282. padding-top: 20px;
  283. width: 500px;
  284. text-align: center;
  285. }
  286.  
  287. /*AUDIO PLAYER*/
  288.  
  289. #albumart img {
  290. height: 150px;
  291. width: 150px;
  292. float: left;
  293. position: relative;
  294. }
  295.  
  296. #albumart:hover #audio {
  297. opacity: 0.8;
  298. }
  299.  
  300. #albumart:hover #audioplayer {
  301. opacity: 0.8;
  302. }
  303.  
  304. #audio {
  305. height: 150px;
  306. width: 150px;
  307. background: white;
  308. position: absolute;
  309. top: 7px;
  310. left: 7px;
  311. z-index: 9999999;
  312. opacity: 0;
  313. transition-duration: 0.5s;
  314. }
  315.  
  316. #audioplayer {
  317. opacity: 0;
  318. width: 27px;
  319. height: 27px;
  320. background: white;
  321. overflow: hidden;
  322. position: absolute;
  323. top: 40px;
  324. left: 40px;
  325. z-index: 9999999;
  326. transition-duration: 0.5s;
  327. }
  328.  
  329. #audioinfo {
  330. float: left;
  331. position: relative;
  332. line-height: 297%;
  333. font-size: 10px;
  334. font-weight: ;
  335. margin-left: 10px;
  336. background: #fbfbfb;
  337. padding: 5px;
  338. padding-left: 8px;
  339. width: 220px;
  340. border-top: 1px solid #eee;
  341. border-bottom: 1px solid #eee;
  342. }
  343.  
  344.  
  345. /*ASKER*/
  346.  
  347. #question {
  348. background-color: #fbfbfb;
  349. padding: 20px;
  350. text-align: left;
  351. width: 260px;
  352. font-weight: bold;
  353. }
  354.  
  355. #asker {
  356. text-align: left;
  357. width: 300px;
  358. margin-bottom: 10px;
  359. text-transform: uppercase;
  360. font-weight: bold;
  361. font-size: 12px;
  362. letter-spacing: 1px;
  363. }
  364.  
  365. #answer {
  366. text-align: right;
  367. margin-top: 10px;
  368. }
  369.  
  370. /*CHAT*/
  371.  
  372. ul {
  373. list-style: none;
  374. padding: 10px;
  375. }
  376.  
  377. ul li {
  378. border-bottom: 1px solid black;
  379. padding: 5px;
  380. }
  381.  
  382. /*INFO*/
  383.  
  384. #info {
  385. position: relative;
  386. background: #f8f8f8;
  387. padding: 15px;
  388. text-align: center;
  389. text-transform: lowercase;
  390. letter-spacing: 1px;
  391. top: 0px;
  392. transition: 0.5s;
  393. }
  394.  
  395. #info a {
  396. margin-left: 5px;
  397. }
  398.  
  399. #tags {
  400. width: 300px;
  401. text-align: center;
  402. display: inline;
  403. position: relative;
  404. letter-spacing: 1px;
  405. top: 5px;
  406. opacity: 0;
  407. transition: 0.5s;
  408. }
  409.  
  410. #tags small {
  411. vertical-align: 1px;
  412. }
  413.  
  414. #tags a::before {
  415. content: " ";
  416. }
  417.  
  418. #tags a {
  419. margin-right: 10px;
  420. }
  421.  
  422. .entry:hover #tags {
  423. opacity: 1;
  424. }
  425.  
  426. /*NOTES*/
  427.  
  428. #notes {
  429. width: 300px;
  430. text-align: left;
  431. }
  432.  
  433. #notes ol {
  434. list-style: none;
  435. }
  436.  
  437. li.note {
  438. margin: 10px;
  439. margin-left: 15px;
  440. }
  441.  
  442. #notes img {
  443. vertical-align: -5px;
  444. margin-right: 10px;
  445. }
  446.  
  447. /*CREDIT*/
  448.  
  449. #credit {
  450. font-style: normal;
  451. position: fixed;
  452. bottom: 15px;
  453. font-size: 9px;
  454. letter-spacing: 1px;
  455. right: 15px;
  456. background: transparent;
  457. padding: 5px;
  458. width: 15px;
  459. text-align: center;
  460. transition: 0.5s;
  461. }
  462.  
  463. /*UPDATES*/
  464.  
  465. #updates {
  466. position: fixed;
  467. top: 10px;
  468. left: 10px;
  469. }
  470.  
  471. #updates:hover #content {
  472. opacity: 1;
  473. transition: 1s ease;
  474. }
  475.  
  476. #content {
  477. position: relative;
  478. bottom: 7px;
  479. opacity: 1;
  480. text-align: justify;
  481. width: 150px;
  482. transition: 1s ease;
  483. }
  484.  
  485. </style>
  486.  
  487. </head>
  488.  
  489. <body>
  490.  
  491. <!--<div id="updates">
  492. <h3>UPDATES</h3>
  493. <div id="content">
  494. lorem ipsum sadjflsdljs
  495.  
  496. </div>
  497. </div>
  498.  
  499. <!--sidebar-->
  500. <center>
  501. <div id="sidebar">
  502.  
  503. <!--TITLE-->
  504. <div id="title">{Title}</div>
  505.  
  506. <div id="sidebarimage"><script language="JavaScript">
  507. <!--
  508.  
  509. /*
  510. Random Image Script- By JavaScript Kit (http://www.javascriptkit.com)
  511. Over 400+ free JavaScripts here!
  512. Keep this notice intact please
  513. */
  514.  
  515. function random_imglink(){
  516. var myimages=new Array()
  517. //specify random images below. You can have as many as you wish
  518. myimages[1]="http://s28.postimg.org/ug7d7u5ql/image.jpg"
  519. myimages[2]="http://s28.postimg.org/e6lsiokgd/image.jpg"
  520. myimages[3]="http://s21.postimg.org/i5o3g2amf/image.jpg"
  521. myimages[4]="http://s21.postimg.org/qp7hdtiyv/image.jpg"
  522.  
  523. var ry=Math.floor(Math.random()*myimages.length)
  524. if (ry==0)
  525. ry=1
  526. document.write('<img src="'+myimages[ry]+'" border=0>')
  527. }
  528. random_imglink()
  529. //-->
  530. </script></div>
  531.  
  532. <!--LINKS-->
  533.  
  534. <div id="links">
  535. <a href="{text:link1 url}">{text:link1}</a>
  536. <a href="{text:link2 url}">{text:link2}</a>
  537. <a href="{text:link3 url}">{text:link3}</a>
  538. </div>
  539.  
  540.  
  541. <br>
  542.  
  543. </div>
  544.  
  545.  
  546. </center>
  547.  
  548. <center>
  549.  
  550. <!--POSTS-->
  551. <div id="posts">
  552.  
  553. {block:Posts}
  554. <div class="entry">
  555.  
  556. <!--TEXT POSTS-->
  557. {block:Text}{block:Title}<h3><a href="{Permalink}">{Title}</a></h3>{/block:Title}{Body}{/block:Text}
  558.  
  559.  
  560. <!--PHOTO POSTS-->
  561. {block:Photo}<img src="{PhotoURL-500}" alt="{PhotoAlt}" width="300"/>{/block:Photo}
  562.  
  563.  
  564. <!--PHOTOSET POSTS-->
  565. {block:Photoset}{Photoset-500}{/block:Photoset}
  566.  
  567.  
  568. <!--QUOTE POSTS-->
  569. {block:Quote}<div id="quote">"{Quote}"</div>{block:Source}<div class="source">{Source}</div>{/block:Source}{/block:Quote}
  570.  
  571.  
  572. <!--LINK POSTS-->
  573. {block:Link}<a href="{URL}" class="link" {Target}>{Name}</a>{/block:Link}
  574.  
  575.  
  576. <!--CHAT POSTS-->
  577. {block:Chat}{block:Title}<h3><a href="{Permalink}">{Title}</a></h3>{/block:Title}<ul class="chat">{block:Lines}<li class="{Alt} user_{UserNumber}">{block:Label} <span class="label">{Label}&nbsp;</span>{/block:Label}{Line}</li>{/block:Lines}</ul></li>{/block:Chat}
  578.  
  579.  
  580. <!--VIDEO POSTS-->
  581. {block:Video}{Video-500}{/block:Video}
  582.  
  583.  
  584. <!--AUDIO POSTS-->
  585. {block:Audio}<div id="albumart">{block:AlbumArt}<div id="audio"><div id="audioplayer">{AudioPlayerWhite}</div></div><img src="{AlbumArtURL}">{/block:AlbumArt}</div><div id="audioinfo">{block:TrackName}
  586. {TrackName}
  587. {/block:TrackName}<br>{block:Artist}{Artist}
  588. {/block:Artist}<br>{PlayCountWithLabel}</div><br><br><br><br><br><br><br><br><br><br><br><br><br>{/block:Audio}
  589.  
  590.  
  591. <!--ANSWER POSTS-->
  592. {block:Answer}<div id="asker">{Asker}</div><div id="question">{Question}</div><div id="answer">{Answer}</div>{/block:Answer}
  593.  
  594.  
  595. <!--CAPTION-->
  596. {block:Caption}<div id="caption">{Caption}</div>{/block:Caption}
  597.  
  598. <!--INFO-->
  599. <div id="info">
  600. <a title="{TimeAgo}" href="{Permalink}">{DayOfWeek}</a>,
  601. <a href="{Permalink}">{NoteCount}</a>,
  602. {block:RebloggedFrom}<a title="{ReblogParentTitle}" href="{ReblogParentURL}">VIA</a>{/block:RebloggedFrom},
  603. {block:ContentSource}<a title="{SourceTitle}" href="{SourceURL}">SOURCE</a>{/block:ContentSource}
  604. </div>
  605.  
  606. <center>{block:Tags}<div id="tags"><small>&#9632</small><a href="/tagged/{Tag}">{Tag}</a></div>{/block:Tags}</center>
  607.  
  608. </div>
  609.  
  610.  
  611. <!--POST NOTES-->
  612. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  613.  
  614. <!--HIDE VIA AND SOURCE-->
  615. {/block:Posts}
  616. <!-- {block:NoRebloggedFrom}
  617. {block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}
  618. {/block:NoRebloggedFrom} -->
  619. {block:ContentSource}<!-- {SourceURL}
  620. {block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  621. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  622. {/block:ContentSource}
  623.  
  624. <br><br>
  625.  
  626.  
  627. <div id="pagination">
  628. {block:Pagination}
  629. {block:PreviousPage}<a href="{PreviousPage}" class="jump_page">&laquo;</a>{/block:PreviousPage}
  630. {block:JumpPagination length="4"}
  631. {block:CurrentPage}<span class="current_page">{PageNumber}</span>{/block:CurrentPage}
  632. {block:JumpPage}<a class="jump_page" href="{URL}">{PageNumber}</a>{/block:JumpPage}{/block:JumpPagination}
  633. {block:NextPage}<a href="{NextPage}" class="jump_page">&raquo;</a>{/block:NextPage}
  634. {/block:Pagination}
  635. </div>
  636.  
  637.  
  638. </div>
  639. </center>
  640.  
  641. <center><div id="credit"><a title="theme by reichanbach" href="http://reichanbach.tumblr.com">RB</a></div></center>
  642. </body>
  643.  
  644. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement