Advertisement
incedothemes

Base Code #1 by Incedo

Jan 1st, 2014
6,548
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.67 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2.  
  3. <!----------------------------------------
  4. Base Code #1 by Incedo
  5. http://incedothemes.tumblr.com
  6. *Tips @ http://incedothemes.tumblr.com/basecodes
  7. *Please do not remove this credit
  8. and please credit me in your faq
  9. *DO NOT REDISTRIBUTE without proper credit
  10. Updated 1/1/14
  11. ------------------------------------------>
  12.  
  13. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  14.  
  15. <head>
  16.  
  17. <title>{Title}</title>
  18.  
  19. <!Meta-tags go here>
  20. <meta name="color:background" content="#ffffff" />
  21. <meta name="color:title" content="#636363" />
  22. <meta name="color:text" content="#000000" />
  23. <meta name="if:infinite scroll" content=""/>
  24. <meta name="font:title" content="baskerville" />
  25. <meta name="font:text" content="helvetica neue" />
  26.  
  27. <!Leave this stuff alone>
  28. <link rel="stylesheet" media="screen" href="http://openfontlibrary.org/face/web-symbols" rel="stylesheet" type="text/css"/>
  29. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  30. {block:Description}<meta name="description" content="{MetaDescription}"/>{/block:Description}
  31. <link rel="shortcut icon" href="{Favicon}"/>
  32. <link rel="alternate" type="application/rss+xml" href="{RSS}"/>
  33.  
  34. <!CSS starts here>
  35. <style type="text/css">
  36.  
  37. body {
  38. background-color:{color:background};
  39. color:{color:text};
  40. font-family: {font:text};
  41. font-size:12px;}
  42.  
  43. #wrapper {
  44. width:650px;
  45. margin-left:auto;
  46. margin-right:auto;}
  47.  
  48. #sidebar {
  49. top:50%;
  50. width:200px;
  51. position:fixed;}
  52.  
  53. #title {
  54. font-family: {font:title};
  55. color: {color:title};
  56. font-size: 20px;}
  57.  
  58. #entries {
  59. margin-left: 250px;
  60. width:400px;}
  61.  
  62. #posts {
  63. overflow:hidden;
  64. margin:10px;}
  65.  
  66. img, img a {
  67. border:none;
  68. line-height:0;
  69. max-width:100%;}
  70.  
  71. </style>
  72.  
  73. <style type="text/css">{CustomCSS}</style>
  74.  
  75. {block:ifinfinitescroll}
  76. <script type="text/javascript" src="http://codysherman.tumblr.com/tools/infinite-scrolling/code"></script>
  77. {/block:ifinfinitescroll}
  78.  
  79. </head>
  80.  
  81. <!HTML body starts here>
  82. <body>
  83.  
  84. <div id="wrapper">
  85.  
  86. <div id="sidebar">
  87.  
  88. <div id="title">{Title}</div>
  89.  
  90. {Description}<br>
  91.  
  92. <a href="/">home</a><br>
  93. <a href="/ask">ask</a><br>
  94. {block:HasPages}{block:Pages}<a href="{URL}">{Label}</a><br>{/block:Pages}{/block:HasPages}
  95. <a href="http://incedo.tumblr.com/">theme</a>
  96.  
  97. </div>
  98.  
  99. <div class = "autopagerize_page_element" >
  100. <div id="entries">
  101.  
  102. <!Post blocks start here>
  103. {block:Posts}
  104. <div id="posts">
  105.  
  106. {block:Text}
  107. {block:Title}{Title}{/block:Title}
  108. {Body}
  109. {/block:Text}
  110.  
  111. {block:Quote}
  112. "{Quote}"<br>
  113. — {Source}
  114. {/block:Quote}
  115.  
  116. {block:Link}
  117. <a href="{URL}">{Name}</a>
  118. {/block:Link}
  119.  
  120. {block:Chat}
  121. {block:Lines}{block:Label}{Label} {/block:Label}{Line}<br>{/block:Lines}
  122. {/block:Chat}
  123.  
  124. {block:Answer}
  125. {Asker} asked: {Question}<br>
  126. {Answer}
  127. {/block:Answer}
  128.  
  129. {block:Audio}
  130. {AudioPlayer}
  131. {/block:Audio}
  132.  
  133. {block:Video}
  134. {Video-400}
  135. {/block:Video}
  136.  
  137. {block:Photo}
  138. <img src="{PhotoURL-400}"/>
  139. {/block:Photo}
  140.  
  141. {block:Photoset}
  142. {Photoset-400}
  143. {/block:Photoset}
  144.  
  145. {block:caption}{Caption}{/block:caption}
  146. <a href="{Permalink}">{NoteCountWithLabel}</a> / <a href="{ReblogURL}">reblog</a>
  147.  
  148. {block:permalinkpage}
  149. {block:PostNotes}{PostNotes}{/block:PostNotes}
  150. {/block:PermalinkPage}
  151.  
  152. </div>
  153.  
  154. {/block:Posts}
  155.  
  156. {block:ifnotinfinitescroll}
  157. <div style="text-align:center">
  158. {block:Pagination}
  159. {block:PreviousPage}<a href="{PreviousPage}">Previous</a>{/block:PreviousPage}
  160. {block:NextPage}<a href="{NextPage}">Next</a>{/block:NextPage}
  161. {/block:Pagination}
  162. </div>
  163. {/block:ifnotinfinitescroll}
  164.  
  165. </div>
  166. </div>
  167. </div>
  168.  
  169. </body>
  170. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement