Advertisement
Patttir

Blue Feather

Feb 18th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.53 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.--->
  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:Posts" content=""/>
  12.  
  13. <meta name="color:Background" content="#ffffff" />
  14. <meta name="color:Background2" content="#15b1ff" />
  15. <meta name="color:Text" content="#660053"/>
  16. <meta name="color:Posts" content="#ffc5d8"/>
  17. <meta name="color:Link" content="#5400c2"/>
  18. <meta name="color:Borders" content="#ade9ff"/>
  19.  
  20. <meta name="text:Link 1 title" content="index"/>
  21. <meta name="text:Link 1 url" content="/"/>
  22. <meta name="text:Link 2 title" content="link 2"/>
  23. <meta name="text:Link 2 url" content="/ask"/>
  24. <meta name="text:Link 3 title" content="link 2"/>
  25. <meta name="text:Link 3 url" content="/ask"/>
  26. <meta name="if:gradient" content="1" />
  27. <meta name="if:side bg" content="1" />
  28.  
  29. <link href="https://fonts.googleapis.com/css?family=Raleway:300" rel="stylesheet">
  30.  
  31. <style type="text/css">
  32.  
  33. body {
  34. color: {color:Text};
  35. background-color: {color:Background};
  36. background-image: url({image:Background});
  37. font-family: 'Raleway', sans-serif;
  38. line-height: 18px;
  39. background-attachment:fixed;
  40. {block:ifgradient}
  41. background-image: linear-gradient(to bottom, {color:background} 30%, {color:background2} 100%);
  42. {/block:ifgradient}
  43. }
  44.  
  45. a {
  46. text-decoration: none;
  47. color:{color:Link};
  48. }
  49.  
  50. a:hover {
  51. color:{color:link};
  52. }
  53.  
  54. h1 {
  55. font-size: 16px;
  56. color: {color:Text};
  57. }
  58.  
  59. blockquote {
  60. border-left: 1px solid {color:text};
  61. margin-left: 2px;
  62. padding-left: 10px;
  63. }
  64.  
  65. .entry img {max-width:100%;height:auto;}
  66. .photoset iframe {}
  67.  
  68. #content {
  69. position:relative;
  70. width: 430px;
  71. margin-left: 60%;
  72. margin-right: 40%;
  73. padding:10px;
  74. }
  75.  
  76. .entry {
  77. margin-top: 30px;
  78. padding: 15px;
  79. border: 1px solid transparent;
  80. background:{color:posts};
  81. background-image: url({image:Posts});
  82. -webkit-box-shadow: 0px 0px 5px 5px {color:posts};
  83. -moz-box-shadow: 0px 0px 5px 5px {color:posts};
  84. box-shadow: 0px 0px 5px 5px {color:posts};
  85. }
  86.  
  87. #side {
  88. position: fixed;
  89. width: 270px;
  90. padding: 10px;
  91. margin-left:20%;
  92. bottom:30px;
  93. {block:ifsidebg}
  94. background:{color:posts};
  95. -webkit-box-shadow: 0px 0px 5px 5px {color:posts};
  96. -moz-box-shadow: 0px 0px 5px 5px {color:posts};
  97. box-shadow: 0px 0px 5px 5px {color:posts};
  98. {/block:ifsidebg}
  99. }
  100. #description {
  101. padding-bottom:10px;
  102. text-align:center;
  103. font-size:20px;
  104. line-height:25px;
  105. }
  106.  
  107. #links{
  108. padding:10px;
  109. text-align:center;
  110. font-size:20px;
  111. line-height:25px;
  112. }
  113.  
  114. #links a {
  115. text-align:center;
  116. font-size:20px;
  117. line-height:24px;
  118. }
  119.  
  120. #links a:hover {
  121. border-radius:0px;
  122. color:{color:link hover};
  123. }
  124.  
  125. #notes {
  126. margin-top:10px;
  127. }
  128.  
  129. .head {
  130. font-size: 16px;
  131. margin-bottom: 10px;
  132. margin-left: 10px;
  133. color: {color:Title};
  134. letter-spacing: .5px;
  135. }
  136.  
  137. img.avatar {display:none; }
  138. ol.notes {
  139. margin-top: 20px;
  140. }
  141.  
  142. #pagination {
  143. padding: 0;
  144. margin: 0;
  145. font-size:24px;
  146. }
  147.  
  148. </style>
  149.  
  150. </head>
  151.  
  152. <body>
  153. <div id="side">
  154. <div id="links">
  155. <div id="description">
  156. {description}
  157. </div>
  158. <a href={text:link 1 url}>{text:link 1 title}</a>
  159. <br>
  160. <a href={text:link 2 url}>{text:link 2 title}</a>
  161. <br>
  162. <a href={text:link 3 url}>{text:link 3 title}</a>
  163. </div>
  164.  
  165. <div id="pagination">
  166. <center>
  167. {block:PreviousPage}<a href="{PreviousPage}">{/block:PreviousPage}◀{block:PreviousPage}</a>{/block:PreviousPage}
  168. {block:NextPage}<a href="{NextPage}">{/block:NextPage}▶{block:NextPage}</a>{/block:NextPage}</div>
  169.  
  170. </center>
  171. </div></div>
  172.  
  173. <div id="content">
  174. {block:Posts}
  175.  
  176. <div class="entry">
  177.  
  178.  
  179. {block:Photo}<a href="{permalink}"><img class="photo" 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}
  180.  
  181. <div class="photoset">{block:Photoset}{block:IndexPage}{Photoset-400}{/block:IndexPage}{block:PermalinkPage}{Photoset-400}{/block:PermalinkPage} {block:IndexPage}{block:Caption}{Caption}{/block:Caption}{/block:IndexPage}{block:PermalinkPage}{block:Caption}{Caption}{/block:Caption}{/block:PermalinkPage}{/block:Photoset}</div>
  182.  
  183. {block:Text}{block:Title}<h1>{Title}</h1>{/block:Title}{Body} {/block:Text}
  184.  
  185. {block:Link}<h1><a href="{URL}">{Name}</a></h1>{block:Description}{Description}{/block:Description}{/block:Link}
  186.  
  187. {block:Quote}"{Quote}"{block:Source}<br>- {Source}{/block:Source}{/block:Quote}
  188.  
  189. {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}
  190.  
  191. {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}
  192.  
  193. {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}
  194.  
  195. {block:Answer}<b>{Asker}</b> asked: <br><center><i>{Question}</i></center><p>{Answer}{/block:Answer}
  196.  
  197. <div id="notes">
  198. <center>{block:HasTags}#:{block:Tags} <a href="{TagURL}">{Tag}, </a> {/block:Tags}{/block:HasTags}
  199.  
  200. {block:PermalinkPage}
  201. {block:RebloggedFrom}<br><a href="{ReblogParentURL}" title="{ReblogParentName}">via</a> | {block:ContentSource}<a href="{ReblogRootURL}" title="{ReblogRootName}">src</a><br>{/block:ContentSource}{/block:RebloggedFrom}
  202. {/block:PermalinkPage}
  203. <br>
  204. <br>
  205. {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}
  206. </div>
  207.  
  208. {block:PermalinkPage}
  209. <center><p>{NoteCountwithLabel}</center>
  210. {block:PostNotes}{PostNotes}{/block:PostNotes}
  211. {/block:PermalinkPage}
  212. </div>
  213. {/block:Posts}
  214.  
  215. </div>
  216.  
  217. </body>
  218.  
  219. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement