Skip to content

Commit

Permalink
Merge pull request nightscout#3 from evbogue/master
Browse files Browse the repository at this point in the history
remove extra '/'
  • Loading branch information
balupton committed Dec 12, 2013
2 parents 8b8e2a3 + e7fab95 commit ff25ba5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/documents/atom.xml.eco
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
<% for document in @getCollection('posts').toJSON(): %>
<entry>
<title><%= document.title %></title>
<link href="<%= @site.url+'/'+document.url %>"/>
<link href="<%= @site.url+document.url %>"/>
<updated><%= document.date.toISOString() %></updated>
<id><%= @site.url+'/'+document.url %></id>
<id><%= @site.url+document.url %></id>
<content type="html"><%= document.contentRendered %></content>
</entry>
<% end %>
Expand Down
8 changes: 4 additions & 4 deletions src/layouts/default.html.jade
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ html(lang="en")

// Icons
link(rel="shortcut icon", href="ico/favicon.ico")
link(rel="apple-touch-icon-precomposed", sizes="144x144", href="ico/apple-touch-icon-144-precomposed.png")
link(rel="apple-touch-icon-precomposed", sizes="114x114", href="ico/apple-touch-icon-114-precomposed.png")
link(rel="apple-touch-icon-precomposed", sizes="72x72", href="ico/apple-touch-icon-72-precomposed.png")
link(rel="apple-touch-icon-precomposed", href="ico/apple-touch-icon-57-precomposed.png")
link(rel="apple-touch-icon-precomposed", sizes="144x144", href="/ico/apple-touch-icon-144-precomposed.png")
link(rel="apple-touch-icon-precomposed", sizes="114x114", href="/ico/apple-touch-icon-114-precomposed.png")
link(rel="apple-touch-icon-precomposed", sizes="72x72", href="/ico/apple-touch-icon-72-precomposed.png")
link(rel="apple-touch-icon-precomposed", href="/ico/apple-touch-icon-57-precomposed.png")

//- Shims: IE6-8 support of HTML5 elements
//if lt IE 9
Expand Down

0 comments on commit ff25ba5

Please sign in to comment.