/themes/tj-clean/base.html

https://github.com/yuvipanda/lemoncurry · HTML · 75 lines · 73 code · 2 blank · 0 comment · 0 complexity · c458ce584f40fcc85cad99d088b4b981 MD5 · raw file

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
  3. <head profile="http://gmpg.org/xfn/11">
  4. <title>
  5. {% block title %}
  6. {% endblock %} | {{ settings.name }}
  7. </title>
  8. <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  9. <link rel="stylesheet" type="text/css" href="{{settings.base_url}}static/style.css" />
  10. {{ hooks.as_string("html_head") }}
  11. </head>
  12. <body>
  13. <div class="container">
  14. <div class="header">
  15. <h1><a href="/">{{settings.name}}</a> <span>{{settings.tagline}}</span></h1>
  16. <div class="stripcontainer">
  17. <div class="strip" id="projects">
  18. <strong>An 18 year old guy from Chennai, India who codes, photographs & has fun</strong> <a href="/about-me.html"><small>More...</small></a>
  19. </div>
  20. </div>
  21. <br />
  22. {% block content %}
  23. {% endblock %}
  24. <br />
  25. <div class="footer">
  26. <div style="width:200px;">
  27. <p><strong>About Me</strong></p>
  28. <p>I am Yuvi. I am 18. I live in Chennai, India. I study in an (IMO) awesome college. I have fun. I code. I photograph. I blog. I text. I organize stuff for my college. I just mess around a lot. I have fun :)</p>
  29. </div>
  30. <div>
  31. <p><strong>My Stuff</strong></p>
  32. <ul style="list-style:none">
  33. <li><a href="http://github.com/yuvipanda">My Code</a></li>
  34. <li><a href="http://flickr.com/photos/yuvi">My Photographs</a></li>
  35. <li><small>...will add more here</small></li>
  36. </ul>
  37. </div>
  38. <div>
  39. <p><strong>Me</strong></p>
  40. <ul style="list-style:none;">
  41. <li>
  42. <img src="http://www.google.com/s2/favicons?domain=flickr.com" /> <a href="http://flickr.com/photos/yuvi">Flickr</a></li>
  43. <li><img src="http://www.google.com/s2/favicons?domain=twitter.com" /><a href="http://twitter.com/yuvipanda">Twitter</a></li>
  44. <li><img src="http://www.google.com/s2/favicons?domain=friendfeed.com" /><a href="http://friendfeed.com/yuvipanda">FriendFeed</a></li>
  45. <li><img src="http://www.google.com/s2/favicons?domain=github.com" /><a href="http://github.com/yuvipanda">GitHub</a></li>
  46. </ul>
  47. </div>
  48. </div>
  49. <br />
  50. <br />
  51. <div class="copyright">
  52. <p>
  53. {{settings.name}} powered by HiSlain using <a href="http://theojones.net/tj-clean-wordpress-theme">TJ Clean Theme</a> ported from Wordpress
  54. </p>
  55. </div>
  56. </div>
  57. </div>
  58. <script type="text/javascript">
  59. //<![CDATA[
  60. (function() {
  61. var links = document.getElementsByTagName('a');
  62. var query = '?';
  63. for(var i = 0; i < links.length; i++) {
  64. if(links[i].href.indexOf('#disqus_thread') >= 0) {
  65. query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
  66. }
  67. }
  68. document.write('<script charset="utf-8" type="text/javascript" src="http://disqus.com/forums/yuvisense/get_num_replies.js' + query + '"></' + 'script>');
  69. })();
  70. //]]>
  71. </script>
  72. </body>
  73. </html>