Advertisement
ssourwolf

2018: updated 4am code.

Nov 4th, 2018
120
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.31 KB | None | 0 0
  1.  
  2. <!DOCTYPE html>
  3. <head>
  4.  
  5.  
  6. <title>{Title}</title>
  7.  
  8. <link rel="shortcut icon" href="{Favicon}">
  9. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  10. {block:Description}<meta name="description" content="{MetaDescription}" />{/block:Description}
  11.  
  12. <!--Default Variables-->
  13.  
  14. <meta name="color:Background" content="#ffffff"/>
  15. <meta name="color:Text" content="#aaaaaa"/>
  16. <meta name="color:Link" content="#000000"/>
  17.  
  18. <meta name="image:Sidebar Image" content=""/>
  19.  
  20. <meta name="text:Link 1 URL" content="" />
  21. <meta name="text:Link 1" content="" />
  22. <meta name="text:Link 2 URL" content="" />
  23. <meta name="text:Link 2" content="" />
  24. <meta name="text:Link 3 URL" content="" />
  25. <meta name="text:Link 3" content="" />
  26.  
  27.  
  28. <!-- jquery for tooltips-->
  29.  
  30.  
  31. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  32.  
  33. <script src="http://static.tumblr.com/iuw14ew/VSQma1786/jquery.style-my-tooltips.js"></script>
  34.  
  35. <script>
  36.  
  37. (function($){
  38.  
  39. $(document).ready(function(){
  40.  
  41. $("a[title]").style_my_tooltips({
  42.  
  43. tip_follows_cursor:true,
  44.  
  45. tip_delay_time:30,
  46.  
  47. tip_fade_speed:300,
  48.  
  49. attribute:"title"
  50.  
  51. });
  52.  
  53. });
  54.  
  55. })(jQuery);
  56.  
  57. </script>
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64. <!--CSS customization here. -->
  65.  
  66. <link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
  67.  
  68.  
  69.  
  70.  
  71. <style type="text/css">
  72.  
  73. #s-m-t-tooltip{
  74. position:absolute;
  75. margin-top: 15px;
  76. z-index:9999;
  77. background:{color:background};
  78. }
  79.  
  80.  
  81.  
  82. /*basics*/
  83. blockquote {padding-left:20px;
  84. border-left:3px solid #ddd;
  85. margin-left:20px;
  86. }
  87.  
  88. body {
  89. background:{color:background};
  90. color:{color:text};
  91. font-family: 'Fira Sans', sans-serif;
  92. font-size:11px;
  93. text-align:justify;
  94. margin:0;
  95. line-height:16px;}
  96.  
  97.  
  98. a {
  99. color:{color:link};
  100. text-decoration:none;
  101. }
  102.  
  103. a:hover {
  104. text-decoration:underline;}
  105.  
  106. img{opacity:1;
  107. border:none;
  108. text-decoration:none}
  109.  
  110.  
  111. small {
  112. font-size:11px;}
  113.  
  114. big {
  115. font-size:12px;}
  116.  
  117.  
  118. #title {font-size:12px;
  119. line-height:18px;
  120. font-weight:bold;
  121. margin-bottom:10px;
  122. text-transform:lowercase;
  123. text-align:left;}
  124.  
  125.  
  126. /*sidebar*/
  127. #sidebar {text-align:left;
  128. position:fixed;
  129. margin-left:-225px;
  130. margin-top:100px;
  131. width:180px;
  132. background-color:#fff;
  133. padding:10px;
  134. border-right:1px solid #ddd;
  135. border-bottom:1px solid #ddd;
  136. }
  137.  
  138. #sidebarim {margin-bottom:20px}
  139.  
  140. #sidebarim img {width:180px}
  141.  
  142. #blogt {font-size:18px;
  143. font-weight:bold;
  144. text-align:center;
  145. }
  146.  
  147.  
  148. #navi {
  149. color: #000;
  150. width:190px;
  151. text-align:center;
  152. margin-left:-10px;
  153. margin-top:-8px;
  154. font-style: normal;
  155. border-top:0px solid ;
  156. padding:10px 8px 0px 10px;
  157. text-align:justify;
  158. font-size:10.1px;
  159. }
  160.  
  161. #navi a:nth-of-type(3n+1) {
  162. box-shadow: inset 0 -5px 0 #F5B7B1;
  163. letter-spacing: 0.2px !important;
  164. color: #000;
  165. }
  166. #navi a:nth-of-type(3n+2) {
  167. box-shadow: inset 0 -5px 0 #D2B4DE;
  168. letter-spacing: 0.2px !important;
  169. color: #000;
  170. }
  171. #navi a:nth-of-type(3n) {
  172. box-shadow: inset 0 -5px 0 #AED6F1;
  173. letter-spacing: 0.2px !important;
  174. color: #000;
  175. }
  176.  
  177. #navi a:nth-of-type(3n+1):hover {background:#fbeef5 !important;}
  178. #navi a:nth-of-type(3n+2):hover, .caption p a:hover {background:#eef2fb;}
  179. #navi a:nth-of-type(3n):hover {background:#f0eaf0;}
  180.  
  181. #navi a {
  182. display: inline;
  183. line-height: 18px;
  184. }
  185.  
  186. #navi a:not(:last-of-type) {
  187. margin-right:6px;}
  188.  
  189. #navi a:hover {
  190. color:#a2a1a1!important;}
  191.  
  192.  
  193.  
  194.  
  195. #description {
  196. margin:20px 0;
  197. text-align:center;
  198. }
  199.  
  200.  
  201. /*pagination*/
  202.  
  203. #pagination {
  204. position:fixed;
  205. font-size:10px;
  206. margin-left:-370px;
  207. padding:5px 10 5px 19px;
  208. top:150px;
  209. }
  210. #pagination a {
  211. border-right:2px solid {color:borders};
  212. padding:5px 10px 5px 19px;
  213. display:block;
  214. text-decoration:none;
  215. }
  216. #pagination a:hover {
  217. border-right:2px solid {color:title};}
  218. .current_page {margin:0;
  219. text-decoration:none;
  220. padding:5px 10px 5px 19px;
  221. border-right:2px solid {color:title};
  222. color:{color:title};
  223. display:block;}
  224.  
  225.  
  226. /*container*/
  227. #con {
  228. left:50%;
  229. margin-left:-250px;
  230. position:absolute;
  231. }
  232.  
  233.  
  234.  
  235. /*posts*/
  236.  
  237. #entries {
  238. margin-left:60px;
  239. margin-top:75px;
  240. width:400px;
  241. }
  242.  
  243.  
  244.  
  245. #posts {
  246. background-color:#fff;
  247. padding:10px;
  248. border-right:1px solid #ddd;
  249. border-bottom:1px solid #ddd;
  250. width:400px;
  251. {block:IndexPage}
  252. margin-bottom:75px;
  253. {/block:IndexPage}
  254. {block:PermalinkPage}
  255. margin-bottom:50px;
  256. {/block:PermalinkPage}
  257.  
  258. }
  259. #posts img {
  260. max-width:400px;
  261.  
  262. }
  263.  
  264. #posts img, #posts li, #posts blockquote {max-width: 100%;}
  265. .caption {width:100%;
  266. margin-top:10px;
  267.  
  268. }
  269.  
  270. /*quote*/
  271.  
  272. #titlequote{text-align:left;
  273. font-size:14px;
  274. line-height:18px;
  275. font-weight:bold;
  276. }
  277. #source {
  278. margin-top:15px;
  279. margin-left:15px;}
  280.  
  281. /*audio*/
  282.  
  283. .player {
  284. width:25px;
  285. height:25px;
  286. overflow:hidden;
  287. position:absolute;
  288. background:white;}
  289.  
  290. .audioinfo {
  291. margin-left:50px;
  292. }
  293.  
  294.  
  295. /*asks*/
  296. .q {margin-bottom:10px;
  297. }
  298. .as {
  299. font-weight:bold;}
  300.  
  301. .a {
  302. margin-top:10px;
  303. }
  304.  
  305.  
  306. /*chat*/
  307.  
  308. .chat ol {
  309. padding:0;
  310. list-style:none;
  311. }
  312. .line {padding:5px 0;}
  313.  
  314. .label {font-weight:bold;
  315. }
  316.  
  317.  
  318.  
  319.  
  320.  
  321. /*permalink and notes*/
  322.  
  323. #permalink {
  324. margin-top:10px;
  325. font-size:11px;
  326. text-transform:lowercase;
  327. }
  328. #permalink a {margin-right:10px;
  329. }
  330.  
  331. .tags {
  332. color: #000;
  333. margin-left:-10px;
  334. margin-top:-8px;
  335. font-style: normal;
  336. border-top:0px solid ;
  337. padding:10px 8px 0px 10px;
  338. text-align:justify;
  339. font-size:10.1px;
  340. }
  341.  
  342. .tags a:nth-of-type(3n+1) {
  343. box-shadow: inset 0 -5px 0 #F5B7B1;
  344. letter-spacing: 0.2px !important;
  345. color: #000;
  346. }
  347. .tags a:nth-of-type(3n+2) {
  348. box-shadow: inset 0 -5px 0 #D2B4DE;
  349. letter-spacing: 0.2px !important;
  350. color: #000;
  351. }
  352. .tags a:nth-of-type(3n) {
  353. box-shadow: inset 0 -5px 0 #AED6F1;
  354. letter-spacing: 0.2px !important;
  355. color: #000;
  356. }
  357.  
  358. .tags a:nth-of-type(3n+1):hover {background:#fbeef5 !important;}
  359. .tags a:nth-of-type(3n+2):hover, .caption p a:hover {background:#eef2fb;}
  360. .tags a:nth-of-type(3n):hover {background:#f0eaf0;}
  361.  
  362. .tags a {
  363. display: inline;
  364. line-height: 18px;
  365. }
  366.  
  367. .tags a:not(:last-of-type) {
  368. margin-right:6px;}
  369.  
  370. .tags a:hover {
  371. color:#a2a1a1!important;}
  372.  
  373.  
  374.  
  375. .pagenotes {
  376. {block:IndexPage}
  377. display: none!important;
  378. {/block:IndexPage}
  379. width:400px;
  380. text-align:left;
  381.  
  382. }
  383. .pagenotes img {
  384. display:none!important;}
  385. .pagenotes li {
  386. list-style-type:none;
  387. padding:5px 0px;
  388. text-align:left;
  389. margin:0 0 0 -40px;
  390. }
  391.  
  392.  
  393.  
  394.  
  395. {CustomCSS}
  396.  
  397.  
  398. </style>
  399.  
  400. <link href="https://static.tumblr.com/qudkd6d/OcDnl99gb/style.css" rel="stylesheet" type="text/css"/>
  401. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
  402. <script src="https://static.tumblr.com/qudkd6d/Az6nkemqr/pxuphotoset.min.js"></script>
  403.  
  404.  
  405. <script>
  406. $(document).ready(function(){
  407. $('.photo-slideshow').pxuPhotoset({
  408. lightbox: true,
  409. rounded: false,
  410. gutter: '2px',
  411. borderRadius: '0px',
  412. photoset: '.photo-slideshow',
  413. photoWrap: '.photo-data',
  414. photo: '.pxu-photo'
  415. });
  416. });
  417. </script>
  418. </head>
  419.  
  420. <body>
  421.  
  422. <div id="con">
  423.  
  424. <div id="sidebar">
  425. <div id="sidebarim"><a href="/"><img src="{image:Sidebar Image}"></a></div>
  426. <div id="description">{Description}</div>
  427. <div id="navi">&nbsp;&nbsp;&nbsp;&nbsp;
  428. <a href="/">home</a>
  429. <a href="/ask">message</a>
  430. <a href="/nav">tags</a>
  431. <a href="/net">networks</a>
  432. </div>
  433. </div>
  434.  
  435.  
  436.  
  437.  
  438.  
  439. <div id="entries">
  440.  
  441. {block:Posts}
  442.  
  443. <div id="posts">
  444.  
  445.  
  446.  
  447.  
  448. {block:Quote}
  449.  
  450.  
  451. <div id="titlequote">β€œ{Quote}”</div>
  452. {block:Source}<div id="source">&mdash; {Source}</div>{/block:Source}
  453. {/block:Quote}
  454.  
  455.  
  456.  
  457. {block:Text}
  458.  
  459. {block:Title}
  460. <div id="title">{Title}</div>{/block:Title}
  461. {Body}
  462. {/block:Text}
  463.  
  464. {block:Link}
  465. <div id="title"><a href="{URL}">{Name}</a></div>{block:Description}{Description}{/block:Description}
  466. {/block:Link}
  467.  
  468. {block:Chat}
  469. {block:Title}
  470. <h1>{Title}</h1>
  471. {/block:Title}
  472. <div class="chat">
  473. <ol>{block:Lines}
  474. <li class="line {Alt}">
  475. {block:Label}
  476. <span class="label">
  477. {Label}</span>
  478. {/block:Label}{Line}</li>
  479. {/block:Lines}
  480. </ol></div>
  481. {/block:Chat}
  482.  
  483. {block:Photo}
  484. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}
  485. {/block:Photo}
  486.  
  487. {block:Photoset}
  488. <div class="photo-slideshow" id="photoset_{PostID}" data-layout="{PhotosetLayout}">{block:Photos}<div class="photo-data"><div class="pxu-photo"><img src="{PhotoURL-500}" width="{PhotoWidth-500}" height="{PhotoHeight-500}" data-highres="{PhotoURL-HighRes}" data-width="{PhotoWidth-HighRes}" data-height="{PhotoHeight-HighRes}"></div><a class="tumblr-box" rel="post-{PostID}" href="{PhotoURL-HighRes}"></a></div>{/block:Photos}</div>
  489. {/block:Photoset}
  490.  
  491. {block:Video}
  492. {Video-500}
  493. {/block:Video}
  494.  
  495. {block:Audio}
  496. <div class="player">{AudioPlayerWhite}</div>
  497. <div class="audioinfo">
  498. {block:TrackName}{TrackName}{/block:TrackName}{block:Artist}<br>{Artist}{/block:Artist}
  499. </div>
  500. {/block:Audio}
  501.  
  502. {block:Answer}
  503. <div class="q">
  504. <div class="as">{Asker} said: </div>
  505. {Question}</div>
  506. <div class="a">{Answer}</div>
  507. {/block:Answer}
  508.  
  509. {block:Caption}<div class="caption">{Caption}</div>{/block:Caption}
  510.  
  511. {block:Date}
  512. <div id="permalink">
  513. <a href="{Permalink}" ><b>{dayofweek}</b></a>{block:NoteCount}<a href="{Permalink}"> <b>{NoteCount}</b></a>{/block:NoteCount} <a href="{ReblogURL}" target="_blank" class="details"><b>reblog</b></a>
  514. {block:RebloggedFrom}<a href="{ReblogParentURL}" title="{ReblogParentName}"></a>{block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}"></a>{/block:ContentSource}{/block:RebloggedFrom}
  515. {block:HasTags}<div class="tags">{block:Tags}<a href="{TagUrl}">#{Tag}</a>{/block:Tags}</div>{/block:HasTags}
  516. </div>
  517. {/block:Date}
  518.  
  519.  
  520.  
  521. </div>
  522.  
  523.  
  524. {block:PostNotes}
  525. <div class="pagenotes">
  526. {PostNotes}
  527. </div>
  528. {/block:PostNotes}
  529.  
  530. {block:Pagination}
  531. <div id="pagination">
  532. {block:JumpPagination length="5"}
  533. {block:CurrentPage}
  534. <span class="current_page">{PageNumber}</span>
  535. {/block:CurrentPage}
  536. {block:JumpPage}
  537. <a class="jump_page" href="{URL}">{PageNumber}</a>
  538. {/block:JumpPage}
  539. {/block:JumpPagination}
  540. </div>
  541. {/block:Pagination}
  542.  
  543.  
  544. {/block:Posts}
  545.  
  546.  
  547.  
  548.  
  549. </div>
  550.  
  551. </div>
  552.  
  553.  
  554. {block:ContentSource}
  555. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  556. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  557. {/block:SourceLogo}
  558. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  559. {/block:ContentSource}
  560.  
  561. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement