Advertisement
thehandyblog

Paint A Smile Theme

Aug 31st, 2013
1,265
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.84 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.  
  5. █▀▀ ▀▀█▀▀ █▀▀█ █▀▀█ ▀▀█▀▀ █▀▀ █▀▀█ █▀▀█ █▀▀▄
  6. ▀▀█ █ █▄▄▀ █▄▄█ █ █▀▀ █ █ █▄▄▀ ▀▀ █ █
  7. ▀▀▀ ▀ ▀ ▀▀ ▀ ▀ ▀ ▀ ▀▀▀▀ ▀ ▀▀ ▀▀▀
  8.  
  9. THEME # 18 (PAINT A SMILE)
  10.  
  11. ✔ ᴋᴇᴇᴘ ᴛʜᴇ ᴄʀᴇᴅɪᴛs ɪɴᴛᴀᴄᴛ.
  12. ✔ ᴅᴏ ɴᴏᴛ ᴜsᴇ ᴀs ʙᴀsᴇ ᴄᴏᴅᴇ.
  13. ✔ ᴅᴏ ɴᴏᴛ ᴄᴏᴘʏ ᴀɴʏ ᴘᴀʀᴛs ᴏғ ᴛʜᴇ ᴄᴏᴅᴇ.
  14.  
  15. ---->
  16.  
  17. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  18.  
  19.  
  20. <head>
  21.  
  22. <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script>
  23.  
  24. <title>{Title}</title>
  25.  
  26. <link rel="shortcut icon" href="{Favicon}">
  27.  
  28. <link rel="alternate" type="application/rss+xml" href="{RSS}">
  29.  
  30. {block:Description}
  31. <meta name="description" content="{MetaDescription}" />
  32. {/block:Description}
  33.  
  34.  
  35. <meta name="color:background" content="#ffffff"/>
  36. <meta name="color:text" content="#4d4d4d"/>
  37. <meta name="color:link" content="#5c5c5c"/>
  38. <meta name="color:borders" content="#e2e2e2"/>
  39. <meta name="color:link hover" content="#e4e4e4"/>
  40. <meta name="color:scrollbar" content="#dbdbdb"/>
  41. <meta name="color:accent" content="#eeeeee"/>
  42. <meta name="color:description bg" content="#111111"/>
  43. <meta name="color:description text" content="#ffffff"/>
  44.  
  45. <meta name="image:portrait" content=""/>
  46.  
  47. <meta name="if:bigger posts" content="">
  48.  
  49. <meta name="text:link1" content="link 1">
  50. <meta name="text:link1 url" content="/">
  51. <meta name="text:link2" content="link 2">
  52. <meta name="text:link2 url" content="/">
  53. <meta name="text:link3" content="link 3">
  54. <meta name="text:link3 url" content="/">
  55.  
  56.  
  57. <style type="text/css">
  58.  
  59.  
  60. body{
  61. background:{color:background};
  62. margin:0px;
  63. color:{color:text};
  64. font-size:9px;
  65. font-family:arial;
  66. line-height:130%;
  67. overflow-x:hidden;
  68. }
  69.  
  70. a{
  71. text-decoration:none;
  72. outline:none;
  73. -moz-outline-style:none;
  74. color:{color:link};
  75. -moz-transition-duration:0.5s;
  76. -webkit-transition-duration:0.5s;
  77. -o-transition-duration:0.5s;
  78. }
  79.  
  80. a:hover{
  81. color:{color:link hover};
  82. -moz-transition-duration:0.5s;
  83. -webkit-transition-duration:0.5s;
  84. -o-transition-duration:0.5s;
  85. }
  86.  
  87. img{
  88. border:none;
  89. }
  90.  
  91. blockquote{
  92. padding-left:5px;
  93. border-left:2px solid {color:borders};
  94. }
  95.  
  96. h1{
  97. font-size:10px;
  98. font-weight:500;
  99. }
  100.  
  101. h3{
  102. font-weight:500;
  103. text-align:justify;
  104. line-height:13px;
  105. font-style:italic;
  106. font-size:15px;
  107. }
  108.  
  109. ::-webkit-scrollbar{
  110. width: 7px;
  111. height:7px;
  112. background:{color:background};
  113. }
  114.  
  115. ::-webkit-scrollbar-thumb{
  116. background:{color:scrollbar};
  117. }
  118.  
  119. #entries{
  120. {block:IfNotBiggerPosts}
  121. width:400px;
  122. {/block:IfNotBiggerPosts}
  123. {block:IfBiggerPosts}
  124. width:500px;
  125. {block:IfBiggerPosts}
  126. margin-left:430px;
  127. margin-top:0px;
  128. }
  129.  
  130. #post{
  131. {block:IfNotBiggerPosts}
  132. width:400px;
  133. {/block:IfNotBiggerPosts}
  134. {block:IfBiggerPosts}
  135. width:500px;
  136. {block:IfBiggerPosts}
  137. padding-left:20px;
  138. padding-right:20px;
  139. padding-top:40px;
  140. }
  141.  
  142. #sidebar{
  143. width:245px;
  144. position:fixed;
  145. margin-left:130px;
  146. margin-top:200px;
  147. text-align:left;
  148. }
  149.  
  150. #sidebarimage img{
  151. width:245px;
  152. margin-top:7px;
  153. {Block:pagination}
  154. margin-top:15px;
  155. {/Block:pagination}
  156. }
  157.  
  158. #description{
  159. line-height:13px;
  160. padding-top:10px;
  161. padding-left:10px;
  162. padding-right:10px;
  163. padding-bottom:15px;
  164. background:{color:description bg};
  165. color:{color:description text};
  166. text-align:center;
  167. }
  168.  
  169. #pagination{
  170. width:245px;
  171. margin-top:30px;
  172. margin-bottom:0px;
  173. text-align:right;
  174. }
  175.  
  176. #pagination a{
  177. font-size:9px;
  178. margin-left:5px;
  179. text-decoration:underline;
  180. margin-right:5px;
  181. }
  182.  
  183. .ask{
  184. padding:10px;
  185. text-align:left;
  186. color:{color:text};
  187. background-color:{color:accent};
  188. }
  189.  
  190. .ans{
  191. text-align:left;
  192. padding:10px;
  193. padding-bottom:0px;
  194. color:{color:text};
  195. }
  196.  
  197. #audio{
  198. height:85px;
  199. }
  200.  
  201. #albumart img {
  202. width: 85px;
  203. height: 85px;
  204. position:absolute
  205. }
  206.  
  207. #mp {
  208. margin-left:95px;
  209. {block:IfNotBiggerPosts}
  210. width:205px;
  211. {/block:IfNotBiggerPosts}
  212. {block:IfBiggerPosts}
  213. width:305px;
  214. {/block:IfBiggerPosts}
  215. }
  216.  
  217. #info{
  218. border-bottom:1px solid {color:borders};
  219. padding-bottom:6px;
  220. }
  221.  
  222. #perm{
  223. padding-top:6px;
  224. border-top:1px dashed {color:borders};
  225. margin-top:20px;
  226. text-transform:uppercase;
  227. font-size:7px;
  228. letter-spacing:1px;
  229. text-align:left;
  230. {block:IfNotBiggerPosts}
  231. width:400px;
  232. {/block:IfNotBiggerPosts}
  233. {block:IfBiggerPosts}
  234. width:500px;
  235. {/block:IfBiggerPosts}
  236. }
  237.  
  238. #perm a{
  239. margin-left:7px;
  240. margin-right:7px;
  241. }
  242.  
  243. .date{
  244. padding:6px 0px;
  245. color:{color:link};
  246. margin-right:7px;
  247. background:{color:Accent};
  248. text-transform:uppercase;
  249. font-size:7px;
  250. letter-spacing:1px;
  251. -moz-transition-duration:0.5s;
  252. -webkit-transition-duration:0.5s;
  253. -o-transition-duration:0.5s;
  254. }
  255.  
  256. .date:hover{
  257. background:{color:background};
  258. }
  259.  
  260. #tags{
  261. padding-top:0px;
  262. padding-bottom:6px;
  263. border-bottom:1px dotted {color:borders};
  264. margin-top:7px;
  265. text-transform:lowercase;
  266. font-size:8px;
  267. letter-spacing:1px;
  268. }
  269.  
  270. #tags a{
  271. margin-left:4px;
  272. margin-right:4px;
  273. }
  274.  
  275. #notes{
  276. {block:IfNotBiggerPosts}
  277. width:440px;
  278. {/block:IfNotBiggerPosts}
  279. {block:IfBiggerPosts}
  280. width:540px;
  281. {/block:IfBiggerPosts}
  282. text-transform:uppercase;
  283. letter-spacing:1px;
  284. font-size:7px;
  285. margin-top:10px;
  286. margin-left:-20px;
  287. }
  288.  
  289. #notes img{
  290. width:10px;
  291. height:10px;
  292. margin-right:10px;
  293. }
  294.  
  295. #notes li{
  296. list-style-type:none;
  297. border-bottom:1px solid {color:borders};
  298. padding:10px 25px 10px 25px;
  299. text-align:left;
  300. }
  301.  
  302. ul.chat, .chat ol, .chat li{
  303. list-style:none;
  304. margin:0px;
  305. padding:2px;
  306. }
  307.  
  308. .label{
  309. text-decoration:underline;
  310. font-weight:700;
  311. margin-right:5px;
  312. }
  313.  
  314. #photo{
  315. margin-top:10px;
  316. }
  317.  
  318. #audiocap{
  319. padding:5px 10px;
  320. margin-top:10px;
  321. background:{color:accent};
  322. }
  323.  
  324. #navi{
  325. text-align:center;
  326. padding-top:15px;
  327. padding-bottom:15px;
  328. }
  329.  
  330. #navi a{
  331. text-transform:uppercase;
  332. letter-spacing:1px;
  333. font-size:7px;
  334. padding:2px 5px;
  335. margin-left:3px;
  336. margin-right:3px;
  337. color:{color:link};
  338. }
  339.  
  340. #navi a:hover{
  341. opacity:0;
  342. }
  343.  
  344. #quote{
  345. background:{color:description bg};
  346. color:{color:description text};
  347. padding:3px 15px;
  348. text-align:justify;
  349. }
  350.  
  351. {CustomCSS}
  352.  
  353.  
  354. </style>
  355.  
  356.  
  357. </head>
  358.  
  359.  
  360. <body>
  361.  
  362.  
  363.  
  364. <div id="sidebar">
  365.  
  366.  
  367. {Block:IfPortraitImage}<div id="sidebarimage"><a href="/"><img src="{image:portrait}"></a></div>{/Block:IfPortraitImage}
  368.  
  369. <div id="navi"><a href="/ask">mssg</a> {Block:IfLink1}<a href="{text:link1 url}">{text:link1}</a>{/Block:IfLink1} {Block:IfLink2}<a href="{text:link2 url}">{text:link2}</a>{/Block:IfLink2} {Block:IfLink3}<a href="{text:link3 url}">{text:link3}</a>{/Block:IfLink3}</div>
  370.  
  371. <div id="description"><span class="quo">❝ </span>{Description}</div><p>
  372.  
  373. {block:Pagination}
  374. <div id="pagination">
  375. {block:PreviousPage}<a href="{PreviousPage}">back</a> {/block:PreviousPage}
  376. {block:NextPage}— <a href="{NextPage}">forth</a>{/block:NextPage}
  377. </div>
  378. {/block:Pagination}
  379.  
  380. </div>
  381.  
  382.  
  383.  
  384. <div id="entries">
  385.  
  386. {block:Posts}
  387.  
  388. <div id="post">
  389.  
  390.  
  391. {block:Text}
  392. {block:Title}<h2>{Title}</h2>{/block:Title}
  393. {Body}
  394. {/block:Text}
  395.  
  396.  
  397. {block:Quote}
  398. <div id="quote"><h3>{Quote}</h3></div>
  399. <div style="text-align:right;"><h1>— {Source}</h1></div>
  400. {/block:Quote}
  401.  
  402.  
  403. {block:Link}
  404. <a href="{URL}"><h2>{Name}</h2></a>
  405. {block:Description}<p>{Description}</p>{/block:Description}
  406. {/block:Link}
  407.  
  408.  
  409. {block:Photo}
  410. <div id="photo">
  411. <center><img src="{PhotoURL-500}" width="{Block:IfNotBiggerPosts}400px{/Block:IfNotBiggerPosts}{Block:IfBiggerPosts}500px{Block:IfBiggerPosts}"/></center>
  412. {block:Caption}{Caption}{/block:Caption}
  413. </div>
  414. {/block:Photo}
  415.  
  416.  
  417. {block:Photoset}
  418. <center>{Block:IfNotBiggerPosts}{Photoset-400}{/Block:IfNotBiggerPosts}{Block:IfBiggerPosts}{Photoset-500}{/Block:IfBiggerPosts}</center>
  419. {block:Caption}{Caption}{/block:Caption}
  420. {/block:Photoset}
  421.  
  422.  
  423. {block:Chat}
  424. <ul class="chat">
  425. {block:Title}<h2>{Title}</h2>{/block:Title}
  426. {block:Lines}
  427. <li>{block:Label}<span class="label">{Label}</span>{/block:Label}&nbsp;{Line}</li>
  428. {/block:Lines}
  429. </ul>
  430. {/block:Chat}
  431.  
  432.  
  433. {block:Video}
  434. {Block:IfNotBiggerPosts}
  435. {Video-400}
  436. {/Block:IfNotBiggerPosts}
  437. {Block:IfBiggerPosts}
  438. {Video-500}
  439. {/Block:IfBiggerPosts}
  440. {block:Caption}{Caption}{/block:Caption}
  441. {/block:Video}
  442.  
  443.  
  444. {block:Answer}
  445. <div class="ask"><img src="{AskerPortraitURL-16}" width="16px" height="16px" style="margin-right:5px; margin-bottom:-3px;" /> <b>{Asker} said:</b> {Question}</div>
  446. <div class="ans">{Answer}</div>
  447. {/block:Answer}
  448.  
  449.  
  450. {block:Audio}
  451. <div id="audio">
  452. <div id="albumart">
  453. {block:AlbumArt}<img src="{AlbumArtURL}">{/block:AlbumArt}</div>
  454. <div id="mp">
  455. {block:TrackName}<b>Track:</b> {TrackName}<br>{/block:TrackName}
  456. {block:Artist}<b>Artist:</b> {Artist}<br>{/block:Artist}
  457. {block:Album}<b>Album:</b> {Album}<br>{/block:Album}
  458. <b>Played:</b> {PlayCount} times<p>
  459. {AudioPlayerWhite}
  460. </div>
  461. </div>
  462. {Block:Caption}<div id="audiocap">{Caption}</div>{/Block:Caption}
  463. {/block:Audio}
  464.  
  465.  
  466.  
  467. {block:Date}
  468. <div id="perm">
  469. <div id="info">
  470. <span class="date"><a href="{Permalink}">{DayOfWeek}, {DayOfMonth}{DayOfMonthSuffix} {ShortMonth}</a></span>{Block:NoteCount}<a href="{Permalink}">{NoteCount}♡</a>{/Block:NoteCount}{block:RebloggedFrom}<a style="margin-right:0px;">via</a> <a href="{ReblogParentURL}" style="margin-left:0px;">{ReblogParentName}</a>{/block:RebloggedFrom}{block:ContentSource}<a style="margin-right:0px;">&copy;</a> <a href="{SourceURL}" style="margin-left:0px">{SourceTitle}</a>{/block:ContentSource}
  471.  
  472. </div>
  473. {/block:Date}
  474.  
  475. {block:HasTags}<div id="tags"><img src="http://media.tumblr.com/tumblr_m4jkod4upX1rprbsf.png"> {block:Tags}<a href="{TagURL}">{Tag}</a> {/block:Tags}</div>{/block:HasTags}
  476. </div>
  477.  
  478.  
  479. </div>
  480.  
  481. {/block:Posts}
  482.  
  483. {block:PostNotes}<div id="notes">{PostNotes}</div>{/block:PostNotes}
  484.  
  485. <br><br><br><br><br>
  486.  
  487. </div>
  488.  
  489.  
  490.  
  491. </body>
  492.  
  493. <div style="position:fixed; letter-spacing:1px; bottom:10px; right:10px;">
  494. <a href="http://stratfor-d.tumblr.com">♡♡♡</a>
  495. </div>
  496.  
  497. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement