Skip to content

Commit

Permalink
v1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
eliottvincent committed Dec 31, 2019
1 parent 76578fc commit d514d0f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,15 @@ This is an example of a "Blog" page, displaying a list of posts.


Your website is ready!


### Development

#### Build and publish the gem
```sh
gem build bay_jekyll_theme.gemspec
```

```sh
gem push bay_jekyll_theme-1.x.x.gem
```
4 changes: 2 additions & 2 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<header class="site-header">
<div class="wrapper">
<a class="site-title" href="{{ site.baseurl }}/">
<a class="site-title" href="{{ "" | prepend: site.baseurl | prepend: site.url }}/">
<img src="{{ "/assets/img/title.png" | absolute_url }}" alt="{{ site.title }}" />
</a>

Expand All @@ -14,7 +14,7 @@
{% else %}
{% assign page_link = "/" | append: page.name | downcase %}
{% endif %}
{% assign page_link = page_link | prepend: site.baseurl | prepend: site.url %}
{% assign page_link = page_link | absolute_url %}
<a class="page-link" href="{{ page_link }}">
{{ page.name }}
</a>
Expand Down
2 changes: 1 addition & 1 deletion bay_jekyll_theme.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Gem::Specification.new do |spec|
spec.name = "bay_jekyll_theme"
spec.version = "1.0.9"
spec.version = "1.0.10"
spec.authors = ["Eliott Vincent"]
spec.email = ["[email protected]"]

Expand Down

0 comments on commit d514d0f

Please sign in to comment.