mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 07:45:01 -04:00
102 lines
3.8 KiB
Plaintext
102 lines
3.8 KiB
Plaintext
---
|
|
blog_title: My Octopress Blog
|
|
full_url:
|
|
twitter_user: imathis
|
|
tweet_count: 4
|
|
show_replies: false
|
|
|
|
disqus_short_name:
|
|
|
|
google_site_search_id:
|
|
google_analytics: true
|
|
|
|
---
|
|
|
|
!!! 1.1 Transitional
|
|
%html(xmlns="http://www.w3.org/1999/xhtml" xml:lang="en")
|
|
%head
|
|
%title= "#{page.title} - #{page.blog_title}"
|
|
- if page.respond_to? :description
|
|
%meta(name="description" content="#{page.description}")/
|
|
- if page.respond_to? :keywords
|
|
%meta(name="keywords" content="#{page.keywords}")/
|
|
%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")
|
|
- 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")
|
|
%body
|
|
#header
|
|
.page_width
|
|
%a.title(href="/")=page.blog_title
|
|
- 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")
|
|
#nav
|
|
.page_width
|
|
%ul
|
|
%li.alpha
|
|
%a(href="/") Blog
|
|
%li.omega
|
|
%a(href="/about") About
|
|
%li.subscribe
|
|
%a(href="/atom.xml") Subscribe
|
|
#page
|
|
.page_width
|
|
#main
|
|
- if page.respond_to? :date
|
|
%h2= page.title
|
|
= content
|
|
%p.pubdate
|
|
Published:
|
|
=page.date.strftime("%d %b, %Y")
|
|
- 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")
|
|
- else
|
|
= content
|
|
#sidebar
|
|
- if page.respond_to? :twitter_user
|
|
%h4 @#{page.twitter_user}
|
|
#twitter
|
|
#twitter_status
|
|
Status updating...
|
|
#footer
|
|
.page_width
|
|
= "Copyright © #{Time.now.strftime('%Y')} - #{page.blog_title} | "
|
|
%span.credit Powered by <a href="http://github.com/imathis/octopress/">Octopress</a>
|
|
- 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) + '&';
|
|
}
|
|
}
|
|
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) {} |