Skip to content

Commit

Permalink
try relative link fix
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-wells committed Dec 30, 2017
1 parent dbef20a commit 61d8c60
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@
</title>

<!-- CSS -->
<link rel="stylesheet" href="{{ site.baseurl }}public/css/poole.css">
<link rel="stylesheet" href="{{ site.baseurl }}public/css/syntax.css">
<link rel="stylesheet" href="{{ site.baseurl }}public/css/hyde.css">
<link rel="stylesheet" href="{{ "public/css/poole.css" | relative_url }}">
<link rel="stylesheet" href="{{ "public/css/syntax.css" | relative_url }}">
<link rel="stylesheet" href="{{ "public/css/hyde.css" | relative_url }}">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">

<!-- Icons -->
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}public/apple-touch-icon-144-precomposed.png">
<link rel="shortcut icon" href="{{ site.baseurl }}public/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ "public/apple-touch-icon-144-precomposed.png" | relative_url }}">
<link rel="shortcut icon" href="{{ "public/favicon.ico" | relative_url }}">

<!-- RSS -->
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml">
Expand Down
4 changes: 2 additions & 2 deletions _includes/sidebar.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
<div class="container sidebar-sticky">
<div class="sidebar-about">
<h1>
<a href="{{ site.baseurl }}">
<a href="{{ "/" | relative_url }}">
{{ site.title }}
</a>
</h1>
<p class="lead">Molecular biologist turned statistician.</p>
</div>

<nav class="sidebar-nav">
<a class="sidebar-nav-item" href="{{ site.baseurl }}"><i class="fa fa-home fa-fw" aria-hidden="true"></i> Home</a>
<a class="sidebar-nav-item" href="{{ "/" | relative_url }}"><i class="fa fa-home fa-fw" aria-hidden="true"></i> Home</a>
<a class="sidebar-nav-item" href="https://twitter.com/danieljohnwells"><i class="fa fa-twitter" aria-hidden="true"></i>&nbsp; Twitter</a>
<a class="sidebar-nav-item" href="mailto:[email protected]"><i class="fa fa-envelope" aria-hidden="true"></i>&nbsp; Email</a>
<a class="sidebar-nav-item" href="https://github.com/daniel-wells"><i class="fa fa-github" aria-hidden="true"></i>&nbsp; Github</a>
Expand Down

0 comments on commit 61d8c60

Please sign in to comment.