Advertisement
Guest User

Untitled

a guest
May 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.76 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.  
  5. <!-- love letter theme by jeff 1981polybius/mythcore -->
  6.  
  7. <title>{Title}</title>
  8. <link rel="shortcut icon" href="{image:favicon}">
  9. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  10. {block:Description}
  11. <meta name="description" content="{MetaDescription}" />
  12. {/block:Description}
  13. <link rel="stylesheet" type="text/css" href="http://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  14.  
  15. <meta name="image:sidebar image">
  16. <meta name="image:favicon">
  17. <meta name="color:post text" content="#000">
  18. <meta name="color:accent text" content="#000">
  19. <meta name="color:post link" content="#00f">
  20. <meta name="color:post link hover" content="#f00">
  21. <meta name="color:accent link" content="#00f">
  22. <meta name="color:accent link hover" content="#f00">
  23. <meta name="color:nav link" content="#00f">
  24. <meta name="color:nav link hover" content="#f00">
  25. <meta name="color:blog bg" content="#fff">
  26. <meta name="color:post bg">
  27. <meta name="color:accent bg">
  28.  
  29. <meta name="if:full blog bg">
  30.  
  31. <meta name="if:underline links">
  32.  
  33. <meta name="text:font size" content="12pt">
  34.  
  35. <meta name="text:font" content="arial">
  36.  
  37. <meta name="text:link 1 name" content="link 1">
  38. <meta name="text:link 2 name" content="link 2">
  39. <meta name="text:link 3 name" content="link 3">
  40. <meta name="text:link 1 url" content="/">
  41. <meta name="text:link 2 url" content="/">
  42. <meta name="text:link 3 url" content="/">
  43.  
  44. <meta name="select:desc align" content="center">
  45. <meta name="select:desc align" content="justify">
  46. <meta name="select:desc align" content="left">
  47. <meta name="select:desc align" content="right">
  48.  
  49. <meta name="select:borders" content="solid">
  50. <meta name="select:borders" content="dashed">
  51. <meta name="select:borders" content="dotted">
  52. <meta name="select:borders" content="double">
  53. <meta name="select:borders" content="none">
  54. <meta name="select:border width" content="1px">
  55. <meta name="select:border width" content="2px">
  56. <meta name="select:border width" content="3px">
  57. <meta name="select:border width" content="4px">
  58.  
  59. <meta name="image:blog bg">
  60.  
  61. <meta name="if:round corners">
  62. <meta name="if:show title">
  63. <meta name="if:show description">
  64.  
  65. <style type="text/css">
  66. body {
  67. background-color: {color:blog bg};
  68. background-image: url('{image:blog bg}');
  69. background-attachment: fixed;
  70. {block:iffullblogbg}
  71. background-size: cover;
  72. {/block:iffullblogbg}
  73. font-size: {text:font size};
  74. font-family: {text:font};
  75. word-wrap: break-word;
  76. text-align: justify;
  77. }
  78.  
  79. a {
  80. {block:ifnotunderlinelinks}text-decoration: none;{/block:ifnotunderlinelinks}
  81. transition: 0.2s;
  82. }
  83.  
  84. .postcontents a {
  85. color: {color:post link};
  86. text-shadow: 0 0 2px rgba({RGBcolor:post link},0.5);
  87. }
  88.  
  89. .postcontents a:hover {
  90. color: {color:post link hover};
  91. text-shadow: 0 0 2px rgba({RGBcolor:post link hover},0.5);
  92. }
  93.  
  94. #sidebar a {
  95. color: {color:nav link};
  96. text-shadow: 0 0 2px rgba({RGBcolor:nav link},0.5);
  97. }
  98.  
  99. #sidebar a:hover {
  100. color: {color:nav link hover};
  101. text-shadow: 0 0 2px rgba({RGBcolor:nav link hover},0.5);
  102. }
  103.  
  104. .footer a, p#description a {
  105. color: {color:accent link};
  106. text-shadow: 0 0 2px rgba({RGBcolor:accent link},0.5);
  107. }
  108.  
  109. .footer a:hover, p#description a:hover {
  110. color: {color:accent link hover};
  111. text-shadow: 0 0 2px rgba({RGBcolor:accent link hover},0.5);
  112. }
  113.  
  114.  
  115.  
  116. #blogcontent {
  117. width: 675px;
  118. margin: 20px auto;
  119. }
  120.  
  121.  
  122. .post {
  123. width: 500px;
  124. margin-left: 250px;
  125. margin-bottom: 20px;
  126. border: {select:border width} {select:borders};
  127. background-color: {color:post bg};
  128. color: {color:post text};
  129. {block:ifroundcorners}
  130. border-radius: 5px;
  131. {/block:ifroundcorners}
  132. }
  133.  
  134. #sidebar {
  135. text-align: center;
  136. width: 210px;
  137. position: fixed;
  138. }
  139.  
  140. #navigation {
  141. text-align: center;
  142. margin-top: 15px;
  143. font-size: 120%;
  144. }
  145.  
  146. img {
  147. max-width: 100%;
  148. }
  149.  
  150. .footer {
  151. margin-top: 10px;
  152. padding: 5px;
  153. border-top: {select:border width} {select:borders};
  154. background-color: {color:accent bg};
  155. color: {color:accent text};
  156. {block:ifroundcorners}
  157. border-radius: 0 0 5px 5px;
  158. {/block:ifroundcorners}
  159. }
  160.  
  161. .media {
  162. text-align: center;
  163. }
  164.  
  165. .postcontents {
  166. padding: 5px 5px 0 5px;
  167. }
  168.  
  169. .postcontents blockquote {
  170. border-left: {select:border width} {select:borders};
  171. padding-left: 10px;
  172. margin-bottom: 10px;
  173. margin-left: 10px;
  174. }
  175.  
  176. h1#blogtitle {
  177. margin: 0;
  178. font-size: 100%;
  179. }
  180.  
  181. p#description {
  182. margin: 0;
  183. text-align: {select:desc align};
  184. border: {select:border width} {select:borders};
  185. padding: 5px;
  186. background-color: {color:accent bg};
  187. color: {color:accent text};
  188. {block:ifroundcorners}
  189. border-radius: 5px;
  190. {/block:ifroundcorners}
  191. }
  192.  
  193.  
  194. ol.notes {
  195. list-style-type: none;
  196. margin: 0;
  197. padding: 0;
  198. }
  199.  
  200. {CustomCSS}
  201.  
  202. </style>
  203.  
  204. </head>
  205. <body>
  206. <div id="blogcontent">
  207. <div id="sidebar">
  208. {block:ifshowtitle}<h1 id="blogtitle"><a href="/">{Title}</a></h1>{/block:ifshowtitle}
  209. <img src="{image:sidebar image}">
  210. {block:ifshowdescription}{block:Description}<p id="description">{Description}</p>{/block:Description}{/block:ifshowdescription}
  211. {block:iflink1url}<br /><a href="{text:link 1 url}">{block:iflink1name}{text:link 1 name}{/block:iflink1name}{block:ifnotlink1name}{text:link 1 url}{/block:ifnotlink1name}</a>{/block:iflink1url}{block:iflink2url}<br /><a href="{text:link 2 url}">{block:iflink2name}{text:link 2 name}{/block:iflink2name}{block:ifnotlink2name}{text:link 2 url}{/block:ifnotlink2name}</a>{/block:iflink2url}{block:iflink3url}<br /><a href="{text:link 3 url}">{block:iflink3name}{text:link 3 name}{/block:iflink3name}{block:ifnotlink3name}{text:link 3 url}{/block:ifnotlink3name}</a>{/block:iflink3url}<br /><a href="https://tmblr.co/mJjlZ7Gyg2wInIVYM5U5IlA" style="font-size: 12px">theme</a>
  212.  
  213. {block:Pagination}
  214. <div id="navigation">
  215. {block:PreviousPage}<a href="{PreviousPage}">&lt;</a>{/block:PreviousPage} {block:NextPage}<a href="{NextPage}">&gt;</a>{/block:NextPage}
  216. </div>
  217. {/block:Pagination}
  218. </div>
  219. {block:Posts}
  220. <div class="post">
  221. <div class="postcontents">
  222. {block:Text}
  223. {block:Title}<h3>{Title}</h3>{/block:Title}
  224. {Body}
  225. {/block:Text}
  226.  
  227. {block:Photo}
  228. {LinkOpenTag}
  229. <div class="media">
  230. <img src="{PhotoURL-HighRes}">
  231. </div>
  232. {LinkCloseTag}
  233. {block:Caption}
  234. {Caption}
  235. {/block:Caption}
  236. {/block:Photo}
  237.  
  238. {block:Panorama}
  239. <div class="media">
  240. {LinkOpenTag}
  241. <img src="{PhotoURL-Panorama}" alt="{PhotoAlt}" />
  242. {LinkCloseTag}
  243. </div>
  244. {block:Caption}
  245. {Caption}
  246. {/block:Caption}
  247. {/block:Panorama}
  248.  
  249. {block:Photoset}
  250. <div class="media">
  251. {Photoset}
  252. </div>
  253. {block:Caption}
  254. {Caption}
  255. {/block:Caption}
  256. {/block:Photoset}
  257.  
  258. {block:Quote}
  259. <h3>{Quote}</h3>
  260. {block:Source}
  261. {Source}
  262. {/block:Source}
  263. {/block:Quote}
  264.  
  265. {block:Link}
  266. <h3><a href="{URL}" target="{Target}">{Name}</a></h3>
  267. {block:Description}
  268. {Description}
  269. {/block:Description}
  270. {/block:Link}
  271.  
  272. {block:Chat}
  273. {block:Title}<h3>{Title}</h3>{/block:Title}
  274. {block:Lines}
  275. <div class="{Alt}">
  276. {block:Label}
  277. <b>{Label}</b>&nbsp;
  278. {/block:Label}
  279. {Line}
  280. </div>
  281. {/block:Lines}
  282. {/block:Chat}
  283.  
  284. {block:Audio}
  285. <div class="media">
  286. {block:AudioEmbed}{AudioEmbed}{/block:AudioEmbed}
  287. </div>
  288. {block:Caption}{Caption}{/block:Caption}
  289. {/block:Audio}
  290.  
  291. {block:Video}
  292. <div class="media">
  293. {VideoEmbed-500}
  294. </div>
  295. {block:Caption}{Caption}{/block:Caption}
  296. {/block:Video}
  297.  
  298. {block:Answer}
  299. {Question}
  300. <br />
  301. {Asker}
  302. {Answer}
  303. {/block:Answer}
  304. </div>
  305. {block:Date}
  306. <div class="footer"><a href="{Permalink}">{TimeAgo} / {NoteCountWithLabel}</a>
  307. {block:HasTags}<br />{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</div>
  308. {/block:Date}
  309.  
  310. {block:PostNotes}{PostNotes}{/block:PostNotes}
  311. </div>
  312. {/block:Posts}
  313. </div>
  314.  
  315. </body>
  316. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement