Skip to content
This repository was archived by the owner on Jan 24, 2019. It is now read-only.

Commit 8bd4871

Browse files
Change all instances of site.url to site.github.url
1 parent f3b92c3 commit 8bd4871

16 files changed

Lines changed: 36 additions & 36 deletions

_includes/footer.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
</footer>
1818

1919
<!-- If they're out, get some from the cellar -->
20-
<script>window.jQuery || document.write('<script src="{{ site.url }}/assets/js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
21-
<script src="{{ site.url }}/assets/js/retina.min.js"></script>
20+
<script>window.jQuery || document.write('<script src="{{ site.github.url }}/assets/js/vendor/jquery-1.9.1.min.js"><\/script>')</script>
21+
<script src="{{ site.github.url }}/assets/js/retina.min.js"></script>
2222

2323
<!-- Custom JS -->
24-
<script src="{{ site.url }}/assets/js/scripts.js"></script>
24+
<script src="{{ site.github.url }}/assets/js/scripts.js"></script>
2525

2626
<script src="//static.getclicky.com/js" type="text/javascript"></script>
2727
<script type="text/javascript">try{ clicky.init(100768068); }catch(e){}</script>

_includes/head-dark.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
<meta property="og:locale" content="en_US">
1111
<meta property="og:title" content="{% if page.title %}{{ page.title }} &#8211; {% endif %}{{ site.title }}">
1212
<meta property="og:description" content="{% if page.description %}{{ page.description | strip_html | strip_newlines | truncate: 120 }}{% else %}{{ page.content | strip_html | strip_newlines | truncate: 120 }}{% endif %}">
13-
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
13+
<meta property="og:url" content="{{ site.github.url }}{{ page.url }}">
1414
<meta property="og:site_name" content="{{ site.title }}">
1515

1616

17-
<link href="{{ site.url }}/feed.xml" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed">
17+
<link href="{{ site.github.url }}/feed.xml" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed">
1818

1919
<!-- http://t.co/dKP3o1e -->
2020
<meta name="HandheldFriendly" content="True">
@@ -24,11 +24,11 @@
2424
<!-- Type -->
2525
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Crimson+Text:400,400italic,700,700italic" rel='stylesheet' type='text/css' />
2626
<link href="//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700" rel='stylesheet' type='text/css'>
27-
<link rel="stylesheet" href="{{ site.url }}/assets/css/entypo.css" media="all">
27+
<link rel="stylesheet" href="{{ site.github.url }}/assets/css/entypo.css" media="all">
2828

2929

3030
<!-- For all browsers -->
31-
<link rel="stylesheet" href="{{ site.url }}/assets/css/i.css">
31+
<link rel="stylesheet" href="{{ site.github.url }}/assets/css/i.css">
3232

3333
<!-- Fresh Squeezed jQuery -->
3434

@@ -37,14 +37,14 @@
3737
<meta http-equiv="cleartype" content="on">
3838

3939
<!-- Load Modernizr -->
40-
<script src="{{ site.url }}/assets/js/vendor/modernizr-2.6.2.custom.min.js"></script>
40+
<script src="{{ site.github.url }}/assets/js/vendor/modernizr-2.6.2.custom.min.js"></script>
4141

4242
<!-- Load Google Analytics -->
4343
<script src="/assets/js/googleanalytics.js"></script>
4444

4545
<!-- Icons -->
4646
<!-- 16x16 -->
47-
<link rel="shortcut icon" href="{{ site.url }}/favicon.ico">
47+
<link rel="shortcut icon" href="{{ site.github.url }}/favicon.ico">
4848
</head>
4949

5050
<div id="bump">
@@ -64,7 +64,7 @@ <h1><a href="/">{{ site.title }}</a></h1>
6464
!-->
6565

6666
{% for link in site.links %}
67-
<li><a href="{% if link.external %}{{ link.url }}{% else %}{{ site.url }}{{ link.url }}{% endif %}" {% if link.external %}target="_blank"{% endif %}>{{ link.title }}</a></li>
67+
<li><a href="{% if link.external %}{{ link.url }}{% else %}{{ site.github.url }}{{ link.url }}{% endif %}" {% if link.external %}target="_blank"{% endif %}>{{ link.title }}</a></li>
6868
{% endfor %}
6969

7070
</ul>

_layouts/blog.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
{% if page.image.feature %}
66
<div class="overlay"></div>
7-
<div class="featured-image" style="background-image: url({{ site.url }}/images/{{ page.image.feature }})"></div>
7+
<div class="featured-image" style="background-image: url({{ site.github.url }}/images/{{ page.image.feature }})"></div>
88
{% else %}
99
<div class="overlay"></div>
10-
<div class="featured-image" style="background-image: url({{ site.url }}/images/beers.png)"></div>
10+
<div class="featured-image" style="background-image: url({{ site.github.url }}/images/beers.png)"></div>
1111
{% endif %}
1212

1313
<div id='bump'>
@@ -18,7 +18,7 @@
1818
{% for post in site.posts %}
1919
<li>
2020
<div class="deets" itemscope itemtype="http://schema.org/BlogPosting" itemprop="blogPost">
21-
<h1><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></h1>
21+
<h1><a href="{{ site.github.url }}{{ post.url }}">{{ post.title }}</a></h1>
2222
<p class="date"><time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">{{ post.date | date: "%B %d, %Y" }}</time></p>
2323
<p class="">{% if post.description %}{{ post.description | strip_html | strip_newlines | truncate: 120 }}{% else %}{{ post.content | strip_html | strip_newlines | truncate: 120 }}{% endif %}</p>
2424
</div>

_layouts/home.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
<div>
66
{% if page.image.feature %}
7-
<div class="home featured-image" style="background-image: url({{ site.url }}/images/{{ page.image.feature }})">
7+
<div class="home featured-image" style="background-image: url({{ site.github.url }}/images/{{ page.image.feature }})">
88
{% else %}
9-
<div class="home featured-image" style="background-image: url({{ site.url }}/images/beers.png)">
9+
<div class="home featured-image" style="background-image: url({{ site.github.url }}/images/beers.png)">
1010
{% endif %}
1111
<div class="header-content">
1212
<img src="/images/logos/devbeers/devbeers-white-transparent-1000x628.png" />

_layouts/page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<section class="article">
66

77
<div class="overlay"></div>
8-
<div class="featured-image" style="background-image: url({{ site.url }}/images/{{ page.image.feature }})"></div>
8+
<div class="featured-image" style="background-image: url({{ site.github.url }}/images/{{ page.image.feature }})"></div>
99
{% else %}
1010

1111
{% include head-dark.html %}

_layouts/post-index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
{% for post in site.posts %}
99
<li>
1010
<div class="deets" itemscope itemtype="http://schema.org/BlogPosting" itemprop="blogPost">
11-
<h1><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a></h1>
11+
<h1><a href="{{ site.github.url }}{{ post.url }}">{{ post.title }}</a></h1>
1212
<p class="date"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %d, %Y" }}</time></p>
1313
<p class="">{% if post.description %}{{ post.description | strip_html | strip_newlines | truncate: 120 }}{% else %}{{ post.content | strip_html | strip_newlines | truncate: 120 }}{% endif %}</p>
1414
</div>

_layouts/post-light-feature.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<section class="article">
66

77
<div class="overlay overlay-lighter"></div>
8-
<div class="featured-image" style="background-image: url({{ site.url }}/images/{{ page.image.feature }})"></div>
8+
<div class="featured-image" style="background-image: url({{ site.github.url }}/images/{{ page.image.feature }})"></div>
99
{% else %}
1010

1111
{% include head-dark.html %}

_layouts/post-no-feature.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<section class="article">
66

77
<div class="overlay"></div>
8-
<div class="featured-image" style="background-image: url({{ site.url }}/images/{{ page.image.feature }})"></div>
8+
<div class="featured-image" style="background-image: url({{ site.github.url }}/images/{{ page.image.feature }})"></div>
99
{% else %}
1010

1111
{% include head-dark.html %}

_layouts/post.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
<section class="article">
44

55
{% if page.image.feature %}
6-
<div class="featured-image" style="background-image: url({{ site.url }}/images/{{ page.image.feature }})">
6+
<div class="featured-image" style="background-image: url({{ site.github.url }}/images/{{ page.image.feature }})">
77
{% else %}
8-
<div class="featured-image" style="background-image: url({{ site.url }}/images/beers.png)">
8+
<div class="featured-image" style="background-image: url({{ site.github.url }}/images/beers.png)">
99
{% endif %}
1010
<div class="header-content">
1111
<h1>

checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ image:
66
feature: beers.png
77
---
88

9-
![devbeers logo]({{ site.url }}/images/logos/devbeers/devbeerslogo.png )
9+
![devbeers logo]({{ site.github.url }}/images/logos/devbeers/devbeerslogo.png )
1010

1111
### Checklist for running a devbeers
1212

0 commit comments

Comments
 (0)