Skip to content

Commit

Permalink
Merge pull request tummychow#1 from byAtlas/master
Browse files Browse the repository at this point in the history
Not really maintaining this anymore, and it looks fine to me, so I'll take your word for it. Thanks!
  • Loading branch information
tummychow committed Sep 14, 2014
2 parents 8a4c58b + bef7665 commit 8f4d099
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions layouts/fixed/single.html
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{{ template "chrome/default_head.html" . }}
{{ partial "default_head.html" . }}

<div class="page">
<h1 class="page-title">{{ .Title }}</h1>
{{ .Content }}
</div>

{{ template "chrome/default_foot.html" . }}
{{ partial "default_foot.html" . }}
4 changes: 2 additions & 2 deletions layouts/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ template "chrome/default_head.html" . }}
{{ partial "default_head.html" . }}

{{ $pagination := 5 }}

Expand Down Expand Up @@ -32,4 +32,4 @@ <h1 class="post-title"><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
{{ end }}
</div>

{{ template "chrome/default_foot.html" . }}
{{ partial "default_foot.html" . }}
4 changes: 2 additions & 2 deletions layouts/indexes/post.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ template "chrome/default_head.html" . }}
{{ partial "default_head.html" . }}

<div class="post">
<h1 class="post-title">{{ .Title }}</h1>
Expand All @@ -9,4 +9,4 @@ <h1 class="post-title">{{ .Title }}</h1>
</ul>
</div>

{{ template "chrome/default_foot.html" . }}
{{ partial "default_foot.html" . }}
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en-us">

{{ template "chrome/head.html" . }}
{{ partial "head.html" . }}

<body>

{{ template "chrome/sidebar.html" . }}
{{ partial "sidebar.html" . }}

<!-- Wrap is the content to shift when toggling the sidebar. We wrap the
content to avoid any CSS collisions with our real content. -->
Expand Down
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions layouts/post/single.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{{ template "chrome/default_head.html" . }}
{{ partial "default_head.html" . }}

<div class="post">
<h1 class="post-title">{{ .Title }}</h1>
<span class="post-date">{{ .Date.Format .Site.Params.DateForm }}</span>
{{ .Content }}
</div>

{{ template "chrome/default_foot.html" . }}
{{ partial "default_foot.html" . }}

0 comments on commit 8f4d099

Please sign in to comment.