Fix paths.

This commit is contained in:
Maruan Al-Shedivat 2016-07-05 05:06:21 -04:00
parent efb2489b07
commit 275236d0f8
2 changed files with 5 additions and 5 deletions

View File

@ -8,8 +8,8 @@ description: > # this means to ignore newlines until "url:"
A simple, whitespace theme for academics. Based on [*folio](https://github.com/bogoli/-folio) design.
last_updated: July 5, 2016
url: # the base hostname & protocol for your site
baseurl: /al-folio/ # the subpath of your site, e.g. /blog/
url: https://alshedivat.github.io/al-folio # the base hostname & protocol for your site
baseurl: # the subpath of your site, e.g. /blog/
# Social
github_username: # put your github username

View File

@ -6,9 +6,9 @@
<title>{{ site.name }}{% if page.title and page.url != "/" %} | {{ page.title }}{% endif %}</title>
<meta name="description" content="{{ site.description }}">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/main.css">
<link rel="stylesheet" href="{{ '/assets/css/main.css' | prepend: site.baseurl | prepend: site.url }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/font-awesome.min.css">
<link rel="stylesheet" href="{{ site.baseurl }}/assets/css/academicons.css">
<link rel="stylesheet" href="{{ '/assets/css/font-awesome.min.css' | prepend: site.baseurl | prepend: site.url }}">
<link rel="stylesheet" href="{{ '/assets/css/academicons.css' | prepend: site.baseurl | prepend: site.url }}">
</head>