Skip to content

Releases: gundamew/hugo-bingo

v1.8.2

21 Jun 09:42
Compare
Choose a tag to compare

Remove the unnecessary square brackets in avatar settings.

See also: v1.8.0

v1.8.1

21 Jun 09:23
Compare
Choose a tag to compare

Remove the base element from partials/head.html to fix the relative images issue.

Fixes #6.

v1.8.0

21 Jun 09:10
Compare
Choose a tag to compare

Now users can choose Gravatar or local avatar image to display on home page. And I also made the size parameter of Gravatar changable.

Please change the settings from:

[params]

  [params.gravatar]
    email = "hugo@example.com"

to:

[params]

  [params.avatar]
    use = "local"  # "local" or "gravatar"

  [params.gravatar]
    email = "hugo@example.com"
    size = 240

  [params.avatar.local]
    path = "example.png"  # please put the image in the static directory

Resolves #5.

v1.7.1

27 May 08:18
Compare
Choose a tag to compare

Add new social icon: RSS feed.

v1.7.0

19 Aug 09:48
Compare
Choose a tag to compare

Replace .Pages or .Data.Pages with .Site.RegularPages. And add mainSections variable to config file to prepare for Hugo v.0.58.0.

See also: gohugoio/hugoThemes#682

v1.6.3

07 Aug 08:03
Compare
Choose a tag to compare

Do some fixes to follow the newest submission guidelines.

  • Update the gallery images
  • Add config variable disableKinds
  • Rename layouts/index.html to layouts/home.html

v1.6.2

07 Aug 06:51
Compare
Choose a tag to compare

Update the social link params of example site to fix issue #3.

v1.6.1

07 Aug 06:53
Compare
Choose a tag to compare

Some minor fixes:

  • Remove unnecessary variables
  • Add language settings example
  • Update the list of available social icons
  • Refactor the partials

v1.6.0

01 Aug 04:19
Compare
Choose a tag to compare

Add multiple languages support.

v1.5.0

01 Aug 04:19
Compare
Choose a tag to compare

Remove unnecessary attributes of SVG files; Styling SVG with CSS and refactor the partials.