Skip to content

Commit 0fec345

Browse files
committed
rename HOME_URL to HOME_PATH
1 parent a1a7efa commit 0fec345

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

Diff for: _includes/JB/setup

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
-->
55
{% if site.safe and site.JB.BASE_PATH %}
66
{% assign BASE_PATH = site.JB.BASE_PATH %}
7-
{% assign HOME_URL = site.JB.BASE_PATH %}
7+
{% assign HOME_PATH = site.JB.BASE_PATH %}
88
{% else %}
99
{% assign BASE_PATH = nil %}
10-
{% assign HOME_URL = "/" %}
10+
{% assign HOME_PATH = "/" %}
1111
{% endif %}
1212

1313
{% if site.JB.ASSET_PATH %}

Diff for: _includes/themes/mark-reid/default.html

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<title>{{ page.title }} &larr; {{ page.top }}</title>
88
<meta name="author" content="{{ site.author.name }}" />
99

10-
<link rel="start" href="{{ HOME_URL }}" />
10+
<link rel="start" href="{{ HOME_PATH }}" />
1111

1212
{% if page.keywords %}
1313
<meta name="keywords" content="{{ page.keywords }}">
@@ -29,11 +29,11 @@
2929

3030
<div id="header">
3131
<h1>
32-
<a href="{{ HOME_URL }}" title="{{ site.title }}">{{ site.title }}</a>
33-
<span class="byline">&larr; <a href="{{ HOME_URL }}">{{ site.author.name }}</a></span>
32+
<a href="{{ HOME_PATH }}" title="{{ site.title }}">{{ site.title }}</a>
33+
<span class="byline">&larr; <a href="{{ HOME_PATH }}">{{ site.author.name }}</a></span>
3434
</h1>
3535
<ul class="nav">
36-
<li><a class="home" href="{{ HOME_URL }}">Home</a></li>
36+
<li><a class="home" href="{{ HOME_PATH }}">Home</a></li>
3737
<li><a href="/archive.html">Archive</a></li>
3838
<li><a href="/pages.html">Pages</a></li>
3939
<li><a href="/categories.html">Categories</a></li>

Diff for: _includes/themes/mark-reid/post.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ <h1 class="emphnext">{{ page.title }}</h1>
99
{{ content }}
1010

1111
<address class="signature">
12-
<a class="author" href="{{ HOME_URL }}">{{ site.author.name }}</a>
12+
<a class="author" href="{{ HOME_PATH }}">{{ site.author.name }}</a>
1313
<span class="date">{{ page.date | date_to_long_string }}</span>
1414
<span class="location">{{ page.location }}</span>
1515
</address>

Diff for: _includes/themes/the-minimum/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<header class="the-header">
1919
<div class="unit-head">
2020
<div class="unit-inner unit-head-inner">
21-
<p class="logo"><a href="{{ HOME_URL }}">{{ site.title }}</a></p>
21+
<p class="logo"><a href="{{ HOME_PATH }}">{{ site.title }}</a></p>
2222
<nav class="nav-global">
2323
<ul>
2424
<li class="archive"><a href="/archive.html">archive</a></li>

Diff for: _includes/themes/tom/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
<div class="site">
2222
<div class="title">
23-
<a href="{{ HOME_URL }}">{{ site.title }}</a>
23+
<a href="{{ HOME_PATH }}">{{ site.title }}</a>
2424
<a class="extra" href="/archive.html">Archive</a>
2525
<a class="extra" href="/pages.html">Pages</a>
2626
<a class="extra" href="/categories.html">Categories</a>

Diff for: _includes/themes/twitter/default.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
<div class="topbar">
3030
<div class="fill">
3131
<div class="container">
32-
<a class="brand" href="{{ HOME_URL }}">{{ site.title }}</a>
32+
<a class="brand" href="{{ HOME_PATH }}">{{ site.title }}</a>
3333
<ul class="nav">
3434
{% assign pages_list = site.pages %}
3535
{% assign group = 'navigation' %}

0 commit comments

Comments
 (0)