/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
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US">
- <head profile="http://gmpg.org/xfn/11">
- <title>
- {% block title %}
- {% endblock %} | {{ settings.name }}
- </title>
- <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
- <link rel="stylesheet" type="text/css" href="{{settings.base_url}}static/style.css" />
- {{ hooks.as_string("html_head") }}
- </head>
- <body>
- <div class="container">
- <div class="header">
- <h1><a href="/">{{settings.name}}</a> <span>{{settings.tagline}}</span></h1>
- <div class="stripcontainer">
- <div class="strip" id="projects">
- <strong>An 18 year old guy from Chennai, India who codes, photographs & has fun</strong> <a href="/about-me.html"><small>More...</small></a>
- </div>
- </div>
- <br />
- {% block content %}
- {% endblock %}
- <br />
- <div class="footer">
- <div style="width:200px;">
- <p><strong>About Me</strong></p>
- <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>
- </div>
- <div>
- <p><strong>My Stuff</strong></p>
- <ul style="list-style:none">
- <li><a href="http://github.com/yuvipanda">My Code</a></li>
- <li><a href="http://flickr.com/photos/yuvi">My Photographs</a></li>
- <li><small>...will add more here</small></li>
- </ul>
- </div>
- <div>
- <p><strong>Me</strong></p>
- <ul style="list-style:none;">
- <li>
- <img src="http://www.google.com/s2/favicons?domain=flickr.com" /> <a href="http://flickr.com/photos/yuvi">Flickr</a></li>
- <li><img src="http://www.google.com/s2/favicons?domain=twitter.com" /><a href="http://twitter.com/yuvipanda">Twitter</a></li>
- <li><img src="http://www.google.com/s2/favicons?domain=friendfeed.com" /><a href="http://friendfeed.com/yuvipanda">FriendFeed</a></li>
- <li><img src="http://www.google.com/s2/favicons?domain=github.com" /><a href="http://github.com/yuvipanda">GitHub</a></li>
- </ul>
- </div>
- </div>
- <br />
- <br />
- <div class="copyright">
- <p>
- {{settings.name}} powered by HiSlain using <a href="http://theojones.net/tj-clean-wordpress-theme">TJ Clean Theme</a> ported from Wordpress
- </p>
- </div>
- </div>
- </div>
- <script type="text/javascript">
- //<![CDATA[
- (function() {
- var links = document.getElementsByTagName('a');
- var query = '?';
- for(var i = 0; i < links.length; i++) {
- if(links[i].href.indexOf('#disqus_thread') >= 0) {
- query += 'url' + i + '=' + encodeURIComponent(links[i].href) + '&';
- }
- }
- document.write('<script charset="utf-8" type="text/javascript" src="http://disqus.com/forums/yuvisense/get_num_replies.js' + query + '"></' + 'script>');
- })();
- //]]>
- </script>
- </body>
- </html>