Skip to content

Commit

Permalink
fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
KingFelix committed Sep 16, 2016
1 parent c089f9b commit 2674dc1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ author:
url: "http://www.jacoporabolini.com"

# Build settings
baseurl: /emerald/ # Change this to your relative path (ex: /blog/), or leave just a /
baseurl: /emerald # Change this to your relative path (ex: /blog/), or leave just a /
markdown: kramdown
source: .
destination: ./_site
Expand All @@ -25,6 +25,10 @@ defaults:
values:
layout: "post"

# Plugins
gems:
- jekyll-paginate

# Custom variables
version: "1.1.0"

Expand Down
2 changes: 1 addition & 1 deletion _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<title>{%if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>

<!-- CSS & fonts -->
<link rel="stylesheet" href="{{ "css/main.css" | prepend: site.baseurl }}">
<link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,900,400italic%7CSignika:700,300,400,600' rel='stylesheet' type='text/css'>

<!-- RSS -->
Expand Down
2 changes: 1 addition & 1 deletion _includes/header.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<header id="header">
<a href="{{ site.baseurl }}">
<img src="{{ "img/emerald.svg" | prepend: site.baseurl }}" alt="Emerald Logo">
<img src="{{ "/img/emerald.svg" | prepend: site.baseurl }}" alt="Emerald Logo">
<h1>emerald</h1>
</a>
</header>
2 changes: 1 addition & 1 deletion _includes/script.html
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<script src="{{ "js/main.js" | prepend: site.baseurl }}"></script>
<script src="{{ "/js/main.js" | prepend: site.baseurl }}"></script>

0 comments on commit 2674dc1

Please sign in to comment.