Advertisement
Patttir

willoww

Jan 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.70 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  3.  
  4. <!-------Don't use! It's shit anyway. --->
  5.  
  6. <head>
  7. <title>{Title}</title>
  8. <link rel="shortcut icon" href="{FavIcon}" />
  9.  
  10. <meta name="image:Background" content=""/>
  11. <meta name="image:Sidebar" content=""/>
  12. <meta name="color:Background" content="#ffffff" />
  13. <meta name="color:Text" content="#660053"/>
  14. <meta name="color:Posts" content="#ffc5d8"/>
  15. <meta name="color:Link" content="#5400c2"/>
  16. <meta name="color:Borders" content="#ade9ff"/>
  17.  
  18. <meta name="text:Link 1 title" content="index"/>
  19. <meta name="text:Link 1 url" content="/"/>
  20. <meta name="text:Link 2 title" content="link 2"/>
  21. <meta name="text:Link 2 url" content="/ask"/>
  22. <meta name="text:Link 3 title" content="link 2"/>
  23. <meta name="text:Link 3 url" content="/ask"/>
  24. <meta name="text:Icon size" content="100" />
  25.  
  26. <style type="text/css">
  27.  
  28.  
  29. /* basic styles */
  30. body {
  31. color: {color:Text};
  32. background-color: {color:Background};
  33. background-image: url({image:Background});
  34. font: 14px consolas;
  35. line-height: 16px;
  36. background-attachment:fixed;
  37. }
  38. a {
  39. text-decoration: none;
  40. color:{color:Link};
  41. -moz-transition-duration:0.3s;
  42. -webkit-transition-duration:0.3s;
  43. -o-transition-duration:0.3s;
  44. }
  45. a:hover {
  46. color:{color:link};
  47. -moz-transition-duration:0.3s;
  48. -webkit-transition-duration:0.3s;
  49. -o-transition-duration:0.3s;
  50. }
  51. h1 {
  52. font-size: 16px;
  53. color: {color:Text};
  54. }
  55.  
  56.  
  57. blockquote {
  58. border-left: 1px solid {color:text};
  59. margin-left: 2px;
  60. padding-left: 10px;
  61. }
  62.  
  63. .entry img {max-width:100%; border-radius: 5px;}
  64. #photo{
  65. border-radius:5px;
  66. }
  67. .photoset iframe {border-radius: 5px;}
  68.  
  69. #content {
  70. position:relative;
  71. width: 430px;
  72. margin-left: 40%;
  73. margin-right: 60%;
  74. margin-top: 50px;
  75. padding:10px;
  76. }
  77.  
  78. .entry {
  79. margin-bottom: 30px;
  80. background:{color:posts};
  81. padding: 15px;
  82. border-radius:10px;
  83. border:6px ridge {color:borders};
  84. background: -moz-linear-gradient(top, #fceabb 0%, #fccd4d 50%, #f8b500 51%, #fbdf93 100%); /* FF3.6-15 */
  85. background: -webkit-linear-gradient(top, #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%); /* Chrome10-25,Safari5.1-6 */
  86. background: linear-gradient(to bottom, #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  87.  
  88. }
  89.  
  90.  
  91. #side {
  92. top: 10px;
  93. position: fixed;
  94. width: 170px;
  95. padding: 10px;
  96. margin-left:10%;
  97. margin-top:100px;
  98. background-color:{color:posts};
  99. border-radius:10px;
  100. border:6px ridge {color:borders};
  101. background: -moz-linear-gradient(top, #fceabb 0%, #fccd4d 50%, #f8b500 51% , #fbdf93 100%); /* FF3.6-15 */
  102. background: -webkit-linear-gradient(top, #fceabb 0%,#fccd4d 50%,#f8b500 51%,#fbdf93 100%); /* Chrome10-25,Safari5.1-6 */
  103. background: linear-gradient(to bottom, #fceabb 0%,#fccd4d 50%,#f8b500 51% ,#fbdf93 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  104.  
  105. }
  106. .button{
  107. border-radius:5px;
  108. border:4px outset {color:borders};
  109. padding:5px;
  110. margin:2px;
  111. display:inline-block;
  112. background: #f85032;
  113. }
  114. .button2{
  115. border-radius:5px;
  116. padding:5px;
  117. margin:2px;
  118. display:inline-block;
  119. }
  120. #button{
  121. display:none;
  122. }
  123.  
  124.  
  125. #side img {
  126. width:{text:icon size}px;
  127. {block:ifroundicon}
  128. border-radius:80px;
  129. {/block:ifroundicon}
  130. padding:10px;
  131. }
  132.  
  133. #notes {
  134. margin-top:10px;
  135. }
  136.  
  137. .head {
  138. font-size: 16px;
  139. margin-bottom: 10px;
  140. margin-left: 10px;
  141. color: {color:Title};
  142. letter-spacing: .5px;
  143. }
  144.  
  145. img.avatar {display:none; }
  146. ol.notes {
  147. margin-top: 20px;
  148. }
  149.  
  150. #pagination {
  151. padding: 0;
  152. margin: 0;
  153. }
  154. </style>
  155. <script>
  156. function myFunction() {
  157. var x = document.getElementById("button");
  158. if (x.style.display === "none") {
  159. x.style.display = "block";
  160. } else {
  161. x.style.display = "none";
  162. }
  163. }
  164. </script>
  165.  
  166.  
  167.  
  168. </head>
  169.  
  170. <body>
  171. <div id="side">
  172. <center>
  173. <div id="sideimg"><img src="{image:Sidebar}"></div>
  174. <center>
  175. <center>
  176. {description}<p>
  177. </center>
  178. <center>
  179. <br>
  180.  
  181. <button class="button" onclick="myFunction()">Click</button>
  182. <br>
  183. <div id="button">
  184. <a class="button2" href={text:link 1 url}>{text:link 1 title}</a>
  185.  
  186. <a class="button2" href={text:link 2 url}>{text:link 2 title}</a>
  187.  
  188. <a class="button2" href={text:link 3 url}>{text:link 3 title}</a>
  189. </div>
  190. <br>
  191. <div id="pagination">
  192. {block:PreviousPage}<a href="{PreviousPage}">{/block:PreviousPage}back{block:PreviousPage}</a>{/block:PreviousPage}
  193. {block:JumpPagination length="5"}
  194. {block:CurrentPage}{PageNumber}{/block:CurrentPage}
  195. {block:JumpPage}<a href="{URL}">{PageNumber}</a>{/block:JumpPage}
  196. {/block:JumpPagination}
  197. {block:NextPage}<a href="{NextPage}">{/block:NextPage}foward{block:NextPage}</a>{/block:NextPage}</div>
  198.  
  199. </center>
  200. </div></div>
  201.  
  202.  
  203.  
  204. <div id="content">
  205. {block:Posts}
  206.  
  207. <div class="entry">
  208.  
  209.  
  210. {block:Photo}<a href="{permalink}"><img src="{PhotoURL-HighRes}" alt="{PhotoAlt}" width="100%"/></a> {block:IndexPage}{block:Caption}{Caption}{/block:Caption}{/block:IndexPage}{block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}{/block:Photo}
  211.  
  212. <div class="photoset">{block:Photoset}{block:IndexPage}<div id="photo">{block:Photos} <img src="{PhotoURL-500}">{/block:Photos} </div>{/block:IndexPage}{block:PermalinkPage}{Photoset-500}{/block:PermalinkPage} {block:IndexPage}{block:Caption}{Caption}{/block:Caption}{/block:IndexPage}{block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}{/block:Photoset}</div>
  213.  
  214. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body} {/block:Text}
  215.  
  216. {block:Link}<h1><a href="{URL}">{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  217.  
  218. {block:Quote}"{Quote}"{block:Source}<br>- {Source}{/block:Source}{/block:Quote}
  219.  
  220. {block:Chat}{block:Title}<h1>{Title}</h1>{/block:Title}{block:Lines}{block:Label}<b>{Label} </b>{/block:Label}<span><i>{Line}</i><br></span>{/block:Lines}{/block:Chat}
  221.  
  222. {block:Audio}{AudioPlayerWhite}{block:IndexPage}<p>{block:TrackName}Track: {TrackName}<br>{/block:TrackName}{block:Artist}Artist: {Artist}<br>{/block:Artist}{block:Album}Album: {Album}<br>{/block:Album}{block:PlayCount}Played: {PlayCount}{/block:PlayCount}{/block:IndexPage}{block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}{/block:Audio}
  223.  
  224. {block:Video}{block:IndexPage}{Video-400}{/block:IndexPage}{block:PermalinkPage}{Video-400}{/block:PermalinkPage} {block:IndexPage}{block:Caption}{Caption}{/block:Caption}{/block:IndexPage}{block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}{block:Video}
  225.  
  226. {block:Answer}<b>{Asker}</b> asked: <br><center><i>{Question}</i></center><p>{Answer}{/block:Answer}
  227.  
  228. <div id="notes">
  229. <center>{block:HasTags}#:{block:Tags} <a href="{TagURL}">{Tag}, </a> {/block:Tags}{/block:HasTags}
  230.  
  231. {block:PermalinkPage}
  232. {block:RebloggedFrom}<br><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a> | {block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">src</a><br>{/block:ContentSource}{/block:RebloggedFrom}
  233. {/block:PermalinkPage}
  234. <br>
  235. <br>
  236. {block:IndexPage}<a href="{Permalink}">{MonthNumberwithZero}.{DayofMonthwithZero}.{Year},</a> <a href="{Permalink}">{DayofWeek}</a><br>{block:NoteCount} <a href="{Permalink}">{NoteCountwithlabel}</a>{/block:NoteCount} <a href="{ReblogURL}">reblog?</a>{/block:IndexPage}
  237. </div>
  238.  
  239.  
  240.  
  241. {block:PermalinkPage}
  242. <center><p>{NoteCountwithLabel}</center>
  243. {block:PostNotes}{PostNotes}{/block:PostNotes}
  244. {/block:PermalinkPage}
  245. </div>
  246. {/block:Posts}
  247.  
  248. </div><!---content div--->
  249.  
  250. </body>
  251.  
  252. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement