Advertisement
Guest User

Untitled

a guest
Mar 7th, 2016
177
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.48 KB | None | 0 0
  1. <!-- PLEASE DO NOT REMOVE CREDIT!!
  2. Theme by @yeoreums-gf on tumblr !-->
  3.  
  4. <html>
  5. <head>
  6. <title>{Title}</title>
  7. <link rel="shortcut icon" href="{Favicon}">
  8. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  9. {block:Description}
  10. <meta name="description" content="{MetaDescription}"/>
  11. <meta name="color:background" content="#F6FBFE"/>
  12. <meta name="color:sidebar bg" content="white"/>
  13. <meta name="color:title" content="A8CBE0"/>
  14. <meta name="color:text" content="black"/>
  15. <meta name="color:post bg" content="white"/>
  16. <meta name="color:permalink" contegt="#77A4BF"/>
  17. <meta name="color:permalink hover" content="black"/>
  18. <meta name="color:tags" content="#77A4BF"/>
  19. <meta name="color:tags hover" content="black"/>
  20. <meta name="color:link" content="#77A4BF"/>
  21. <meta name="color:link hover" content="black"/>
  22. <meta name="color:sidebar link" content="#77A4BF"/>
  23. <meta name="color:sidebar link hover" content="black"/>
  24. <meta name="color:bold italic" content="A8CBE0"/>
  25. <meta name="color:blackquote" content="black"/>
  26.  
  27. <meta name="text:link1" content="link1 url"/>
  28. <meta name="text:link1name" content="link1 name"/>
  29. <meta name="text:link2" content="link2 url"/>
  30. <meta name="text:link2name" content="link2 name"/>
  31. <meta name="text:link3" content="link3 url"/>
  32. <meta name="text:link3name" content="link3 name"/>
  33. <meta name="if:Show link3" content="1"/>
  34.  
  35. <meta name="select:post padding" content="10px"/>
  36. <meta name="select:post padding" content="20px"/>
  37. {/block:Description}
  38.  
  39. <link href='https://fonts.googleapis.com/css?family=Economica' rel='stylesheet' type='text/css'>
  40. </head>
  41.  
  42. <style type="text/css">
  43.  
  44. body {
  45. background-color: {color:background};
  46. font-family: 'Economica', sans-serif;
  47. color: {color:text};
  48. font-size: 13px;
  49. }
  50.  
  51. #cont {
  52. left: 600px;
  53. position: absolute;
  54. top: 20%;
  55. }
  56.  
  57. .post {
  58. width: 400px;
  59. background-color: {color:post bg};
  60. padding: {select:post padding};
  61. margin: 0px 0px 50px 0px;
  62. text-align: left;
  63. }
  64.  
  65. .permalinks {
  66. text-align: right;
  67. }
  68.  
  69. .permalinks a {
  70. text-decoration: none;
  71. color: {color:permalink};
  72. font-size: 10px;
  73. -webkit-transition: all 0.7s ease;
  74. -moz-transition: all 0.7s ease;
  75. -o-transition: all 0.7s ease;
  76. padding: 2px;
  77. }
  78.  
  79. .permalinks a:hover {
  80. font-size: 11px;
  81. color: {color:permalink hover};
  82. }
  83.  
  84. .tags {
  85. text-align: right;
  86. }
  87.  
  88. .tags a {
  89. text-decoration: none;
  90. color: {color:tags};
  91. font-size: 10px;
  92. text-transform: uppercase;
  93. -webkit-transition: all 0.7s ease;
  94. -moz-transition: all 0.7s ease;
  95. -o-transition: all 0.7s ease;
  96. }
  97.  
  98. .tags a:hover {
  99. font-size: 11px;
  100. color: {color:tags hover};
  101. }
  102.  
  103. a {
  104. text-decoration: none;
  105. color: {color:link};
  106. -webkit-transition: all 0.7s ease;
  107. -moz-transition: all 0.7s ease;
  108. -o-transition: all 0.7s ease;
  109. }
  110.  
  111. a:hover {
  112. color: {color:link hover};
  113. }
  114.  
  115. b {
  116. color: {color:bold italic};
  117. text-transform: uppercase;
  118. }
  119.  
  120. i {
  121. color: {color:bold italic};
  122. }
  123.  
  124. blockquote {
  125. padding: 0px 7px;
  126. margin: 0px 0px 0px 3px;
  127. border-left: 2px solid black;
  128. text-align: justify;
  129. padding-right: 5px;
  130. font-size: 12px;
  131. }
  132.  
  133. blockquote img {
  134. MAX-WIDTH:100%;
  135. HEIGHT:AUTO;
  136. }
  137.  
  138. IMG {
  139. MAX-WIDTH: 100%;
  140. margin: 0px 0px 10px 0px;
  141. }
  142.  
  143. #sidebar {
  144. position: fixed;
  145. left: 12%;
  146. top: 20%;
  147. width: 250px;
  148. border: 2px white solid;
  149. background-color: {color:sidebar bg};
  150. padding: 10px;
  151. }
  152.  
  153. .quote {
  154. color: {color:tags};
  155. font-size: 10px;
  156. text-align: right;
  157. }
  158.  
  159. .des {
  160. text-transform: lowercase;
  161. text-align: center;
  162. padding: 10px 10px 0px 10px;
  163. }
  164.  
  165. #title {
  166. font-size: 22px;
  167. text-align: right;
  168. padding: 0px 20px 0px 0px;
  169. text-transform: uppercase;
  170. color: {color:title};
  171. }
  172.  
  173. .links {
  174. font-size: 12px;
  175. text-align: center;
  176. }
  177.  
  178. .links a {
  179. text-transform: uppercase;
  180. text-decoration: none;
  181. color: {color:sidebar link};
  182. display: inline-block;
  183. -webkit-transition: all 0.7s ease;
  184. -moz-transition: all 0.7s ease;
  185. -o-transition: all 0.7s ease;
  186. padding: 10px;
  187. }
  188.  
  189. .links a:hover {
  190. font-size: 12px;
  191. color: {color:sidebar link hover};
  192. }
  193.  
  194. #pagination {
  195. text-align: center;
  196. }
  197.  
  198. #pagination a {
  199. text-transform: none;
  200. color: block
  201. padding: 0px 10px 0px 0px;
  202. -webkit-transition: all 0.7s ease;
  203. -moz-transition: all 0.7s ease;
  204. -o-transition: all 0.7s ease;
  205. }
  206.  
  207. #pagination a:hover {
  208. color: black;
  209. }
  210.  
  211. .date {
  212. float:left;
  213. }
  214.  
  215. .reblogs {
  216. float:right;
  217. }
  218.  
  219. .postnotes {
  220. text-align: left;
  221. text-size: 10px;
  222. }
  223.  
  224. ol.postnotes {
  225. border: solid 2px black;
  226. }
  227.  
  228. ol.notes li.note img {
  229. display: none;
  230. }
  231.  
  232. </style>
  233.  
  234. <body>
  235.  
  236. <div id="sidebar"><h1 id="title">...{Title}</h1>
  237. {block:Description}<p class="des">{Description}{/block:Description}</p>
  238. <div class="links">
  239. <a href="/">home</a>
  240. <a href"/ask">ask</a>
  241. <a href="/{text:link1}">{text:link1name}</a>
  242. <a href="/{text:link2}">{text:link2name}</a>
  243. {Block:IfShowLink3}<a href="/{text:link3}">{text:link3name}{/block:IfShowLink3}</a>
  244. </div>
  245.  
  246. <div id="pagination">{Block:Pagination}<a href="http://yeoreums-gf.tumblr.com">©</a>{block:PreviousPage}<a href={PreviousPage}>prev</a>{/block:PreviousPage} {block:NextPage}<a href={NextPage}>next</a>{/block:NextPage}{/block:Pagination}
  247. </div>
  248. </div>
  249.  
  250.  
  251.  
  252. <div id="cont">
  253. {block:Posts}
  254. <div class="post">
  255. {block:Text}{block:Title}{Title}{/block:Title}{Body}{/block:Text}
  256.  
  257. {block:Photo}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{block:Caption}{Caption}{/block:Caption}{/block:Photo}
  258.  
  259. {block:Panorama}{LinkOpenTag}<img src="{PhotoURL-Panorama}" alt="{PhotoAlt}"/>{LinkCloseTag}{block:Caption}{Caption}{/block:Caption}{/block:Panorama}
  260.  
  261. {block:Photoset}{Photoset-400}{block:Caption}{Caption}{/block:Caption}{/block:Photoset}
  262.  
  263. {block:Quote}"{Quote}"<br><div class="quote">{block:Source}- {Source}{/block:Source}</div>{/block:Quote}
  264.  
  265. {block:Link}<a href="{URL}" class="link" {Target}>{Name}</a>{block:Description}{Description}{/block:Description}{/block:Link}
  266.  
  267. {block:Chat}{block:Title}{Title}</a>{/block:Title}
  268. {block:Lines}<li>{block:Label}{Label}{/block:Label}{Line}</li>{/block:Lines}{/block:Chat}
  269.  
  270. {block:Video}{Video-400}{block:Caption}{Caption}{/block:Caption}{/block:Video}
  271.  
  272. {block:Audio}{AudioEmbed-400}{block:Caption}{Caption}{/block:Caption}{/block:Audio}
  273. <div class="permalinks"><div class="date"><a href={Permalink}>{DayOfMonthWithZero}.{ShortMonth} {24HourWithZero}:{Minutes}</a> <a href="{Permalink}">{block:NoteCount}♥ {NoteCount}{/block:NoteCount}</a></div> <div class="reblog">{block:RebloggedFrom}
  274. <a href={ReblogParentURL}>via;</a>
  275. <a href={ReblogRootURL}>source;</a>
  276. {/block:RebloggedFrom}
  277. <a href={ReblogURL}>reblog</a></div>
  278. <div class="postnotes">{block:PostNotes}{PostNotes}{/block:postnotes}</div>
  279. </div>
  280.  
  281. <div class="tags">{block:HasTags}{block:Tags}<a href={Tagurl}> *{tag}</a>{/block:Tags}{/block:HasTags}</div>
  282.  
  283. </div>
  284. {/block:Posts}
  285. </div>
  286.  
  287.  
  288. </body>
  289. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement