Skip to content

Commit

Permalink
Fix: include base_variable in all pages
Browse files Browse the repository at this point in the history
Otherwise {{ base }} is not always set. This is safer.
  • Loading branch information
TrueBrain committed Jan 4, 2019
1 parent b3ff056 commit 58dfee9
Show file tree
Hide file tree
Showing 8 changed files with 10 additions and 0 deletions.
1 change: 1 addition & 0 deletions pages/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
active_nav: about
permalink: /about.html
---
{% include base_variable.html %}

<div id="section-full">
<div class="section-header">
Expand Down
1 change: 1 addition & 0 deletions pages/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
active_nav: contact
permalink: /contact.html
---
{% include base_variable.html %}

<div id="section-full">
<div class="section-header">
Expand Down
2 changes: 2 additions & 0 deletions pages/development.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
active_nav: development
permalink: /development.html
---
{% include base_variable.html %}

<div id="section-full">
<div class="section-header">
<div class="section-icon"></div>
Expand Down
1 change: 1 addition & 0 deletions pages/donate.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
active_nav: donate
permalink: /donate.html
---
{% include base_variable.html %}

<div id="section-full">
<div class="section-header">
Expand Down
1 change: 1 addition & 0 deletions pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
active_nav: home
permalink: /index.html
---
{% include base_variable.html %}

<div id="content-left">
<div id="content-right">
Expand Down
1 change: 1 addition & 0 deletions pages/news_archive.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
pagination:
enabled: true
---
{% include base_variable.html %}

<div id="section-full">
<div class="section-header">
Expand Down
2 changes: 2 additions & 0 deletions pages/policy.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
title: Policy
permalink: /policy.html
---
{% include base_variable.html %}

<div id="section-full">
<div class="section-header">
<div class="section-icon"></div>
Expand Down
1 change: 1 addition & 0 deletions pages/screenshots.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
active_nav: screenshots
permalink: /screenshots.html
---
{% include base_variable.html %}

<div id="section-full">
<div class="section-header">
Expand Down

0 comments on commit 58dfee9

Please sign in to comment.