Advertisement
kawaiibuu

Base 1

Jun 10th, 2014
3,035
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.35 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>{Title}</title>
  4. <link rel="shortcut icon" href="{Favicon}">
  5. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  6. {block:Description}
  7. <meta name="description" content="{MetaDescription}" />
  8. {/block:Description}
  9.  
  10. <!--
  11. HOT DAMN IS THAT A BASE CODE?!
  12. by softwaring.tumblr.com avaliable at jubileethemes.tumblr.com
  13.  
  14. LEARN FROM IT -- MESS WITH IT -- HAVE FUN WITH IT
  15. -->
  16.  
  17. <!-- color <meta name="color:" content=""/> -->
  18. <meta name="color:background" content="#FFF"/>
  19. <meta name="color:post background" content="#FFF"/>
  20. <meta name="color:text" content="#000"/>
  21. <meta name="color:links" content="#000"/>
  22. <meta name="color:borders" content="#d1d1d1"/>
  23. <meta name="color:permalink" content="#d1d1d1"/>
  24. <meta name="color:permalink text" content="#000"/>
  25.  
  26.  
  27. <!-- if <meta name="if:" content=""/> -->
  28. <meta name="if:one column" content="0"/>
  29. <meta name="if:two column" content="0"/>
  30. <meta name="if:sidebar image" content="0"/>
  31.  
  32.  
  33. <!-- images <meta name="image:" content=""/> -->
  34. <meta name="image:background" content=""/>
  35. <meta name="image:sidebar" content="http://static.tumblr.com/mqkrxog/vFrn6zfbx/halftone.png"/>
  36.  
  37.  
  38. <!-- text <meta name="text:" content=""/> -->
  39.  
  40.  
  41.  
  42. <!-- select <meta name="select:" content="" title=""/> -->
  43.  
  44.  
  45.  
  46. <style type="text/css">
  47. body {
  48. background: {color:background} url({image:background})top left fixed repeat;
  49. background-size: cover;
  50. /** change the fonts here **/
  51. font-size: 10px;
  52. font-family: 'Open Sans', sans-serif;
  53. color: {color:text};
  54. letter-spacing: 1px;
  55. line-height: 12px;
  56. text-align: center;
  57. }
  58.  
  59. /** remember this only works in chrome **/
  60. /** scrollbar **/
  61. ::-webkit-scrollbar{ }
  62. ::-webkit-scrollbar-thumb { }
  63. /** edit how text looks when highlighted **/
  64. ::selection { }
  65. ::-moz-selection { }
  66. ::-webkit-selection { }
  67.  
  68. /** this holds all your posts **/
  69. #wrapper {
  70. width: 860px;
  71. {block:ifonecolumn} width: 300px; {/block:ifonecolumn}
  72. {block:iftwocolumn} width: 600px; {/block:iftwocolumn}
  73. margin: 30px auto;
  74. }
  75.  
  76. /** this is where you style your posts **/
  77. #post {
  78. width: 250px;
  79. margin: 10px;
  80. padding: 5px;
  81. border: 1px solid {color:borders};
  82. background: {color:post background};
  83. }
  84. #post img {
  85. width:100%;
  86. }
  87. /** posts guts style **/
  88. .audio {
  89. background: black;
  90. padding: 5px;
  91. color: white;
  92. text-transform: uppercase;
  93. }
  94. .posttitle {
  95. background: transparent;
  96. padding: 10px;
  97. text-transform: uppercase;
  98. }
  99. .body {
  100. text-align: justify;
  101. padding: 10px;
  102. }
  103. a {
  104. color: {color:links};
  105. text-decoration: none;
  106. }
  107. blockquote {
  108. text-align: justify;
  109. padding: 5px;
  110. margin: 0px;
  111. }
  112. ul, li {
  113. padding: 5px;
  114. margin: 10px;
  115. text-align: justify;
  116. list-style-image:url('http://i.imgur.com/Khn3RHr.png');
  117. }
  118.  
  119. .permalinks {
  120. padding: 5px;
  121. background: {color:permalink};
  122. color: {color:permalink text};
  123. margin: 5px 0px 0px 0px;
  124. text-transform: uppercase;
  125. text-align: left;
  126. font-size: 9px;
  127. }
  128. .tags {
  129. padding: 5px;
  130. background: {color:permalink};
  131. color: {color:permalink text};
  132. margin: 5px 0px 0px 0px;
  133. text-transform: uppercase;
  134. text-align: center;
  135. font-size: 9px;
  136. }
  137.  
  138. /** sidebar styling **/
  139. #sidebar {
  140. position: fixed;
  141. width: 150px;
  142. padding: 15px;
  143. z-index: 999;
  144. left: 50px;
  145. margin-top: 100px;
  146. border: 1px solid {color:borders};
  147. background: {color:post background};
  148. }
  149. #sidebar img {
  150. width: 100px;
  151. border-radius: 50%;
  152. margin-bottom: 10px;
  153. border: 1px solid {color:permalink};
  154. {block:ifnotsidebarimage} display: none; {/block:ifnotsidebarimage}
  155. }
  156. #sidebar li {
  157. list-style: none;
  158. text-transform: uppercase;
  159. padding: 5px;
  160. margin: 5px 0px;
  161. text-align: center;
  162. border: 1px solid {color:borders};
  163. background: {color:permalink};
  164. }
  165. #sidebar li:hover {
  166. background: transparent;
  167. }
  168. .blogtitle {
  169. text-transform: uppercase;
  170. font-size: 14px;
  171. padding: 5px 5px 15px 5px;
  172. }
  173. ol.notes img { display:none; }
  174. {CustomCSS}
  175. </style>
  176. <!-- this is jquery it makes the theme work, leave this alone -->
  177. <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js"></script>
  178. <script type="text/javascript" src="http://masonry.desandro.com/js/jquery-1.7.1.min.js"></script>
  179. <script type="text/javascript" src="http://static.tumblr.com/twte3d7/4Wjm5wj58/disassemble_v3.js"></script>
  180. <!-- this is a hosted font from google -->
  181. <link href='http://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800' rel='stylesheet' type='text/css'>
  182. <!-- font awesome to change the font awesome icons go to http://fontawesome.io/icons/ -->
  183. <link href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
  184. </head>
  185. <body>
  186. <div id="wrapper">
  187. <div id="sidebar">
  188. <div class="blogtitle">{title}</div>
  189. <img src="{image:sidebar}"/>
  190. <li><i class="fa fa-home" style="float: left; font-size: 12px;"></i> <a href="/">home</a></li>
  191. <li><i class="fa fa-pencil-square-o" style="float: left; font-size: 12px;"></i><a href="/ask">contact</a></li>
  192. <li><i class="fa fa-archive" style="float: left; font-size: 12px;"></i><a href="/archive">index</a></li>
  193. <li><i class="fa fa-sign-out" style="float: left; font-size: 12px;"></i><a href="/submit">submit</a></li>
  194. <!-- change the credit if you use this as a base -->
  195. <li><i class="fa fa-paperclip" style="float: left; font-size: 12px;"></i><a href="http://jubileethemes.tumblr.com">credit</a></li>
  196. </div>
  197.  
  198. {block:Posts}
  199. <!-- the area below removes the VIA and SOURCES of posts -->
  200. {block:ContentSource}
  201. <!-- {SourceURL}{block:SourceLogo}<img src="{BlackLogoURL}"
  202. width="{LogoWidth}" height="{LogoHeight}" alt="{SourceTitle}" />
  203. {/block:SourceLogo}
  204. {block:NoSourceLogo}{SourceLink}{/block:NoSourceLogo} -->
  205. {/block:ContentSource}{block:ReblogParent}{/block:ReblogParent}
  206. <div id="post">
  207.  
  208. {block:Text}
  209. {block:Title}<div class="posttitle">{title}</div>{/block:Title}
  210. <div class="body">{body}</div>
  211. {/block:Text}
  212.  
  213. {block:Link}
  214. <div class="posttitle"><a href="{URL}" class="link" {Target}>{Name}</a></div>
  215. {block:Description}
  216. <div class="body">{Description}</div>
  217. {/block:Description}
  218. {/block:Link}
  219.  
  220. {block:Quote}
  221. {Quote}
  222. {block:Source}
  223. <p>&mdash; {Source}</p>
  224. {/block:Source}
  225. {/block:Quote}
  226.  
  227. {block:Photo}
  228. {block:IndexPage}<a href="{Permalink}">{/block:IndexPage}
  229. {block:PermalinkPage}{LinkOpenTag}{/block:PermalinkPage}
  230. <img src="{PhotoURL-HighRes}" alt="{PhotoAlt}"/>
  231. {block:PermalinkPage}{LinkCloseTag}{/block:PermalinkPage}
  232. {block:IndexPage}</a>{/block:IndexPage}
  233. {/block:Photo}
  234.  
  235. {block:Chat}
  236. <div class="body">
  237. {block:Title}
  238. {Title}
  239. {/block:Title}
  240. {block:Lines}
  241. {block:Label}
  242. <b>{Label}</b>
  243. {/block:Label}
  244. {Line}<br>
  245. {/block:Lines}
  246. </div>
  247. {/block:Chat}
  248.  
  249. {block:Video}
  250. {Video-250}
  251. {/block:Video}
  252.  
  253. {block:Photoset}
  254. {Photoset-250}
  255. {/block:Photoset}
  256.  
  257. {block:Audio}
  258. <div class="audio">
  259. {block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}
  260. {AudioPlayerBlack}
  261. {block:Artist}{Artist}{/block:Artist} - {block:TrackName}{TrackName}{/block:TrackName}
  262. </div>
  263. {/block:Audio}
  264.  
  265. <div class="permalinks">
  266. <a href="{Permalink}">{NoteCountwithLabel}</a>
  267. <a href="{ReblogURL}" target="_blank" class="details" style="float: right;">reblog &nbsp;<i class="fa fa-retweet"></i></a>
  268. </div>
  269. {block:HasTags}
  270. <div class="tags"><i class="fa fa-tags" style="float: left;"></i>
  271. {block:Tags}<a href="http://tumblr.com/tagged/{Tag}" target="blank">#{Tag}</a> {/block:Tags}
  272. </div>
  273. {/block:HasTags}
  274.  
  275. {block:PermalinkPage}
  276. Posted {TimeAgo} with {NoteCountWithLabel}<br>{block:HasTags}Tagged with {block:Tags}<a href="{TagURL}" style="margin-right:5px; text-decoration:underline;">#{Tag}</a>{/block:Tags}{/block:HasTags}<br>{block:RebloggedFrom}Reblogged from <a href="{ReblogParentURL}">{ReblogParentName}</a><br>Originally posted by <a href="{ReblogRootURL}">{ReblogRootName}</a>{/block:RebloggedFrom}
  277. {block:PostNotes}{PostNotes}{/block:PostNotes}
  278. {/block:PermalinkPage}
  279. </div>
  280.  
  281. {/block:Posts}
  282. <!-- this is for jquery's infinite scrolling -->
  283. {block:NextPage}<div id="page-nav"><a href="{NextPage}"></a>{/block:NextPage}</div>
  284. </body>
  285. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement