Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/AngeloStavrow/indigo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md8
-rw-r--r--layouts/partials/social.html2
2 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 61d7c25..4c6a596 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,8 +6,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [Unreleased]
+
### Added
-- Added entrypoints config section as described in [#73](https://github.com/AngeloStavrow/indigo/issues/73)
+
+- Added entrypoints config section as described in [#73](https://github.com/AngeloStavrow/indigo/issues/73), thanks to [@kasuboski](https://github.com/kasuboski)!
+
+### Fixed
+
+- Partial for Facebook social link now actually points to your Facebook profile as described in [#76](https://github.com/AngeloStavrow/indigo/issues/76), thanks to [@j-wang](https://github.com/j-wang)!
## [1.3.2] - 2019-10-17
diff --git a/layouts/partials/social.html b/layouts/partials/social.html
index f43d1f5..913434c 100644
--- a/layouts/partials/social.html
+++ b/layouts/partials/social.html
@@ -7,7 +7,7 @@
{{ end }}
{{ if isset .Site.Params "facebookuser" }}
<div class="icon-24x24">
- <a class="glyph" alt="Facebook profile" href="{{ .Site.Params.FacebookUser }}"><img src={{ "icons/facebook.svg" | absURL }} height="24px" width="24px"></a>
+ <a class="glyph" alt="Facebook profile" href="https://facebook.com/{{ .Site.Params.FacebookUser }}"><img src={{ "icons/facebook.svg" | absURL }} height="24px" width="24px"></a>
</div>
{{ end }}
{{ if isset .Site.Params "flickruser" }}