2009-10-18 21:42:54 -04:00
|
|
|
---
|
2009-10-20 09:50:16 -04:00
|
|
|
blog_title: My Octopress Blog
|
2009-11-07 19:17:54 -05:00
|
|
|
|
2009-11-07 13:05:10 -05:00
|
|
|
twitter_user: imathis
|
2009-11-07 23:51:36 -05:00
|
|
|
tweet_count: 3
|
2009-11-07 13:05:10 -05:00
|
|
|
show_replies: false
|
|
|
|
|
2009-11-08 00:39:02 -05:00
|
|
|
delicious_user: imathis
|
|
|
|
|
2009-11-07 19:17:54 -05:00
|
|
|
full_url:
|
2009-11-07 13:05:10 -05:00
|
|
|
disqus_short_name:
|
|
|
|
|
2009-11-05 22:30:03 -05:00
|
|
|
google_site_search_id:
|
2009-11-07 13:05:10 -05:00
|
|
|
google_analytics: true
|
|
|
|
|
2009-10-18 21:42:54 -04:00
|
|
|
---
|
|
|
|
|
2009-10-18 20:07:36 -04:00
|
|
|
!!! 1.1 Transitional
|
|
|
|
%html(xmlns="http://www.w3.org/1999/xhtml" xml:lang="en")
|
|
|
|
%head
|
2009-10-20 10:16:14 -04:00
|
|
|
%title= "#{page.title} - #{page.blog_title}"
|
2009-10-18 20:07:36 -04:00
|
|
|
- if page.respond_to? :description
|
2009-10-20 09:50:16 -04:00
|
|
|
%meta(name="description" content="#{page.description}")/
|
2009-10-18 20:07:36 -04:00
|
|
|
- if page.respond_to? :keywords
|
2009-10-20 09:50:16 -04:00
|
|
|
%meta(name="keywords" content="#{page.keywords}")/
|
2009-10-30 01:31:02 -04:00
|
|
|
%link(href="/stylesheets/screen.css" rel="stylesheet" media="screen projection" type="text/css")
|
|
|
|
%link(href="/atom.xml" rel="alternate" title="#{page.blog_title}" type="application/atom+xml")
|
2009-11-07 13:05:10 -05:00
|
|
|
- if page.respond_to? :twitter_user
|
|
|
|
:javascript
|
|
|
|
var twitter_user = "#{page.twitter_user}"
|
|
|
|
var show_replies = #{page.show_replies};
|
|
|
|
var tweet_count = #{page.tweet_count};
|
|
|
|
%script(src="/javascripts/mootools-yui-compressed.js" type="text/javascript")
|
|
|
|
%script(src="/javascripts/mootools-1.2.4.2-more.js" type="text/javascript")
|
|
|
|
%script(src="/javascripts/twitter.js" type="text/javascript")
|
|
|
|
- if page.respond_to? :google_analytics
|
|
|
|
%script(src="http://www.google-analytics.com/ga.js" type="text/javascript")
|
2009-10-18 20:07:36 -04:00
|
|
|
%body
|
|
|
|
#header
|
|
|
|
.page_width
|
2009-10-18 21:42:54 -04:00
|
|
|
%a.title(href="/")=page.blog_title
|
2009-11-07 13:05:10 -05:00
|
|
|
- if page.respond_to? :google_site_search_id
|
|
|
|
#search
|
|
|
|
%form(action="http://www.google.com/cse" id="cse-search-box")
|
|
|
|
%input(type="hidden" name="cx" value="#{page.google_site_search_id}")
|
|
|
|
%input(type="hidden" name="ie" value="UTF-8")
|
|
|
|
%input#q(type="text" name="q")
|
2009-10-21 12:39:53 -04:00
|
|
|
#nav
|
|
|
|
.page_width
|
|
|
|
%ul
|
2009-10-18 20:07:36 -04:00
|
|
|
%li.alpha
|
2009-11-05 22:30:03 -05:00
|
|
|
%a(href="/") Blog
|
2009-10-18 21:10:45 -04:00
|
|
|
%li.omega
|
2009-11-05 22:30:03 -05:00
|
|
|
%a(href="/about") About
|
2009-10-21 12:39:53 -04:00
|
|
|
%li.subscribe
|
2009-11-05 22:30:03 -05:00
|
|
|
%a(href="/atom.xml") Subscribe
|
2009-10-18 20:07:36 -04:00
|
|
|
#page
|
|
|
|
.page_width
|
2009-10-30 01:31:02 -04:00
|
|
|
#main
|
|
|
|
- if page.respond_to? :date
|
|
|
|
%h2= page.title
|
|
|
|
= content
|
|
|
|
%p.pubdate
|
|
|
|
Published:
|
|
|
|
=page.date.strftime("%d %b, %Y")
|
2009-11-07 13:05:10 -05:00
|
|
|
- if page.respond_to? :disqus_short_name
|
|
|
|
#disqus_thread
|
|
|
|
:javascript
|
|
|
|
var disqus_developer = true;
|
|
|
|
var disqus_url = "#{page.full_url}/#{page.url}";
|
|
|
|
%noscript
|
|
|
|
%a(href="http://designenthusiast.disqus.com/?url=ref") View the discussion thread
|
|
|
|
%script(type="text/javascript" src="http://disqus.com/forums/#{page.disqus_short_name}/embed.js")
|
2009-10-30 01:31:02 -04:00
|
|
|
- else
|
|
|
|
= content
|
|
|
|
#sidebar
|
2009-11-07 13:05:10 -05:00
|
|
|
- if page.respond_to? :twitter_user
|
2009-11-07 20:24:09 -05:00
|
|
|
%h4 Twitter <a class="small" href="http://twitter.com/#{page.twitter_user}">@#{page.twitter_user}</a>
|
2009-11-07 13:05:10 -05:00
|
|
|
#twitter
|
2009-11-07 20:24:09 -05:00
|
|
|
%ul#twitter_status
|
2009-11-07 13:05:10 -05:00
|
|
|
Status updating...
|
2009-11-08 00:39:02 -05:00
|
|
|
- if page.respond_to? :delicious_user
|
|
|
|
%h4 My Delicious <a class="small" href="http://delicious.com/#{page.delicious_user}">more →</a>
|
|
|
|
#delicious
|
|
|
|
%script(type="text/javascript" src="http://feeds.delicious.com/v2/js/#{page.delicious_user}?title=&count=5&sort=date&extended")
|
2009-10-18 20:07:36 -04:00
|
|
|
#footer
|
2009-10-20 10:08:12 -04:00
|
|
|
.page_width
|
2009-11-08 00:25:12 -05:00
|
|
|
Copyright © #{Time.now.strftime('%Y')} - #{page.blog_title} -
|
2009-11-05 22:30:03 -05:00
|
|
|
%span.credit Powered by <a href="http://github.com/imathis/octopress/">Octopress</a>
|
2009-11-07 13:05:10 -05:00
|
|
|
- if page.respond_to? :disqus_short_name
|
|
|
|
//Disqus Commens code
|
|
|
|
:javascript
|
|
|
|
(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) + '&';
|
|
|
|
}
|
2009-11-05 23:36:37 -05:00
|
|
|
}
|
2009-11-07 13:05:10 -05:00
|
|
|
document.write('<script charset="utf-8" type="text/javascript" src="http://disqus.com/forums/#{page.disqus_short_name}/get_num_replies.js' + query + '"></' + 'script>');
|
|
|
|
})();
|
|
|
|
- if page.respond_to? :google_analytics
|
|
|
|
//Google Analytics code
|
|
|
|
:javascript
|
|
|
|
try {
|
|
|
|
var pageTracker = _gat._getTracker("UA-10876422-1");
|
|
|
|
pageTracker._trackPageview();
|
|
|
|
} catch(err) {}
|