lostmemento

→ How to Theme: Vol III - Cheat Sheet

May 8th, 2013
2,783
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.45 KB | None | 0 0
  1. <html>
  2. <head>
  3.  
  4. <title>{Title}</title>
  5. <link rel="shortcut icon" href="{Favicon}">
  6. <link rel="altertnate" type="application/rss+xml" href="{RSS}">
  7. <meta name="description" content="" />
  8. <meta http-equiv="x-dns-prefetch-control" content="off"/>
  9.  
  10. <script type="text/javascript" src="http://static.tumblr.com/iuggpng/bGqm4yfv9/jquery-1.7.2.js"></script>
  11.  
  12. <style type="text/css">
  13.  
  14. body {
  15. font-size: 10px;
  16. font-family: Calibri, Candara, Segoe;
  17. color: #000;
  18. background-color: #f9f9f9;}
  19.  
  20. a {
  21. color: #cf2d85;
  22. text-decoration: none;
  23. -moz-transition-duration: 0.5s;
  24. -o-transition-duration: 0.5s;
  25. -webkit-transition-duration: 0.5s;
  26. transition-duration: 0.5s;}
  27.  
  28. a:hover {
  29. color: #000;
  30. -moz-transition-duration: 0.5s;
  31. -o-transition-duration: 0.5s;
  32. -webkit-transition-duration: 0.5s;
  33. transition-duration: 0.5s;}
  34.  
  35. .container {width: 800px; margin: auto;}
  36.  
  37. .sidebar {
  38. width: 200px;
  39. height: 200px;
  40. position: fixed;
  41. padding: 10px;
  42. background-color: #fff;}
  43.  
  44. .postcol {width: 540px; margin-left: 240px;}
  45.  
  46. .posts {margin-bottom: 20px; background-color: #fff; padding: 20px;}
  47. </style>
  48. </head>
  49.  
  50. <body>
  51. <div class="container">
  52.  
  53. <div class="sidebar">This is the sidebar div.
  54. <a href="/">This is a link.</a></div>
  55.  
  56. <div class="postcol">
  57. {block:Posts}
  58. <div class="posts">
  59.  
  60. <!---------------------------------------------------
  61. TEXT POSTS
  62. ---------------------------------------------------->
  63. {block:Text}
  64. {block:Title}<h2>{Title}</h2>{/block:Title}
  65. {Body}
  66. {/block:Text}
  67.  
  68. <!---------------------------------------------------
  69. ANSWER POSTS
  70. ---------------------------------------------------->
  71. {block:Answer}
  72. <div class="question">
  73. <img src="{AskerPortraitURL-40}"> {Asker} asked: {Question}
  74. </div>
  75. {Answer}
  76. {/block:Answer}
  77.  
  78. <!---------------------------------------------------
  79. QUOTE POSTS
  80. ---------------------------------------------------->
  81. {block:Quote}
  82. <div class="quote">
  83. <div class="quotetext_{Length}">"{Quote}"</div>
  84. {block:Source}<div class="source">{Source}</div>{/block:Source}
  85. </div>
  86. {/block:Quote}
  87.  
  88. <!---------------------------------------------------
  89. LINK POSTS
  90. ---------------------------------------------------->
  91. {block:Link}
  92. <h2><a href="{URL}">{Name}</a></h2>
  93. {block:Description}{Description}{/block:Description}
  94. {/block:Link}
  95.  
  96. <!---------------------------------------------------
  97. CHAT POSTS
  98. ---------------------------------------------------->
  99. {block:Chat}
  100. {block:Title}<h2>{Title}</h2>{/block:Title}
  101. <ul class="convo">{block:Lines}<li class="line">{block:Label}<span class="label">{Label}</span>{/block:Label}
  102. {Line}</li>{/block:Lines}</ul>
  103. {/block:Chat}
  104.  
  105. <!---------------------------------------------------
  106. PHOTO POSTS
  107. ---------------------------------------------------->
  108. {block:Photo}
  109. {LinkOpenTag}<img src="{PhotoURL-500}" alt="{PhotoAlt}" width="400px">{LinkCloseTag}
  110.  
  111. {block:Caption}{Caption}{/block:Caption}
  112. {/block:Photo}
  113.  
  114. <!---------------------------------------------------
  115. PHOTOSET POSTS
  116. ---------------------------------------------------->
  117. {block:Photoset}
  118. {Photoset-500}
  119. {block:Caption}{Caption}{/block:Caption}
  120. {/block:Photoset}
  121.  
  122. <!---------------------------------------------------
  123. VIDEO POSTS
  124. ---------------------------------------------------->
  125. {block:Video}
  126. {Video-500}
  127. {block:Caption}{Caption}{/block:Caption}
  128. {/block:Video}
  129. </div>
  130. {/block:Posts}
  131.  
  132. </div></div>
  133. </body>
  134. </html>
Advertisement
Add Comment
Please, Sign In to add comment