aboutsummaryrefslogtreecommitdiff
path: root/source/_layouts/default.haml
blob: 30f4da19b7936ab851f841f984ca85b55554d57f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
---
blog_title: My Octopress Blog
google_site_search_id: 
---

!!! 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")
    %script(src="/javascripts/mootools-yui-compressed.js" type="text/javascript")
    %script(src="/javascripts/jsonp.js" type="text/javascript")
    %script(src="/javascripts/twitter_gitter.js" type="text/javascript")
    %script(src="/javascripts/twitter.js" type="text/javascript")
    %script(src="http://www.google-analytics.com/ga.js" type="text/javascript")
  %body
    #header
      .page_width
        %a.title(href="/")=page.blog_title
        #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")
          - else
            = content
        #sidebar
          #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>
  
    //Google Analytics code
    :javascript
      try {
      var pageTracker = _gat._getTracker("UA-10876422-1");
      pageTracker._trackPageview();
      } catch(err) {}