Advertisement
officialdogblog

Not So Plain Charlie v2

Oct 29th, 2013
575
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.21 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>
  4.  
  5. {block:IfRainbowLinks}
  6. <script type='text/javascript'>
  7. //<![CDATA[
  8. var rate = 50;
  9. if (document.getElementById)
  10. window.onerror=new Function("return true")
  11.  
  12. var objActive; // The object which event occured in
  13. var act = 0; // Flag during the action
  14. var elmH = 0; // Hue
  15. var elmS = 128; // Saturation
  16. var elmV = 255; // Value
  17. var clrOrg; // A color before the change
  18. var TimerID; // Timer ID
  19. if (document.all) {
  20. document.onmouseover = doRainbowAnchor;
  21. document.onmouseout = stopRainbowAnchor;
  22. }
  23. else if (document.getElementById) {
  24. document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT);
  25. document.onmouseover = Mozilla_doRainbowAnchor;
  26. document.onmouseout = Mozilla_stopRainbowAnchor;
  27. }
  28. function doRainbow(obj)
  29. {
  30. if (act == 0) {
  31. act = 1;
  32. if (obj)
  33. objActive = obj;
  34. else
  35. objActive = event.srcElement;
  36. clrOrg = objActive.style.color;
  37. TimerID = setInterval("ChangeColor()",100);
  38. }
  39. }
  40. function stopRainbow()
  41. {
  42. if (act) {
  43. objActive.style.color = clrOrg;
  44. clearInterval(TimerID);
  45. act = 0;
  46. }
  47. }
  48. function doRainbowAnchor()
  49. {
  50. if (act == 0) {
  51. var obj = event.srcElement;
  52. while (obj.tagName != 'A' && obj.tagName != 'BODY') {
  53. obj = obj.parentElement;
  54. if (obj.tagName == 'A' || obj.tagName == 'BODY')
  55. break;
  56. }
  57. if (obj.tagName == 'A' && obj.href != '') {
  58. objActive = obj;
  59. act = 1;
  60. clrOrg = objActive.style.color;
  61. TimerID = setInterval("ChangeColor()",100);
  62. }
  63. }
  64. }
  65. function stopRainbowAnchor()
  66. {
  67. if (act) {
  68. if (objActive.tagName == 'A') {
  69. objActive.style.color = clrOrg;
  70. clearInterval(TimerID);
  71. act = 0;
  72. }
  73. }
  74. }
  75. function Mozilla_doRainbowAnchor(e)
  76. {
  77. if (act == 0) {
  78. obj = e.target;
  79. while (obj.nodeName != 'A' && obj.nodeName != 'BODY') {
  80. obj = obj.parentNode;
  81. if (obj.nodeName == 'A' || obj.nodeName == 'BODY')
  82. break;
  83. }
  84. if (obj.nodeName == 'A' && obj.href != '') {
  85. objActive = obj;
  86. act = 1;
  87. clrOrg = obj.style.color;
  88. TimerID = setInterval("ChangeColor()",100);
  89. }
  90. }
  91. }
  92. function Mozilla_stopRainbowAnchor(e)
  93. {
  94. if (act) {
  95. if (objActive.nodeName == 'A') {
  96. objActive.style.color = clrOrg;
  97. clearInterval(TimerID);
  98. act = 0;
  99. }
  100. }
  101. }
  102. function ChangeColor()
  103. {
  104. objActive.style.color = makeColor();
  105. }
  106. function makeColor()
  107. {
  108. // Don't you think Color Gamut to look like Rainbow?
  109. // HSVtoRGB
  110. if (elmS == 0) {
  111. elmR = elmV; elmG = elmV; elmB = elmV;
  112. }
  113. else {
  114. t1 = elmV;
  115. t2 = (255 - elmS) * elmV / 255;
  116. t3 = elmH % 60;
  117. t3 = (t1 - t2) * t3 / 60;
  118. if (elmH < 60) {
  119. elmR = t1; elmB = t2; elmG = t2 + t3;
  120. }
  121. else if (elmH < 120) {
  122. elmG = t1; elmB = t2; elmR = t1 - t3;
  123. }
  124. else if (elmH < 180) {
  125. elmG = t1; elmR = t2; elmB = t2 + t3;
  126. }
  127. else if (elmH < 240) {
  128. elmB = t1; elmR = t2; elmG = t1 - t3;
  129. }
  130. else if (elmH < 300) {
  131. elmB = t1; elmG = t2; elmR = t2 + t3;
  132. }
  133. else if (elmH < 360) {
  134. elmR = t1; elmG = t2; elmB = t1 - t3;
  135. }
  136. else {
  137. elmR = 0; elmG = 0; elmB = 0;
  138. }
  139. }
  140. elmR = Math.floor(elmR).toString(16);
  141. elmG = Math.floor(elmG).toString(16);
  142. elmB = Math.floor(elmB).toString(16);
  143. if (elmR.length == 1) elmR = "0" + elmR;
  144. if (elmG.length == 1) elmG = "0" + elmG;
  145. if (elmB.length == 1) elmB = "0" + elmB
  146. elmH = elmH + rate;
  147. if (elmH >= 360)
  148. elmH = 0;
  149. return '#' + elmR + elmG + elmB;
  150. }
  151. //]]>
  152. </script>
  153. {/block:IfRainbowLinks}
  154.  
  155. {block:IfEndlessScrolling}<script type="text/javascript" src="http://codysherman.com/tools/infinite-scrolling/code"></script>{/block:IfEndlessScrolling}
  156.  
  157. <meta name="color:Background" content="#000000" />
  158. <meta name="color:Links" content="#FFFFFF" />
  159. <meta name="color:Links Hover" content="#000000" />
  160. <meta name="color:Text" content="#999999" />
  161. <meta name="text:Post Opacity" content=".5" >
  162. <meta name="text:Posts Position" content="200" />
  163. <meta name="text:Sidebar Position" content="0" />
  164. <meta name="text:Sidebar Position Top" content="200">
  165. <meta name="text:Links Url" content="/links" />
  166. <meta name="if:100" content="0" />
  167. <meta name="if:250" content="1" />
  168. <meta name="if:400" content="0" />
  169. <meta name="if:500" content="0" />
  170. <meta name="if:Endless Scrolling" content="0" />
  171. <meta name="if:Fade Bottom" content="1" />
  172. <meta name="if:Fade Top" content="1" />
  173. <meta name="if:Greyscale Images" content="1" />
  174. <meta name="if:Notes and Caption on Hover" content="1" />
  175. <meta name="if:Posts Background" content="0" />
  176. <meta name="if:Rainbow Links" content="0" />
  177. <meta name="if:Rounded Corners" content="0" />
  178. <meta name="if:Show Caption Main Page" content="0" />
  179.  
  180. <title>{Title}</title>
  181. <link rel="shortcut icon" href="{PortraitURL-16}" />
  182.  
  183. </head>
  184.  
  185. <style type="text/css">
  186.  
  187. ::-webkit-scrollbar {
  188. width: 6px;
  189. background-color: {color:Background};
  190. }
  191.  
  192. ::-webkit-scrollbar-thumb {
  193. background-color: {color:Links};
  194. }
  195.  
  196. {block:IfGreyscaleImages}
  197. body img {
  198. filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
  199. filter: gray; /* IE6-9 */
  200. -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  201. -webkit-transition: all .8s ease; /* Fade to color for Chrome and Safari */
  202. -webkit-backface-visibility: hidden; /* Fix for transition flickering */
  203. }
  204.  
  205. body img:hover {
  206. filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
  207. -webkit-filter: grayscale(0%);
  208. }
  209.  
  210. #bottomcorner img {
  211. filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
  212. -webkit-filter: grayscale(0%);
  213. }
  214.  
  215. #corner img {
  216. filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
  217. -webkit-filter: grayscale(0%);
  218. }
  219.  
  220. .sidebar img {
  221. filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
  222. -webkit-filter: grayscale(0%);
  223. }
  224.  
  225. .html_photoset {
  226. filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale"); /* Firefox 10+, Firefox on Android */
  227. filter: gray; /* IE6-9 */
  228. -webkit-filter: grayscale(100%); /* Chrome 19+, Safari 6+, Safari 6+ iOS */
  229. -webkit-transition: all .8s ease; /* Fade to color for Chrome and Safari */
  230. -webkit-backface-visibility: hidden; /* Fix for transition flickering */
  231. }
  232. .html_photoset:hover {
  233. filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0\'/></filter></svg>#grayscale");
  234. -webkit-filter: grayscale(0%);
  235. }
  236. {/block:IfGreyscaleImages}
  237.  
  238. body {
  239. text-transform: lowercase;
  240. font-size: 14px;
  241. font-family: consolas;
  242. background: {color:Background};
  243. color: {color:Text};
  244. }
  245.  
  246. body a {
  247. text-decoration: none;
  248. color: {color:Links};
  249. {block:IfNotRainbowLinks}
  250. -o-transition:.5s;
  251. -ms-transition:.5s;
  252. -moz-transition:.5s;
  253. -webkit-transition:.5s;
  254. transition:.5s;
  255. {/block:IfNotRainbowLinks}
  256. }
  257.  
  258. {block:IfNotRainbowLinks}
  259. body a:hover {
  260. color: {color:Links Hover};
  261. }
  262. {/block:IfNotRainbowLinks}
  263.  
  264. .posts {
  265. margin-bottom: 200px;
  266. margin-left: {text:Posts Position}px;
  267. }
  268.  
  269. #content {
  270. width: 510px;
  271. word-wrap: break-word;
  272. text-align: justify;
  273. margin-top: 90px;
  274. padding-top: 15px;
  275. padding-left: 10px;
  276. padding-right: 10px;
  277. padding-bottom: 10px;
  278. {block:IfPostsBackground}background: rgba(255, 255, 255, 0.1);{/block:IfPostsBackground}
  279. {block:IfRoundedCorners}
  280. -webkit-border-radius: 10px;
  281. -moz-border-radius: 10px;
  282. border-radius: 10px;
  283. {/block:IfRoundedCorners}
  284. }
  285.  
  286. #content img {
  287. max-width: 100%;
  288. {block:IfRoundedCorners}
  289. -webkit-border-radius: 10px;
  290. -moz-border-radius: 10px;
  291. border-radius: 10px;"
  292. {/block:IfRoundedCorners}
  293. }
  294.  
  295. #contentsmall {
  296. font-size: 12px;
  297. font-weight: 100;
  298. {block:If100}width: 110px;{/block:If100}
  299. {block:If250}width: 260px;{/block:If250}
  300. {block:If400}width: 410px;{/block:If400}
  301. {block:If500}width: 510px;{/block:If500}
  302. word-wrap: break-word;
  303. text-align: justify;
  304. margin-top: 90px;
  305. padding-top: 15px;
  306. padding-left: 10px;
  307. padding-right: 10px;
  308. padding-bottom: 10px;
  309. {block:IfPostsBackground}background: rgba(255, 255, 255, {text:Post Opacity});{/block:IfPostsBackground}
  310. {block:IfRoundedCorners}
  311. -webkit-border-radius: 10px;
  312. -moz-border-radius: 10px;
  313. border-radius: 10px;
  314. {/block:IfRoundedCorners}
  315. }
  316.  
  317. #contentsmall img {
  318. max-width: 100%;
  319. {block:IfRoundedCorners}
  320. -webkit-border-radius: 10px;
  321. -moz-border-radius: 10px;
  322. border-radius: 10px;
  323. {/block:IfRoundedCorners}
  324. }
  325.  
  326. #notes {
  327. {block:IfNotNotesAndCaptionOnHover}
  328. opacity: 1;
  329. {/block:IfNotNotesAndCaptionOnHover}
  330. {block:IfNotesAndCaptionOnHover}
  331. opacity: 0;
  332. -o-transition:.5s;
  333. -ms-transition:.5s;
  334. -moz-transition:.5s;
  335. -webkit-transition:.5s;
  336. transition:.5s;
  337. {/block:IfNotesAndCaptionOnHover}
  338. }
  339.  
  340. {block:IfNotesAndCaptionOnHover}
  341. #contentsmall:hover #notes {
  342. opacity: 1;
  343. }
  344.  
  345. #content:hover #notes {
  346. opacity: 1;
  347. }
  348. {/block:IfNotesAndCaptionOnHover}
  349.  
  350. .sidebar {
  351. position: fixed;
  352. width: 200px;
  353. top: {text:Sidebar Position Top}px;
  354. left: {text:Sidebar Position}px;
  355. z-index: 999999999999999;
  356. }
  357.  
  358. #sidebar {
  359. margin-bottom: 10px;
  360. text-align: justify;
  361. word-wrap: break-word;
  362. padding: 5px;
  363. {block:IfPostsBackground}background: rgba(255, 255, 255, {text:Post Opacity});{/block:IfPostsBackground}
  364. {block:IfRoundedCorners}
  365. -webkit-border-radius: 10px;
  366. -moz-border-radius: 10px;
  367. border-radius: 10px;
  368. {/block:IfRoundedCorners}
  369. }
  370.  
  371. {block:IfFadeTop}
  372. #topfade {
  373. z-index: 2;
  374. position: fixed;
  375. right:-10px;
  376. top: -10px;
  377. height: 10px;
  378. width: 100%;
  379. box-shadow: 0px 100px 200px 200px {color:Background};
  380. -moz-box-shadow: 0px 50px 200px 200px {color:Background};
  381. -webkit-box-shadow: 0px 0px 100px 100px {color:Background};
  382. }
  383. {/block:IfFadeTop}
  384.  
  385. {block:IfFadeBottom}
  386. #fade {
  387. z-index: 2;
  388. position: fixed;
  389. left: -10px;
  390. bottom: -10px;
  391. height: 10px;
  392. width: 100%;
  393. box-shadow: 0px 50px 200px 200px {color:Background};
  394. -moz-box-shadow: 0px 50px 200px 200px {color:Background};
  395. -webkit-box-shadow: 0px 50px 200px 200px {color:Background};
  396. }
  397. {/block:IfFadeBottom}
  398.  
  399. .pagecontainer {
  400. margin-top: -15px;
  401. width: 190px;
  402. margin-bottom: -5px;
  403. }
  404.  
  405. #pagination {
  406. margin-top: 10px;
  407. font-size: 10px;
  408. padding-top: 9px;
  409. padding-right: 12px;
  410. padding-left: 10px;
  411. padding-bottom: 9px;
  412. }
  413.  
  414. #left{float:left;margin-top: -10px;}
  415. #right{float:right;margin-top: -10px;}
  416.  
  417. #center{margin:0 auto; {block:IfNotEndlessScrolling}width: 120px;{/block:IfNotEndlessScrolling}{block:IfEndlessScrolling}width: 190px;{/block:IfEndlessScrolling}}
  418.  
  419. .title {
  420. font-size: 20px;
  421. font-weight: 100;
  422. font-family: courier;
  423. }
  424.  
  425. .quote.short {
  426. font-size: 20px;
  427. font-weight: 100;
  428. font-family: courier;
  429. }
  430. .quote.medium {
  431. font-size: 17px;
  432. font-weight: 100;
  433. font-family: courier;
  434. }
  435. .quote.long {
  436. font-size: 14px;
  437. font-weight: 100;
  438. font-family: courier;
  439. }
  440.  
  441. .image {
  442. position: relative;
  443. width: 100%; /* for IE 6 */
  444. }
  445.  
  446. h1 {
  447. background-color: #fff;
  448. display: none;
  449. position: absolute;
  450. top: 40%;
  451. {block:If100}width: 100px;{/block:If100}
  452. {block:If250}width: 250px;{/block:If250}
  453. {block:If400}width: 400px;{/block:If400}
  454. {block:If500}width: 500px;{/block:If500}
  455. font-weight: normal;
  456. color: #000000;
  457. padding-top 10px;
  458. padding-bottom: 10px;
  459. font-size: 12px;
  460. }
  461.  
  462. .image:hover h1 {
  463. display: block;
  464. }
  465.  
  466. h2 {
  467. background-color: #fff;
  468. display: none;
  469. position: absolute;
  470. top: 40%;
  471. width: 500px;
  472. font-weight: normal;
  473. color: #000000;
  474. padding-top 10px;
  475. padding-bottom: 10px;
  476. font-size: 12px;
  477. }
  478.  
  479. .image:hover h2 {
  480. display: block;
  481. }
  482.  
  483. ol.notes {
  484. list-style-type: none;
  485. margin-left: -35px;
  486. }
  487.  
  488. ol.notes img {
  489. border-radius: 8px;
  490. -webkit-border-radius: 8px;
  491. -moz-border-radius: 8px;
  492. }
  493.  
  494. </style>
  495. <body>
  496.  
  497. <div class="sidebar">
  498.  
  499. <div id="sidebar">
  500. <div style="margin-left:2px;">
  501. {block:Description}{Description}{/block:Description}
  502. </div>
  503. <div class="pagecontainer">
  504. {block:IfNotEndlessScrolling}
  505. {block:Pagination}
  506. {block:PreviousPage}<div id="left"><div id="pagination"><a href="{PreviousPage}">←</a></div></div>{/block:PreviousPage}
  507. {block:NextPage}<div id="right"><div id="pagination"><a href="{NextPage}">→</a></div></div>{/block:NextPage}
  508. {/block:Pagination}
  509. {/block:IfNotEndlessScrolling}
  510. <div id="center"><div id="pagination"><center><a href="/">home</a> <a href="{text:Links URL}">links</a> <a href="http://gay8.tumblr.com/">credit</a></center></div></div>
  511. </div>
  512. </div>
  513. </div>
  514.  
  515. {block:IfFadeTop}
  516. <div id="topfade"></div>
  517. {/block:IfFadeTop}
  518.  
  519. <div class="posts">
  520.  
  521. <br /><br /><br /><br />
  522.  
  523. {block:IfEndlessScrolling}<div class = "autopagerize_page_element" >{/block:IfEndlessScrolling}
  524.  
  525. {block:Posts}
  526.  
  527. {block:ContentSource}
  528. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  529.  
  530. {block:Text}
  531. {block:IndexPage}
  532. <div id="contentsmall">
  533. <div style="margin-top: -5px;">
  534. {block:Title}<div style="margin-bottom: 30px;"><div class="title">{Title}</div></div>{/block:Title}
  535. <div style="margin-top: -20px;">
  536. {Body}
  537. </div>
  538. </div>
  539. <br />
  540. <div id="notes">
  541. <a href="{Permalink}">
  542. <span style="float:left;">{TimeAgo}</span>
  543. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  544. <div style="clear:both;"></div>
  545. </a></div>
  546. </div>
  547. {/block:IndexPage}
  548. {block:PermalinkPage}
  549. <div id="content">
  550. <div style="margin-top: -5px;">
  551. {block:Title}<div style="margin-bottom: 30px;"><div class="title">{Title}</div></div>{/block:Title}
  552. <div style="margin-top: -20px;">
  553. {Body}
  554. </div>
  555. </div>
  556. <br />
  557. {block:HasTags}
  558. {block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}
  559. <br />{/block:HasTags}
  560. <span style="float:left;">{TimeAgo}</span>
  561. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  562. <div style="clear:both;"></div>
  563. </div>
  564. {/block:PermalinkPage}
  565. {/block:Text}
  566.  
  567. {block:Photo}
  568. {block:IndexPage}
  569. <div id="contentsmall">
  570. <center>
  571. {block:If100}<img src="{PhotoURL-100}" />{/block:If100}
  572. {block:If250}<img src="{PhotoURL-250}" />{/block:If250}
  573. {block:If400}<img src="{PhotoURL-400}" />{/block:If400}
  574. {block:If500}<img src="{PhotoURL-500}" />{/block:If500}
  575. </center>
  576. <div id="notes">
  577. {block:IfNotShowCaptionMainPage}
  578. {block:PermalinkPage}
  579. {block:Caption}{Caption}{/block:Caption}
  580. {/block:PermalinkPage}
  581. {/block:IfNotShowCaptionMainPage}
  582. {block:IfShowCaptionMainPage}
  583. {block:Caption}{Caption}{/block:Caption}
  584. {/block:IfShowCaptionMainPage}
  585. <br />
  586. <a href="{Permalink}">
  587. <span style="float:left;">{TimeAgo}</span>
  588. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  589. <div style="clear:both;"></div>
  590. </a></div>
  591. </div>
  592. {/block:IndexPage}
  593. {block:PermalinkPage}
  594. <div id="content">
  595. <center>
  596. <img src="{PhotoURL-500}" />
  597. </center>
  598. {block:Caption}{Caption}{/block:Caption}
  599. <br />
  600. {block:HasTags}
  601. {block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}
  602. <br />{/block:HasTags}
  603. <span style="float:left;">{TimeAgo}</span>
  604. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  605. <div style="clear:both;"></div>
  606. </div>
  607. {/block:PermalinkPage}
  608. {/block:Photo}
  609.  
  610. {block:Photoset}
  611. {block:IndexPage}
  612. <div id="contentsmall">
  613. <center>
  614. {block:If100}{Photoset-100}{/block:If100}
  615. {block:If250}{Photoset-250}{/block:If250}
  616. {block:If400}{Photoset-400}{/block:If400}
  617. {block:If500}{Photoset-500}{/block:If500}
  618. </center>
  619. <div id="notes">
  620. {block:IfNotShowCaptionMainPage}
  621. {block:PermalinkPage}
  622. {block:Caption}{Caption}{/block:Caption}
  623. {/block:PermalinkPage}
  624. {/block:IfNotShowCaptionMainPage}
  625. {block:IfShowCaptionMainPage}
  626. {block:Caption}{Caption}{/block:Caption}
  627. {/block:IfShowCaptionMainPage}
  628. <br />
  629. <a href="{Permalink}">
  630. <span style="float:left;">{TimeAgo}</span>
  631. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  632. <div style="clear:both;"></div>
  633. </a></div>
  634. </div>
  635. {/block:IndexPage}
  636. {block:PermalinkPage}
  637. <div id="content">
  638. <center>
  639. {Photoset-500}
  640. </center>
  641. {block:Caption}{Caption}{/block:Caption}
  642. <br />
  643. {block:HasTags}
  644. {block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}
  645. <br />{/block:HasTags}
  646. <span style="float:left;">{TimeAgo}</span>
  647. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  648. <div style="clear:both;"></div>
  649. </div>
  650. {/block:PermalinkPage}
  651. {/block:Photoset}
  652.  
  653. {block:Quote}
  654. {block:IndexPage}
  655. <div id="contentsmall">
  656. <div class="quote {Length}">{Quote}</div>
  657. <br />
  658. {block:Source}<span style="float:right;">{Source}</span>{/block:Source}
  659. <br /><br />
  660. <div id="notes">
  661. <a href="{Permalink}">
  662. <span style="float:left;">{TimeAgo}</span>
  663. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  664. <div style="clear:both;"></div>
  665. </a></div>
  666. </div>
  667. {/block:IndexPage}
  668. {block:PermalinkPage}
  669. <div id="content">
  670. <div class="title">{Quote}</div>
  671. {block:Source}<span style="float:right;">{Source}</span>{/block:Source}
  672. <br /><br />
  673. <span style="float:left;">{TimeAgo}</span>
  674. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  675. <div style="clear:both;"></div>
  676. </div>
  677. {/block:PermalinkPage}
  678. {/block:Quote}
  679.  
  680. {block:Link}
  681. {block:IndexPage}
  682. <div id="contentsmall">
  683. <div style="margin-top: -5px;">
  684. <div class="title"><a href="{URL}">{Name}</a></div>
  685. {block:Description}
  686. <div style="margin-top: -10px;">
  687. {Description}
  688. </div>
  689. {/block:Description}
  690. </div>
  691. <br />
  692. <div id="notes">
  693. <a href="{Permalink}">
  694. <span style="float:left;">{TimeAgo}</span>
  695. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  696. <div style="clear:both;"></div>
  697. </a></div>
  698. </div>
  699. {/block:IndexPage}
  700. {block:PermalinkPage}
  701. <div id="content">
  702. <div style="margin-top: -5px;">
  703. <div class="title"><a href="{URL}">{Name}</a></div>
  704. {block:Description}
  705. <div style="margin-top: -10px;">
  706. {Description}
  707. </div>
  708. {/block:Description}
  709. </div>
  710. <br />
  711. {block:HasTags}
  712. {block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}
  713. <br />{/block:HasTags}
  714. <span style="float:left;">{TimeAgo}</span>
  715. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  716. <div style="clear:both;"></div>
  717. </div>
  718. {/block:PermalinkPage}
  719. {/block:Link}
  720.  
  721. {block:Audio}
  722. {block:IndexPage}
  723. <div id="contentsmall">
  724. {block:AlbumArt}<div class="image">
  725. {block:If100}<img src="{AlbumArtURL}" width="100px" />{/block:If100}
  726. {block:If250}<img src="{AlbumArtURL}" width="250px" />{/block:If250}
  727. {block:If400}<img src="{AlbumArtURL}" width="400px" />{/block:If400}
  728. {block:If500}<img src="{AlbumArtURL}" width="500px" />{/block:If500}
  729. <center>
  730. <h1>{/block:AlbumArt}{block:AudioPlayer}{AudioPlayer}{/block:AudioPlayer}{block:AlbumArt}{block:TrackName}{TrackName}{/block:TrackName}{block:Artist} ~ {Artist}{/block:Artist}</h1>
  731. </div>{/block:AlbumArt}
  732. {block:AudioEmbed}
  733. {block:If100}{AudioEmbed-100}{/block:If100}
  734. {block:If250}{AudioEmbed-250}{/block:If250}
  735. {block:If400}{AudioEmbed-400}{/block:If400}
  736. {block:If500}{AudioEmbed-500}{/block:If500}
  737. {/block:AudioEmbed}
  738. </center>
  739. <div id="notes">
  740. <br />
  741. <a href="{Permalink}">
  742. <span style="float:left;">{TimeAgo}</span>
  743. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  744. <div style="clear:both;"></div>
  745. </a></div>
  746. </div>
  747. {/block:IndexPage}
  748. {block:PermalinkPage}
  749. <div id="content">
  750. {block:AlbumArt}<div class="image">
  751. <img src="{AlbumArtURL}" width="500px" />
  752. <center>
  753. <h2>{/block:AlbumArt}{block:AudioPlayer}{AudioPlayer}{/block:AudioPlayer}{block:AlbumArt}{block:TrackName}{TrackName}{/block:TrackName}{block:Artist} ~ {Artist}{/block:Artist}</h2>
  754. </div>{/block:AlbumArt}
  755. {block:AudioEmbed}{AudioEmbed-500}{/block:AudioEmbed}
  756. </center>
  757. {block:Caption}{Caption}{/block:Caption}
  758. <br />
  759. {block:HasTags}
  760. {block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}
  761. <br />{/block:HasTags}
  762. <span style="float:left;">{TimeAgo}</span>
  763. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  764. <div style="clear:both;"></div>
  765. </div>
  766. {/block:PermalinkPage}
  767. {/block:Audio}
  768.  
  769. {block:Video}
  770. {block:IndexPage}
  771. <div id="contentsmall">
  772. {block:If100}{VideoEmbed-100}{/block:If100}
  773. {block:If250}{VideoEmbed-250}{/block:If250}
  774. {block:If400}{VideoEmbed-400}{/block:If400}
  775. {block:If500}{VideoEmbed-500}{/block:If500}
  776. <div id="notes">
  777. {block:IfNotShowCaptionMainPage}
  778. {block:PermalinkPage}
  779. {block:Caption}{Caption}{/block:Caption}
  780. {/block:PermalinkPage}
  781. {/block:IfNotShowCaptionMainPage}
  782. {block:IfShowCaptionMainPage}
  783. {block:Caption}{Caption}{/block:Caption}
  784. {/block:IfShowCaptionMainPage}
  785. <br />
  786. <a href="{Permalink}">
  787. <span style="float:left;">{TimeAgo}</span>
  788. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  789. <div style="clear:both;"></div>
  790. </a></div>
  791. </div>
  792. {/block:IndexPage}
  793. {block:PermalinkPage}
  794. <div id="content">
  795. {VideoEmbed-500}
  796. {block:Caption}{Caption}{/block:Caption}
  797. <br />
  798. {block:HasTags}
  799. {block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}
  800. <br />{/block:HasTags}
  801. <span style="float:left;">{TimeAgo}</span>
  802. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  803. <div style="clear:both;"></div>
  804. </div>
  805. {/block:PermalinkPage}
  806. {/block:Video}
  807.  
  808. {block:Answer}
  809. {block:IndexPage}
  810. <div id="contentsmall">
  811. <div class="title">{Asker} asked: {Question}</div>
  812. {Answer}
  813. <br />
  814. <div id="notes">
  815. <a href="{Permalink}">
  816. <span style="float:left;">{TimeAgo}</span>
  817. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  818. <div style="clear:both;"></div>
  819. </a></div>
  820. </div>
  821. {/block:IndexPage}
  822. {block:PermalinkPage}
  823. <div id="content">
  824. <div class="title">{Asker} asked: {Question}</div>
  825. {Answer}
  826. <br />
  827. {block:HasTags}
  828. {block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}
  829. <br />{/block:HasTags}
  830. <span style="float:left;">{TimeAgo}</span>
  831. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  832. <div style="clear:both;"></div>
  833. </div>
  834. {/block:PermalinkPage}
  835. {/block:Answer}
  836.  
  837. {block:Chat}
  838. {block:IndexPage}
  839. <div id="contentsmall">
  840. {block:Title}<div class="title">{Title}</div>{/block:Title}
  841. {block:Lines}
  842. {block:Label}<span style="font-weight:bolder;text-transform:uppercase;">{Label}</span>{/block:Label} {Line}<br />
  843. {/block:Lines}
  844. <br />
  845. <div id="notes">
  846. <a href="{Permalink}">
  847. <span style="float:left;">{TimeAgo}</span>
  848. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  849. <div style="clear:both;"></div>
  850. </a></div>
  851. </div>
  852. {/block:IndexPage}
  853. {block:PermalinkPage}
  854. <div id="content">
  855. {block:Title}<div class="title">{Title}</div>{/block:Title}
  856. {block:Lines}
  857. {block:Label}<span style="font-weight:bold;text-transform:uppercase;">{Label}</span>{/block:Label} {Line}<br />
  858. {/block:Lines}
  859. <br />
  860. {block:HasTags}
  861. {block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}
  862. <br />{/block:HasTags}
  863. <span style="float:left;">{TimeAgo}</span>
  864. <span style="float:right;">{block:NoteCount}{NoteCountWithLabel}{/block:NoteCount}</span>
  865. <div style="clear:both;"></div>
  866. </div>
  867. {/block:PermalinkPage}
  868. {/block:Chat}
  869.  
  870. {block:PostNotes}
  871. <div id="content">
  872. {PostNotes-16}
  873. </div>
  874. {/block:PostNotes}
  875.  
  876. {block:ContentSource}
  877. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  878. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  879. {/block:SourceLogo}
  880. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  881. {/block:ContentSource}
  882.  
  883. {/block:Posts}
  884.  
  885. {block:IfEndlessScrolling}</div>{/block:IfEndlessScrolling}
  886.  
  887. </div>
  888.  
  889. {block:IfFadeBottom}
  890. <div id="fade"></div>
  891. {/block:IfFadeBottom}
  892.  
  893. </body>
  894. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement