Skip to content
This repository was archived by the owner on Feb 27, 2018. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions sass/base/_theme.scss
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$noise-bg: image-url('/images/noise.png') top left !default;
$noise-bg: image-url('../images/noise.png') top left !default;
$img-border: inline-image('dotted-border.png');

// Main Link Colors
Expand All @@ -12,7 +12,7 @@ $main-bg: #fff !default;
$page-bg: #fff !default;
$article-border: #eeeeee !default;

$header-bg: url(/images/background.jpg) !default;
$header-bg: url(../images/background.jpg) !default;
$header-border: lighten(#418284, 15) !default;
$title-color: #f2f2f2 !default;
$subtitle-color: #ccc !default;
Expand Down Expand Up @@ -63,7 +63,7 @@ a {
}

html {
background: $page-bg image-url('/images/line-tile.png') top left;
background: $page-bg image-url('../images/line-tile.png') top left;
}
body {
> div {
Expand Down
2 changes: 1 addition & 1 deletion sass/partials/_frontpage.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
text-align: center;
img {
margin-top: 30px;
width: 80%%;
width: 80%;
}

article {
Expand Down
4 changes: 2 additions & 2 deletions sass/partials/events.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
margin: 0px;

li {
background-image: url(/images/calendar.png);
background-image: url(../images/calendar.png);
background-repeat: no-repeat;
background-position: 10px 15px;
font-size: 1em;
Expand All @@ -28,4 +28,4 @@ aside {
border-top: 0px;
}
}
}
}
3 changes: 3 additions & 0 deletions sass/partials/sidebar/_base.scss
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
.side-shadow-border {
@include box-shadow(#666 0 1px);
}
aside.sidebar {
overflow: hidden;
color: $sidebar-color;
Expand Down
2 changes: 1 addition & 1 deletion source/_includes/custom/header.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<hgroup>
<h1><a href="{{ root_url }}/"><img src='/images/logo.png'></a></h1>
<h1><a href="{{ root_url }}/"><img src='images/logo.png'></a></h1>
{% if site.subtitle %}
<h2>{{ site.subtitle }}</h2>
{% endif %}
Expand Down
2 changes: 1 addition & 1 deletion source/_includes/custom/navigation.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
<li><a href="{{ root_url }}/">Home</a></li>
<li><a href="{{ root_url }}/blog">News</a></li>
<!-- <li><a href="{{ root_url }}/contact">Contact</a></li> -->
<li><a href="{{ root_url }}/atom.xml"><img src='/images/rss.png' /> RSS</a></li>
<li><a href="{{ root_url }}/atom.xml"><img src='images/rss.png' /> RSS</a></li>
</ul>
2 changes: 1 addition & 1 deletion source/_layouts/frontpage.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div id="main">
<div id="content">
<div>
<img src="/images/logo.png" />
<img src="images/logo.png" />
<article role="article">
{{ content | expand_urls: root_url }}
</article>
Expand Down