jellyparty

Tumblr theme base code 1

Mar 27th, 2021 (edited)
974
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.77 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <head>
  3. <!-- Code By Emoticon Equinox :thumbs up:
  4.  
  5. The base code I've been using for my themes ever since I made it. Here you have all the basic customizations features to use as both a regular theme and to build off of as a base code! If you decide to use this code as a base for your own theme, you don't have to credit me if you release it publicly, but I'd love to see what you come up with regardless!
  6. -->
  7.  
  8. <!-- Images -->
  9. <meta name="image:favicon" content="">
  10. <meta name="image:background" content="">
  11. <meta name="image:sidebar" content="">
  12. <meta name="image:floatie" content="">
  13. <meta name="image:custom cursor" content="">
  14.  
  15. <!-- Text -->
  16. <meta name="text:text size" content="20">
  17. <meta name="text:border size" content="3">
  18. <meta name="text:floatie size" content="100">
  19. <meta name="text:desc" content="sweet honeydew melon">
  20. <meta name="text:link divider" content="/">
  21. <meta name="text:link one" content="1">
  22. <meta name="text:link two" content="2">
  23. <meta name="text:link one url" content="/">
  24. <meta name="text:link two url" content="/">
  25.  
  26. <!-- Select -->
  27. <meta name="select:border style" content="solid"/>
  28. <meta name="select:border style" content="double"/>
  29. <meta name="select:border style" content="groove"/>
  30. <meta name="select:border style" content="ridge"/>
  31. <meta name="select:border style" content="inset"/>
  32. <meta name="select:border style" content="outset"/>
  33. <meta name="select:border style" content="dashed"/>
  34. <meta name="select:border style" content="dotted"/>
  35.  
  36. <!-- Colors -->
  37. <meta name="color:background color" content="">
  38. <meta name="color:content color" content="">
  39. <meta name="color:border color" content="">
  40. <meta name="color:text color" content="">
  41. <meta name="color:link color" content="">
  42. <meta name="color:link hover color" content="">
  43. <meta name="color:text selection color" content="">
  44. <meta name="color:text selection bg color" content="">
  45.  
  46. <!-- Options -->
  47. <meta name="if:custom cursor" content="">
  48. <meta name="if:full background" content="">
  49.  
  50. <!-- Misc -->
  51. <title>{Title}</title>
  52. <link rel="shortcut icon" href="{Favicon}">
  53. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  54. <link rel="stylesheet" href="https://static.tumblr.com/qxrkgx6/RWPmgn2qa/normalize.min.css">
  55. {block:Description}
  56. <meta name="description" content="{MetaDescription}" />
  57. {/block:Description}
  58. <style type="text/css">
  59.  
  60. /* Text, Background, Links */
  61. body{
  62. background-color:white;
  63. background-image:Url('{image:background}');
  64. background-attachment:fixed;
  65. {block:iffullbackground}
  66. background-size: cover;
  67. {/block:iffullbackground}
  68. color:{color:text color};
  69. {block:ifcustomcursor};
  70. cursor:url("{image:custom cursor}"), default;
  71. {/block:ifcustomcursor};
  72. font-size:{text:text size}px;
  73. word-wrap:break-word;}
  74. a{
  75. color:{color:link color};
  76. text-decoration:none;}
  77. a:hover{
  78. cursor:help;
  79. color:{color:link hover color};
  80. text-decoration:none;}
  81. blockquote{
  82. margin:0 0 10px 10px;
  83. padding:0 0 0 10px;
  84. border-left:solid 1px #000;}
  85. ::selection{
  86. color:{color:text selection color};
  87. background:{color:text selection bg color};}
  88.  
  89. /* Sidebar, Posts */
  90. #content{
  91. width:500px;
  92. margin-left:100px;
  93. overflow:hidden;}
  94. .post, .naviga{
  95. width:480px;
  96. margin:0 0 25px 0;
  97. overflow:hidden;
  98. padding:5px;
  99. background-color:{color:content color};
  100. border:{text:border size}px {select:border style} {color:border color};}
  101. #sidebar{
  102. width:225px;
  103. background-color:{color:content color};
  104. border:{text:border size}px {select:border style} {color:border color};
  105. position:fixed;
  106. padding:5px;
  107. margin-left:-160px;}
  108. #wrapper{
  109. width:600px;
  110. margin:50px auto;}
  111.  
  112. /* Content */
  113. .title{
  114. font-weight:bold;
  115. font-size:35px;
  116. margin:0 0 10px 0;}
  117. .footer{
  118. padding: 5px;}
  119. .naviga{
  120. text-align:center;}
  121. .post img{
  122. max-width:100%;}
  123. .sidebar img{
  124. max-width:100%;}
  125.  
  126. /* Audio */
  127. #audioplayer{
  128. width:30px;
  129. height:25px;
  130. overflow:hidden;
  131. position:absolute;
  132. margin-top:40px;
  133. margin-bottom:40px;
  134. margin-left:35px;
  135. border-radius: 40px;
  136. opacity: 0.7;}
  137. .trackstuff{
  138. overflow:auto;
  139. margin-left:110px;
  140. margin-top:-75px;
  141. margin-bottom:50px;
  142. display:block;}
  143. .playbutton{
  144. margin-bottom:30px;
  145. margin-top:-60px;
  146. margin-left:35px;
  147. z-index:9;
  148. width:33px;
  149. height:30px;
  150. overflow:hidden;}
  151.  
  152. /* Misc */
  153. #c{
  154. font-size:25px;
  155. position:fixed;
  156. left:0px;
  157. bottom:0px;}
  158. #plz{
  159. position:fixed;
  160. bottom:0px;
  161. right:15px;}
  162. video{
  163. max-width: 100%;
  164. height: auto;}
  165.  
  166. {CustomCss}
  167. </style>
  168. </head>
  169. <body>
  170. <div id="wrapper">
  171. <div id="sidebar">
  172. <div class="sidebar img">
  173. <center>
  174. <a href="/"><img src="{image:sidebar}"></a>
  175. </center>
  176. </div>
  177. <center>{text:desc}</center>
  178. <center>
  179. <a href="{text:link one url}">{text:link one}</a>
  180. {text:link divider}
  181. <a href="{text:link two url}">{text:link two}</a>
  182. </center>
  183. </div>
  184.  
  185. <div id="content">
  186. {block:Posts}
  187. <!--{block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} --> {block:ContentSource}<!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />{/block:SourceLogo}
  188. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  189. {/block:ContentSource}
  190. <div class="post">
  191.  
  192. <!-- Text -->
  193. {block:Text}
  194. {block:Title}
  195. <div class="title">{Title}</div>
  196. {/block:Title}
  197. {Body}
  198. {/block:Text}
  199. {block:Chat}
  200. {block:Title}
  201. <div class="title">
  202. <h3><a href="{Permalink}">{Title}</a></h3></div>
  203. {/block:Title}
  204. {block:Lines}
  205. <div class="{Alt} user_{UserNumber}">
  206. {block:Label}
  207. <span class="label">{Label}</span>
  208. {/block:Label}{Line}
  209. </div>
  210. {/block:Lines}
  211. {/block:Chat}
  212.  
  213. <!-- Images --->
  214. {block:Photo}
  215. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}"/>{LinkCloseTag}
  216. {block:Caption}{Caption}{/block:Caption}
  217. {/block:Photo}
  218. {block:Photoset}
  219. {Photoset}
  220. {block:Caption}
  221. {Caption}
  222. {/block:Caption}
  223. {/block:Photoset}
  224.  
  225. <!-- Video -->
  226. {block:Video}
  227. {Video-500}
  228. {block:Caption}
  229. {Caption}
  230. {/block:Caption}
  231. {/block:Video}
  232.  
  233. <!-- Audio -->
  234. {block:Audio}
  235. <div id= "audioplayer">{AudioPlayerWhite}</div>
  236. {block:AlbumArt}
  237. <div id="albumart">
  238. <img src="{AlbumArtURL}" width="100">
  239. </div>
  240. {/block:AlbumArt}
  241. <div class="trackstuff">
  242. {block:TrackName}<b><i>{TrackName}</i></b>{/block:TrackName}<br>{block:Artist}<i>{Artist}</i>{/block:Artist}</div>
  243. {Caption}
  244. {/block:Audio}
  245.  
  246. <!-- Quote -->
  247. {block:Quote}
  248. <div class="quote">
  249. "{Quote}"
  250. {block:Source}
  251. <div class="source">- <i>{Source}</i></div>
  252. {/block:Source}
  253. </div>
  254. {/block:Quote}
  255.  
  256. <!-- Link -->
  257. {block:Link}
  258. <a href="{URL}" class="link" {Target}>{Name}</a>
  259. {block:Description}
  260. {Description}
  261. {/block:Description}
  262. {/block:Link}
  263.  
  264. <!-- Ask -->
  265. {block:Answer}
  266. <div class="question">{Asker}: {Question}</div>
  267. <div class="caption">{Answer}</div>
  268. {/block:Answer}
  269.  
  270. <!-- Footer -->
  271. {block:Date}
  272. <div class="footer">
  273. <hr width="100%" size="1" color="{color:text color}">
  274. <center><a href="{Permalink}">{TimeAgo}{block:NoteCount} ({NoteCountWithLabel}){/block:NoteCount}</a>, <a href="{ReblogUrl}">&#8634;</a>
  275. {block:HasTags}<br>{block:Tags}#<a href="{TagURL}">{Tag}</a> {/block:Tags}{/block:HasTags}</center>
  276. </div>
  277. {block:PermalinkPage}
  278. {block:NoteCount}
  279. {block:PostNotes}{PostNotes}{/block:PostNotes}
  280. {/block:NoteCount}
  281. {/block:PermalinkPage}
  282. <!--{block:NoRebloggedFrom}{block:RebloggedFrom}{ReblogParentName}{/block:RebloggedFrom}{/block:NoRebloggedFrom} -->
  283. {/block:Date}
  284.  
  285. </div>
  286. {/block:Posts}
  287.  
  288. {block:Pagination}
  289. <div class="naviga">
  290. {block:PreviousPage}
  291. <a href="{PreviousPage}">&#171; Back</a>
  292. {/block:PreviousPage}
  293. {block:NextPage}
  294. <a href="{NextPage}">Next &#187;</a>
  295. {/block:NextPage}
  296. </div>
  297. {/block:Pagination}
  298.  
  299. </div>
  300. </div>
  301.  
  302. <div id="plz">
  303. <img src="{image:floatie}" width="{text:floatie size}px">
  304. </div>
  305. <div id="c">
  306. <a href="https://jellyparty.tumblr.com/tagged/mine">ミ★</a>
  307. </div>
  308.  
  309. </body>
  310. </html>
Advertisement
Add Comment
Please, Sign In to add comment