summaryrefslogtreecommitdiff
path: root/_includes/head.html
diff options
context:
space:
mode:
authorNicolas Kuttler <git@kuttler.eu>2015-02-12 22:40:15 +0100
committerNicolas Kuttler <git@kuttler.eu>2015-02-12 22:46:36 +0100
commit8c28becbb86e6cdb910cbb12221067b08cf43923 (patch)
tree3c6dbd8aeb1dfbd00e409938c0715bcef1510e2f /_includes/head.html
parent76820ed6ae9a96e97c9cac54f8aec16bab694cfb (diff)
downloadirssi.github.io-8c28becbb86e6cdb910cbb12221067b08cf43923.zip
Use the base url setting everywhere
With this merged all one has to do to serve the project as a github project page is to set the baseurl value to /project-name in _config.yml See http://nkuttler.github.io/irssi.github.io/
Diffstat (limited to '_includes/head.html')
-rw-r--r--_includes/head.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/_includes/head.html b/_includes/head.html
index b1c8ce5..a96a782 100644
--- a/_includes/head.html
+++ b/_includes/head.html
@@ -6,6 +6,6 @@
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{{ site.description }}">
- <link rel="stylesheet" href="/assets/css/bootstrap.min.css">
- <link rel="stylesheet" href="/assets/css/style.css">
+ <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/bootstrap.min.css">
+ <link rel="stylesheet" href="{{ site.baseurl }}/assets/css/style.css">
</head>