more links
diff --git a/_includes/footer.html b/_includes/footer.html
index c108816..0c3594f 100755
--- a/_includes/footer.html
+++ b/_includes/footer.html
@@ -3,20 +3,20 @@
 		<div class="row">
 
 			<div class="col-12 col-sm-4">
-				<p><a href="/about">About</a></p>
-				<p><a href="/publications">Publications</a></p>
-				<p><a href="/contributing">Contributing</a></p>
-				<p><a href="/governance">Governance</a></p>
+				<p><a href="{{ "/about" | prepend: site.baseurl }}">About</a></p>
+				<p><a href="{{ "/publications" | prepend: site.baseurl }}">Publications</a></p>
+				<p><a href="{{ "/contributing" | prepend: site.baseurl }}">Contributing</a></p>
+				<p><a href="{{ "/governance" | prepend: site.baseurl }}">Governance</a></p>
 			</div><br>
 
 			<div class="col-12 col-sm-4">
-				<p><a href="/introduction">Documentation</a></p>
+				<p><a href="{{ "/introduction" | prepend: site.baseurl }}">Documentation</a></p>
 				<p><a href="http://gem5.org/Documentation">Old Documentation</a></p>
 				<p><a href="https://gem5.googlesource.com/public/gem5">Source</a></p>
 			</div><br>
 
 			<div class="col-12 col-sm-4">
-				<p><a href="/search">Search</a></p>
+				<p><a href="{{ "/search" | prepend: site.baseurl }}">Search</a></p>
 				<p><a href="#">Mailing Lists</a></p>
 				<p><a href="{{ site.sourceurl }}">Source For This Site</a></p>
 			</div>
diff --git a/_includes/head.html b/_includes/head.html
index be76ece..e5be52f 100755
--- a/_includes/head.html
+++ b/_includes/head.html
@@ -6,7 +6,7 @@
 	<title>gem5</title>
 
 	<!-- SITE FAVICON -->
-	<link rel="shortcut icon" type="image/gif" href="/assets/img/gem5ColorVert.gif"/>
+	<link rel="shortcut icon" type="image/gif" href="{{ "/assets/img/gem5ColorVert.gif" | prepend: site.baseurl }}"/>
 
 	<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
 	<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,300,700,800,600' rel='stylesheet' type='text/css'>
diff --git a/_includes/header.html b/_includes/header.html
index f6e2fb3..ed61d81 100755
--- a/_includes/header.html
+++ b/_includes/header.html
@@ -29,7 +29,7 @@
 				<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
 					<!-- Pull navigation from _data/documentation.yml -->
 					{% for item in site.data.documentation.docs %}
-            <a class="dropdown-item" href="{% if item.url %}{{ item.url | prepend: site.baseurl }}{% else %}{{ item.subitems[0].url }}{% endif %}">{{ item.title }}</a>
+            <a class="dropdown-item" href="{% if item.url %}{{ item.url | prepend: site.baseurl }}{% else %}{{ item.subitems[0].url | prepend: site.baseurl }}{% endif %}">{{ item.title }}</a>
 					{% endfor %}
 				</div>
 			</li>
diff --git a/index.html b/index.html
index be8ad51..feafd8c 100755
--- a/index.html
+++ b/index.html
@@ -3,7 +3,7 @@
 title: Home
 ---
 <header>
-  <img src="assets/img/gem5ColorVert.gif" height="200px;">
+  <img src="{{ "assets/img/gem5ColorVert.gif" | prepend: site.baseurl }}" height="200px;">
   <p>Modular platform for computer-system architecture research</p>
   <a href="{{ "/building" | prepend: site.baseurl }}"><button type="button" class="btn btn-primary" href="">Get Started</button></a>
   <a href="https://gem5.googlesource.com/public/gem5"><button type="button" class="btn btn-outline-primary">Source</button></a>