Skip to content

Commit

Permalink
Merge pull request #73 from Lednerb/development
Browse files Browse the repository at this point in the history
Hotfix broken links
  • Loading branch information
Lednerb committed May 5, 2018
2 parents c447220 + e5668b0 commit 6681ec9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [Unreleased]

## [1.4.1] - 2018-05-05
### Fixed
- Broken links #72

## [1.4.0] - 2018-05-05
### Added
- Support for Ukrain languge
Expand Down Expand Up @@ -38,6 +42,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.


[Unreleased]: https://github.com/Lednerb/bilberry-hugo-theme/compare/1.4.0...HEAD
[1.4.1]: https://github.com/Lednerb/bilberry-hugo-theme/compare/1.4.0...1.4.1
[1.4.0]: https://github.com/Lednerb/bilberry-hugo-theme/compare/1.3.0...1.4.0
[1.3.0]: https://github.com/Lednerb/bilberry-hugo-theme/compare/1.2.2...1.3.0

10 changes: 5 additions & 5 deletions layouts/_default/baseof.html
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<meta name="keywords" content="{{ .Site.Params.keywords }}">
{{ .Hugo.Generator }}

<link rel="icon" type="image/png" href="{{ "/favicon-32x32.png" | relURL }}" sizes="32x32">
<link rel="icon" type="image/png" href="{{ "/favicon-16x16.png" | relURL }}" sizes="16x16">
<link rel="icon" type="image/png" href="{{ "/favicon-32x32.png" | absURL }}" sizes="32x32">
<link rel="icon" type="image/png" href="{{ "/favicon-16x16.png" | absURL }}" sizes="16x16">

<link rel="stylesheet" href="{{ "dist/theme.css" | relURL }}">

Expand All @@ -20,7 +20,7 @@

{{ if isset .Site.Params "css_modules" }}
{{ range .Site.Params.css_modules }}
<link rel="stylesheet" href="{{ . | relURL }}">
<link rel="stylesheet" href="{{ . | absURL }}">
{{ end }}
{{ end }}

Expand All @@ -45,11 +45,11 @@
{{ end }}

<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.19.1/moment-with-locales.min.js" integrity="sha256-TbOIe++NbC9P3KTtUMJ5wcROlBdnRqrPleLdpPg3xxE=" crossorigin="anonymous" type="application/javascript"></script>
<script src="{{ "dist/theme.js" | relURL }}" type="application/javascript"></script>
<script src="{{ "dist/theme.js" | absURL }}" type="application/javascript"></script>

{{ if isset .Site.Params "js_modules" }}
{{ range .Site.Params.js_modules }}
<script src="{{ . | relURL }}" type="application/javascript"></script>
<script src="{{ . | absURL }}" type="application/javascript"></script>
{{ end }}
{{ end }}

Expand Down
4 changes: 2 additions & 2 deletions layouts/partials/header.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<header>
<div class="container">
<div class="logo">
<a href="/" class="logo">
<a href="{{ .Site.BaseURL }}" class="logo">
{{ if (ne .Site.Params.customImage "") }}
<img src="{{ .Site.Params.customImage }}" alt="">
{{ else }}
Expand All @@ -12,7 +12,7 @@
</a>
</div>
<div class="titles">
<h3 class="title"><a href="/">{{ .Site.Title }}</a></h3>
<h3 class="title"><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h3>
{{ with .Site.Params.Subtitle }}
<span class="subtitle">{{ . }}</span>
{{ end }}
Expand Down

0 comments on commit 6681ec9

Please sign in to comment.