mirror of https://github.com/luizdepra/hugo-coder.git

Björn Albers
27.20.2025 70c0792f78b257c7b3c7614b2bc7dffa95f5143f
Remove trailing space from headline. (#970)

### Prerequisites

Put an `x` into the box(es) that apply:

- [x] This pull request fixes a bug.
- [ ] This pull request adds a feature.
- [ ] This pull request introduces breaking change.

### Description

Just a minor cosmetic fix: the headline on the home page contained a
trailing space, which is now gone.
Thanks for building this wonderful theme!

### Issues Resolved

List any existing issues this pull request resolves.

### Checklist

Put an `x` into the box(es) that apply:

#### General

- [x] Describe what changes are being made
- [x] Explain why and how the changes were necessary and implemented
respectively
- [ ] Reference issue with `#<ISSUE_NO>` if applicable

#### Resources

- [ ] If you have changed any SCSS code, run `make release` to
regenerate all CSS files

#### Contributors

- [ ] Add yourself to `CONTRIBUTORS.md` if you aren't on it already

Co-authored-by: Luiz F. A. de Prá <luizdepra@users.noreply.github.com>
1 files modified
2 ■■■ changed files
layouts/partials/home/author.html 2 ●●● patch | view | raw | blame | history
layouts/partials/home/author.html
@@ -2,5 +2,5 @@
{{ if reflect.IsSlice .Site.Params.info }}
<h2>{{ range .Site.Params.info }}{{ . | markdownify }}<br>{{ end}}</h2>
{{ else }}
<h2>{{ .Site.Params.info | markdownify }} </h2>
<h2>{{ .Site.Params.info | markdownify }}</h2>
{{ end }}