Advertisement
Guest User

kill me

a guest
Mar 26th, 2019
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 11.18 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. <!--- Kaguya Luna theme by Celes
  9. dialgas.tumblr.com --->
  10.  
  11. <meta name="color:background" content="#ffffff"/>
  12. <meta name="color:posts background" content="#ffffff"/>
  13. <meta name="color:bold" content="#ab3421"/>
  14. <meta name="color:text" content="#2f2c52"/>
  15. <meta name="color:link" content="#ab3421"/>
  16. <meta name="color:link hover" content="#aaaaaa"/>
  17. <meta name="color:accent 1" content="#f1b100"/>
  18. <meta name="color:accent 2" content="#149dff"/>
  19. <meta name="color:accent 3" content="#cc1919"/>
  20. <meta name="color:link background" content="#9086fe"/>
  21. <meta name="color:navigation" content="#ffffff"/>
  22. <meta name="color:borders" content="#e0def8"/>
  23. <meta name="color:info background" content="#e0def8"/>
  24. <meta name="color:info" content="#2f2c52"/>
  25.  
  26. <meta name="image:background" content="" />
  27. <meta name="image:post wrap" content="http://24.media.tumblr.com/tumblr_lsdjv9k5E21r2gm7fo4_400.jpg"/>
  28. <meta name="image:sidebar" content="https://i.ibb.co/GpdV7fZ/wallpaper1-1080-1920.png"/>
  29.  
  30. <meta name="text:link 1 title" content="link one"/>
  31. <meta name="text:link 1 url" content="/"/>
  32. <meta name="text:link 2 title" content="link two"/>
  33. <meta name="text:link 2 url" content="/"/>
  34. <meta name="text:link 3 title" content="link three"/>
  35. <meta name="text:link 3 url" content="/"/>
  36. <meta name="text:link 4 title" content="link four"/>
  37. <meta name="text:link 4 url" content="/"/>
  38. <meta name="text:link 5 title" content="link five"/>
  39. <meta name="text:link 5 url" content="/"/>
  40. <meta name="text:link 6 title" content="link six"/>
  41. <meta name="text:link 6 url" content="/"/>
  42.  
  43. <link href="https://fonts.googleapis.com/css?family=Roboto+Mono" rel="stylesheet">
  44.  
  45. <script src="//ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js"></script>
  46.  
  47. <script src="https://unpkg.com/masonry-layout@4/dist/masonry.pkgd.min.js"></script>
  48. <script src="https://unpkg.com/imagesloaded@4/imagesloaded.pkgd.min.js"></script>
  49.  
  50. <script type="text/javascript" charset="utf-8">$(document).ready(function(){
  51. var $grid = $("#entries").masonry({
  52. itemSelector: ".post",
  53. initLayout: 1
  54. });
  55. $grid.on("layoutComplete", function(o, r) {
  56. console.log(r.length)
  57. }), $grid.masonry({
  58. fitWidth: true,
  59. horizontalOrder: 1,
  60. gutter: 10,
  61. resize: 1
  62. }), $grid.imagesLoaded().progress(function() {
  63. $grid.masonry("layout")
  64. });
  65. });</script>
  66.  
  67. <style type="text/css">
  68. ::-webkit-scrollbar-track {background-color:{color:link}; border: 3px solid {color:background};}
  69. ::-webkit-scrollbar-thumb {background-color:{color:background}; border: 1px solid {color:link};}
  70. ::-webkit-scrollbar {width:7px;height:5px;}
  71.  
  72. body {
  73. background:{color:background} url({image:background}) fixed;
  74. margin:0px;
  75. color:{color:text};
  76. font-family: 'Roboto Mono', monospace;
  77. font-size:11px;
  78. line-height:130%;
  79. word-wrap:break-word;
  80. }
  81.  
  82. a {
  83. color:{color:link};
  84. text-decoration: none;
  85. -webkit-transition: opacity 0.5s linear;
  86. -webkit-transition: all 0.5s ease-out;
  87. -moz-transition: all 0.5s ease-out;
  88. transition: all 0.5s ease-out;
  89. }
  90.  
  91. a:hover {
  92. color: {color:link hover};
  93. -webkit-transition: opacity 0.5s linear;
  94. -webkit-transition: all 0.5s ease-out;
  95. -moz-transition: all 0.5s ease-out;
  96. transition: all 0.5s ease-out;
  97. }
  98.  
  99. b {
  100. color: {color:bold};
  101. }
  102.  
  103. img {
  104. border:none;
  105. }
  106.  
  107. blockquote {
  108. padding-left:5px;
  109. border-left:2px solid {color:borders};
  110. }
  111.  
  112. blockquote img {max-width: 100%; height:auto;};
  113.  
  114. h1 {
  115. font-size:18px;
  116. text-transform:uppercase;
  117. font-weight:bold;
  118. }
  119.  
  120. h2 {
  121. font-size: 16px;
  122. font-weight: bold;
  123. font-style: none;
  124. }
  125.  
  126.  
  127. #lefty {
  128. position: fixed;
  129. height: 100%;
  130. width: 50px;
  131. background:linear-gradient(180deg, {color:accent 1} 0%, {color:accent 2} 50%, {color:accent 3} 100%);
  132. top: 0px;
  133. left: 0px;
  134. z-index: -1;
  135. }
  136.  
  137. #left2 {
  138. position: fixed;
  139. z-index: -2;
  140. height: 100%;
  141. width: 640px;
  142. background-image: url({image:post wrap});
  143. top: 0px;
  144. left: 50px;
  145. }
  146.  
  147. #mainlinks {
  148. top:150px;
  149. left: 1010px;
  150. position:fixed;
  151. color: {color:link background};
  152. margin-bottom: 5px;
  153. }
  154.  
  155. #mainlinks a {
  156. padding: 5px;
  157. width:18px;
  158. height:18px;
  159. z-index:999;
  160. line-height:20px;
  161. font-size:20px;
  162. text-align:left;
  163. font-family:arial;
  164. display:block;
  165. overflow:hidden;
  166. -webkit-transition: opacity 0.5s linear;
  167. -webkit-transition: all 0.5s ease-out;
  168. -moz-transition: all 0.5s ease-out;
  169. transition: all 0.5s ease-out;
  170. }
  171.  
  172. #mainlinks a:nth-of-type(1n+0) {color: {color:accent 1};}
  173. #mainlinks a:nth-of-type(2n+0) {color: {color:accent 2};}
  174. #mainlinks a:nth-of-type(3n+0) {color: {color:accent 3};}
  175.  
  176. #mainlinks span {
  177. text-transform:uppercase;
  178. letter-spacing:2px;
  179. font-family: 'Roboto Mono', monospace;
  180. font-size:10px;
  181. vertical-align:middle;
  182. }
  183.  
  184. #mainlinks a:hover {
  185. width:120px;
  186. -webkit-transition: opacity 0.5s linear;
  187. -webkit-transition: all 0.5s ease-out;
  188. -moz-transition: all 0.5s ease-out;
  189. transition: all 0.5s ease-out;
  190. }
  191.  
  192. #entries {
  193. width:700px;
  194. margin-left:75px;
  195. margin-top:40px;
  196. }
  197.  
  198. .post {
  199. width:300px;
  200. padding: 10px;
  201. margin: 10px;
  202. float:left;
  203. background-color: {color:posts background};
  204. border: 5px solid {color:borders};
  205. -webkit-transition: opacity 0.5s linear;
  206. -webkit-transition: all 0.5s ease-out;
  207. -moz-transition: all 0.5s ease-out;
  208. transition: all 0.5s ease-out;
  209. }
  210.  
  211. .clearfix:before,.clearfix:after{content:'';display:table;}
  212. .clearfix:after{clear:both;}
  213. .clearfix{zoom:1;}
  214.  
  215. #sidebar {
  216. width:250px;
  217. position:fixed;
  218. margin-left:750px;
  219. margin-top:100px;
  220. }
  221.  
  222. #title {
  223. font-size:15px;
  224. text-align:center;
  225. margin-bottom:5px;
  226. }
  227.  
  228. #sidebarimage {
  229. width 250px;
  230. }
  231.  
  232. #sidebarimage img {
  233. margin-bottom: 10px;
  234. width:250px;
  235. }
  236.  
  237. #description {
  238. padding:10px 5px;
  239. line-height: 130%;
  240. text-align:center;
  241. background-color: {color:posts background};
  242. border-top:5px solid {color:borders};
  243. border-bottom:5px solid {color:borders};
  244. }
  245.  
  246. #extra {
  247. margin-top: 10px;
  248. }
  249.  
  250. #extra a{
  251. display: inline-block;
  252. background-color: {color:link background};
  253. padding: 5px;
  254. width: 111px;
  255. font-size: 10px;
  256. text-align: center;
  257. margin-bottom: 5px;
  258. letter-spacing: 2px;
  259. text-transform: uppercase;
  260. color: {color:navigation};
  261. }
  262.  
  263. #extra a:hover {
  264. background-color: transparent;
  265. -webkit-transition: opacity 0.5s linear;
  266. -webkit-transition: all 0.5s ease-out;
  267. -moz-transition: all 0.5s ease-out;
  268. transition: all 0.5s ease-out;
  269. }
  270.  
  271. #pagination {
  272. font-size:11px;
  273. text-align:center;
  274. margin-top: 10px;
  275. }
  276.  
  277. #info {
  278. text-align:center;
  279. color: {color:info};
  280. font-family:'calibri', sans-serif;
  281. text-transform: uppercase;
  282. font-size: 11px;
  283. line-height:13px;
  284. height:13px;
  285. letter-spacing: 2px;
  286. margin-top:10px;
  287. background-color: {color:info background};
  288. padding: 5px;
  289. -webkit-transition: opacity 0.5s linear;
  290. -webkit-transition: all 0.5s ease-out;
  291. -moz-transition: all 0.5s ease-out;
  292. transition: all 0.5s ease-out;
  293. }
  294.  
  295. .tags {
  296. opacity:0;
  297. margin-top:2px;
  298. font-size:12px;
  299. text-transform:none;
  300. letter-spacing:1px;
  301. }
  302.  
  303. .tags:hover {
  304. opacity:1;
  305. -webkit-transition: opacity 0.5s linear;
  306. -webkit-transition: all 0.5s ease-out;
  307. -moz-transition: all 0.5s ease-out;
  308. transition: all 0.5s ease-out;
  309. }
  310.  
  311. #info:hover {
  312. height:30px;
  313. -webkit-transition: opacity 0.5s linear;
  314. -webkit-transition: all 0.5s ease-out;
  315. -moz-transition: all 0.5s ease-out;
  316. transition: all 0.5s ease-out;
  317. }
  318.  
  319.  
  320. {CustomCSS}</style></head><body>
  321.  
  322.  
  323. <div id="lefty"></div>
  324. <div id="left2"></div>
  325. <div id="mainlinks">
  326. <a href="/">✖ <span>Refresh</span></a>
  327. <a href="/ask">✖ <span>Message</span></a>
  328. {block:SubmissionsEnabled} <a href="/submit">✖ <span>Submit</span></a>{/block:SubmissionsEnabled}
  329. <a href="/archive">✖ <span>History</span></a>
  330. <a href="https://dialgas.tumblr.com">✖ <span>Credit</span></a>
  331. </div>
  332.  
  333. <div id="sidebar">
  334.  
  335. <div id="sidebarimage"><img src="{image:sidebar}"></div>
  336. <div id="description">{Description}</div>
  337. <div id="extra">
  338. {block:ifoneextralink} <a href="{text:link 1 url}">{text:link 1 title}</a>{/block:ifoneextralink}
  339. {block:iftwoextralinks} <a href="{text:link 2 url}">{text:link 2 title}</a>{/block:iftwoextralinks}
  340. {block:ifthreeextralinks} <a href="{text:link 3 url}">{text:link 3 title}</a>{/block:ifthreeextralinks}
  341. {block:iffourextralinks} <a href="{text:link 4 url}">{text:link 4 title}</a>{/block:iffourextralinks}
  342. {block:iffiveextralinks} <a href="{text:link 5 url}">{text:link 5 title}</a>{/block:iffiveextralinks}
  343. {block:ifsixextralinks} <a href="{text:link 6 url}">{text:link 6 title}</a>{/block:ifsixextralinks}
  344. </div>
  345.  
  346. <div id="pagination">
  347. {block:Pagination}{block:PreviousPage}<a href="{PreviousPage}">«</a>{/block:PreviousPage}
  348. {CurrentPage} of {TotalPages}
  349. {block:NextPage}<a href="{NextPage}">»</a>{/block:NextPage}{/block:Pagination}
  350. </div>
  351.  
  352. </div>
  353.  
  354. <div id="entries">
  355. {block:Posts}
  356. <div class="post">
  357.  
  358. {block:Text}<h1>{block:Title}{Title}{/block:Title}</h1>{Body}{/block:Text}
  359.  
  360. {block:Photo}{LinkOpenTag}<img src="{PhotoURL-HighRes}" style="width:300px;">{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  361.  
  362. {block:Photoset}{Photoset}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  363.  
  364. {block:Quote}<h2>{Quote}</h2><br><center>{block:Source} —{Source}{/block:Source}</center>{/block:Quote}
  365.  
  366. {block:Link}<h1><a href="{URL}" {Target}>{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  367.  
  368. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label}</b>{/block:Label} {Line}<br>{/block:Lines}{/block:Chat}
  369.  
  370. {block:Audio}{AudioPlayerWhite}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  371.  
  372. {block:Video}{Video-500}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  373.  
  374. {block:Answer}
  375. <table style="border-bottom:1px solid {color:borders};padding-bottom:5px;margin-bottom:5px;">
  376. <tr>
  377. <td style="vertical-align:top;padding-right:10px;"><img src="{AskerPortraitURL-24}" style="border:5px solid {color:bold};"></td>
  378. <td style="vertical-align:top;"><strong>{Asker} asked:</strong> {Question}</td>
  379. </tr>
  380. </table>
  381. {Answer}
  382. {/block:Answer}
  383.  
  384. <div id="info">
  385. {block:Date}posted {TimeAgo}{/block:Date} with <a href="{Permalink}">
  386. {NoteCountWithLabel}</a>
  387. <div class="tags">{block:HasTags}{block:Tags} #<a href="{TagURL}">{Tag}</a>{/block:Tags}{/block:HasTags}</div></div>
  388.  
  389. </div>
  390. {block:PostNotes}{PostNotes}{/block:PostNotes}
  391. {/block:Posts}</div>
  392.  
  393. </body></html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement